CINXE.COM

Donate | Dress for Success Rochester

<!doctype html> <!--[if lt IE 7]><html lang="en-US" class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]--> <!--[if (IE 7)&!(IEMobile)]><html lang="en-US" class="no-js lt-ie10 lt-ie9 lt-ie8"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html lang="en-US" class="no-js lt-ie10 lt-ie9"><![endif]--> <!--[if (IE 9)&!(IEMobile)]><html lang="en-US" class="no-js lt-ie10"><![endif]--> <!--[if gt IE 9]><!--> <html lang="en-US" class="no-js"><!--<![endif]--> <head> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5ZHSB98');</script> <!-- End Google Tag Manager --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title> Donate | Dress for Success Rochester</title> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <link rel="apple-touch-icon" href="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/apple-icon-touch.png"> <link rel="icon" href="https://rochester.dressforsuccess.org/wp-content/themes/dfs/favicon.png"> <meta name="msapplication-TileColor" content="#f01d4f"> <meta name="msapplication-TileImage" content="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/win8-tile-icon.png"> <meta property="og:title" content="We brighten the lives of women across the world" /> <meta property="og:site_name" content="Rochester | Dress for Success Rochester"/> <meta property="og:url" content="https://rochester.dressforsuccess.org/get-involved/donate/" /> <meta property="og:image:width" content="1200" /> <meta property="og:image:height" content="630" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content = "@dressforsuccess" /> <meta name="twitter:title" content = "We brighten the lives of women across the world" /> <meta property="og:image" content="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/og-dressforsuccess.png" /> <meta property="og:description" content="Dress for Success is an international not-for-profit organization that empowers women to achieve economic independence by providing a network of support, professional attire and the development tools to help women thrive in work and in life." /> <meta name="twitter:description" content = "Dress for Success is an international not-for-profit organization that empowers women to achieve economic independence by providing a network of support, professional attire and the development tools to help women thrive in work and in life." /> <meta name="twitter:image" content = "https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/twittercard-dressforsuccess.png" /> <link rel="pingback" href="https://rochester.dressforsuccess.org/xmlrpc.php"> <link href='//dressforsuccess.org/wp-content/themes/dfs/library/css/fonts/280023/1EE6660100036C146.css' rel='stylesheet' type='text/css'> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//maps.googleapis.com' /> <link rel='dns-prefetch' href='//www.google.com' /> <link rel='dns-prefetch' href='//cloud.typography.com' /> <link rel="alternate" type="application/rss+xml" title="Dress for Success Rochester &raquo; Feed" href="https://rochester.dressforsuccess.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Dress for Success Rochester &raquo; Comments Feed" href="https://rochester.dressforsuccess.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Dress for Success Rochester &raquo; Donate Comments Feed" href="https://rochester.dressforsuccess.org/get-involved/donate/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/rochester.dressforsuccess.org\/wp-includes\/js\/wp-emoji.js","twemoji":"https:\/\/rochester.dressforsuccess.org\/wp-includes\/js\/twemoji.js"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://rochester.dressforsuccess.org/wp-includes/css/dist/block-library/style.css' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='events-manager-css' href='https://rochester.dressforsuccess.org/wp-content/plugins/events-manager/includes/css/events_manager.css' type='text/css' media='all' /> <link rel='stylesheet' id='events-manager-pro-css' href='https://rochester.dressforsuccess.org/wp-content/plugins/events-manager-pro/includes/css/events-manager-pro.css' type='text/css' media='all' /> <link rel='stylesheet' id='gotham-font-css' href='//cloud.typography.com/6799492/758424/css/fonts.css' type='text/css' media='all' /> <link rel='stylesheet' id='bones-stylesheet-css' href='https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/css/style.css?v=1.41' type='text/css' media='all' /> <!--[if lt IE 9]> <link rel='stylesheet' id='bones-ie-only-css' href='https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/css/ie.css' type='text/css' media='all' /> <![endif]--> <link rel='stylesheet' id='language-selector-stylesheet-css' href='https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/css/language-selector.css' type='text/css' media='all' /> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-includes/js/jquery/jquery.js" id="jquery-core-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-includes/js/jquery/jquery-migrate.js" id="jquery-migrate-js"></script> <script type="text/javascript" id="events-manager-js-extra"> /* <![CDATA[ */ var EM = {"ajaxurl":"https:\/\/rochester.dressforsuccess.org\/wp-admin\/admin-ajax.php","locationajaxurl":"https:\/\/rochester.dressforsuccess.org\/wp-admin\/admin-ajax.php?action=locations_search","firstDay":"1","locale":"en","dateFormat":"mm\/dd\/yy","ui_css":"https:\/\/rochester.dressforsuccess.org\/wp-content\/plugins\/events-manager\/includes\/css\/jquery-ui.css","show24hours":"0","is_ssl":"1","google_maps_api":"AIzaSyC-qmJbzyhG0_UK8R23RqjCbk67xZQgElI","bookingInProgress":"Please wait while the booking is being submitted.","tickets_save":"Save Ticket","bookingajaxurl":"https:\/\/rochester.dressforsuccess.org\/wp-admin\/admin-ajax.php","bookings_export_save":"Export Bookings","bookings_settings_save":"Save Settings","booking_delete":"Are you sure you want to delete?","booking_offset":"30","bb_full":"Sold Out","bb_book":"Book Now","bb_booking":"Booking...","bb_booked":"Booking Submitted","bb_error":"Booking Error. Try again?","bb_cancel":"Cancel","bb_canceling":"Canceling...","bb_cancelled":"Cancelled","bb_cancel_error":"Cancellation Error. Try again?","txt_search":"Search","txt_searching":"Searching...","txt_loading":"Loading...","event_detach_warning":"Are you sure you want to detach this event? By doing so, this event will be independent of the recurring set of events.","delete_recurrence_warning":"Are you sure you want to delete all recurrences of this event? All events will be moved to trash.","disable_bookings_warning":"Are you sure you want to disable bookings? If you do this and save, you will lose all previous bookings. If you wish to prevent further bookings, reduce the number of spaces available to the amount of bookings you currently have","booking_warning_cancel":"Are you sure you want to cancel your booking?","cache":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/plugins/events-manager/includes/js/events-manager.js" id="events-manager-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/plugins/events-manager-pro/includes/js/events-manager-pro.js" id="events-manager-pro-js"></script> <link rel="https://api.w.org/" href="https://rochester.dressforsuccess.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://rochester.dressforsuccess.org/wp-json/wp/v2/pages/94" /><link rel="canonical" href="https://rochester.dressforsuccess.org/get-involved/donate/" /> <link rel='shortlink' href='https://rochester.dressforsuccess.org/?p=94' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://rochester.dressforsuccess.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Frochester.dressforsuccess.org%2Fget-involved%2Fdonate%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://rochester.dressforsuccess.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Frochester.dressforsuccess.org%2Fget-involved%2Fdonate%2F&#038;format=xml" /> <style>/* CSS added by WP Meta and Date Remover*/.wp-block-post-author__name{display:none !important;} .wp-block-post-date{display:none !important;} .entry-meta {display:none !important;} .home .entry-meta { display: none; } .entry-footer {display:none !important;} .home .entry-footer { display: none; }</style> <style type="text/css"> .em-coupon-code { width:150px; } #em-coupon-loading { display:inline-block; width:16px; height: 16px; margin-left:4px; background:url(https://rochester.dressforsuccess.org/wp-content/plugins/events-manager-pro/includes/images/spinner.gif)} .em-coupon-message { display:inline-block; margin:5px 0px 0px 105px; text-indent:22px; } .em-coupon-success { color:green; background:url(https://rochester.dressforsuccess.org/wp-content/plugins/events-manager-pro/includes/images/success.png) 0px 0px no-repeat } .em-coupon-error { color:red; background:url(https://rochester.dressforsuccess.org/wp-content/plugins/events-manager-pro/includes/images/error.png) 0px 0px no-repeat } .em-cart-coupons-form .em-coupon-message{ margin:5px 0px 0px 0px; } #em-coupon-loading { margin-right:4px; } </style> <link rel="stylesheet" type="text/css" href="https://rochester.dressforsuccess.org/wp-content/plugins/wp-translator-revolution-dropdown/styles/jquery.translator.css?ver=2.2" /> <script src="https://use.fontawesome.com/6807c96cc8.js"></script> <script> // modules register themselves to be init'd window.modulesToInit = []; </script> </head> <body class="page-template page-template-page-donate page-template-page-donate-php page page-id-94 page-parent page-child parent-pageid-48"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5ZHSB98" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="container" class="translate"> <div id="black-overlay"></div> <header class="header" role="banner"> <div id="inner-header" class="wrap clearfix"> <div class="header-top-row"> <section class="header__button-row"> <ul class="header-social-media"> <li class="header-facebook"> <a href="https://www.facebook.com/dfsrochester" target="_blank"></a> </li> <li class="header-twitter"> <a href="https://twitter.com/dfsrochester" target="_blank"></a> </li> <li class="header-instagram"> <a href="http://instagram.com/dfsrochester" target="_blank"></a> </li> <li class="header-pinterest"> <a href="https://www.pinterest.com/dressforsuccess/" target="_blank"></a> </li> <li class="header-youtube"> <a href="https://www.youtube.com/channel/UCjAP1RLNhaAdS-V08KrUnuA" target="_blank"></a> </li> <li class="header-linkedin"> <a href="https://www.linkedin.com/company/dress-for-success-rochester" target="_blank"></a> </li> </ul> <button onclick="window.open('/donate', '_self')" class="header__button red-button" type="button" name="donate"> <i class="fa fa-heart-o header__donate-button-heart--spacing" aria-hidden="true"></i> DONATE </button> <div id="header-language-selector" class="header__button"> <!-- Placeholder for language selector plugin --> </div> <div class="header-account-logged-out header__button"><button id="sign-in-btn" class="red-button" type="button">Sign in</button></div> </section> </div> <div class="header-main-row clear-fix"> <p id="logo"><a href="https://rochester.dressforsuccess.org" rel="nofollow"> <img src="https://rochester.dressforsuccess.org/wp-content/uploads/2014/12/DFS-Rochester-resized.jpg"> </a></p> <button class="under-logo-btn affil-select-btn">Find Your Local Affiliate</button> <a class="under-logo-btn worldwide-link" href="//www.dressforsuccess.org">DFS Worldwide</a> <nav role="navigation"> <div class="nav-mobile-only"> <div id="sub-menu-title-sign-in" class="signed-out">SIGN IN</div> <button class="nav-mobile-affiliate-btn"> <span class="nav-mobile-choose-location-globe"></span> CHOOSE YOUR LOCATION </button> </div> <ul id="menu-main-menu" class="top-nav clearfix"><li ><a data-id="83" data-title="GO TO OUR NEW WEBSITE" href="https://rochester.dressforsuccess.org/about-us/">GO TO OUR NEW WEBSITE</a></li><li class="current-page-ancestor" ><a data-id="90" data-title="Get Involved" href="https://rochester.dressforsuccess.org/get-involved/">Get Involved</a></li><li ><a data-id="120" data-title="Client Services" href="https://rochester.dressforsuccess.org/client-services/">Client Services</a></li><li ><a data-id="124" data-title="News" href="https://rochester.dressforsuccess.org/news/">News</a></li><li ><a data-id="84" data-title="Contact" href="https://rochester.dressforsuccess.org/contact/">Contact</a></li></ul><ul id="sub-menu-83" class="sub-menu"><li class="sub-menu-title"><a href="https://rochester.dressforsuccess.org/about-us/">GO TO OUR NEW WEBSITE</a></li><li class="sub-menu-back">BACK</li><li ><a data-id="88" data-title="What We Do" href="https://rochester.dressforsuccess.org/about-us/what-we-do/">What We Do</a></li><li ><a data-id="89" data-title="Who We Are" href="https://rochester.dressforsuccess.org/about-us/who-we-are/">Who We Are</a></li><li ><a data-id="87" data-title="Stories" href="https://rochester.dressforsuccess.org/about-us/stories/">Stories</a></li><li ><a data-id="85" data-title="FAQs" href="https://rochester.dressforsuccess.org/about-us/faqs/">FAQs</a></li><li ><a data-id="86" data-title="Jobs" href="https://rochester.dressforsuccess.org/about-us/jobs/">Jobs</a></li></ul><ul id="sub-menu-90" class="sub-menu active-menu"><li class="sub-menu-title"><a href="https://rochester.dressforsuccess.org/get-involved/">Get Involved</a></li><li class="sub-menu-back">BACK</li><li class="current-menu-item" ><a data-id="114" data-title="Donate" href="https://rochester.dressforsuccess.org/get-involved/donate/">Donate</a></li><li ><a data-id="115" data-title="Events" href="https://rochester.dressforsuccess.org/get-involved/events/">Events</a></li><li ><a data-id="116" data-title="Volunteer" href="https://rochester.dressforsuccess.org/get-involved/volunteer/">Volunteer</a></li><li ><a data-id="117" data-title="Donation Drives" href="https://rochester.dressforsuccess.org/get-involved/donation-drives/">Donation Drives</a></li><li ><a data-id="92" data-title="Corporate Partnerships" href="https://rochester.dressforsuccess.org/get-involved/corporate-partnerships/">Corporate Partnerships</a></li><li ><a data-id="91" data-title="Referral Agencies" href="https://rochester.dressforsuccess.org/get-involved/referral-agencies/">Referral Agencies</a></li></ul><ul id="sub-menu-client-services" class="sub-menu "><li class="sub-menu-title"><a href="/client-services">CLIENT SERVICES</a></li><li class="sub-menu-back">BACK</li><li><a href="https://rochester.dressforsuccess.org/programs/suiting/">Suiting</a></li><li><a href="https://rochester.dressforsuccess.org/programs/career-advancement/">Career Advancement</a></li><li><a href="https://rochester.dressforsuccess.org/programs/leadership/">Leadership</a></li><li><a href="https://rochester.dressforsuccess.org/programs/employment-retention/">Employment Retention</a></li><li><a href="https://rochester.dressforsuccess.org/programs/job-training/">Job Training</a></li></ul> <div id="affil-select-mobile"> <div class="affil-select-mobile-current-location">COUNTRY</div> <button class="affil-select-mobile-back-btn">BACK</button> <ul data-list="level-1" data-child-list="level-2" class="clear-fix"><li data-Id="Australia">Australia</li><li data-Id="Canada">Canada</li><li data-Id="Guatemala">Guatemala</li><li data-Id="Italy">Italy</li><li data-Id="Jamaica">Jamaica</li><li data-Id="Luxembourg">Luxembourg</li><li data-Id="Mexico">Mexico</li><li data-Id="Mongolia">Mongolia</li><li data-Id="Netherlands">Netherlands</li><li data-Id="New-Zealand">New Zealand</li><li data-Id="Nigeria">Nigeria</li><li data-Id="Portugal">Portugal</li><li data-Id="Serbia">Serbia</li><li data-Id="Singapore">Singapore</li><li data-Id="Slovenia">Slovenia</li><li data-Id="United-Kingdom">United Kingdom</li><li data-Id="USA">USA</li></ul><ul data-list="level-2" data-child-list="level-3" class="clear-fix"><li data-childOf="Australia"><a href="https://adelaide.dressforsuccess.org">Adelaide</a></li><li data-childOf="Australia"><a href="https://brisbane.dressforsuccess.org">Brisbane</a></li><li data-childOf="Australia"><a href="https://nswact.dressforsuccess.org">NSW & ACT</a></li><li data-childOf="Australia"><a href="https://southeastmelbourne.dressforsuccess.org">South East Melbourne</a></li><li data-childOf="Australia"><a href="https://hobart.dressforsuccess.org">Tasmania</a></li><li data-childOf="Australia"><a href="https://westernaustralia.dressforsuccess.org">Western Australia</a></li><li data-childOf="Canada"><a href="https://calgary.dressforsuccess.org">Calgary</a></li><li data-childOf="Canada"><a href="https://centralalberta.dressforsuccess.org">Central Alberta</a></li><li data-childOf="Canada"><a href="https://halifax.dressforsuccess.org">Halifax</a></li><li data-childOf="Canada"><a href="https://kelowna.dressforsuccess.org">Kelowna</a></li><li data-childOf="Canada"><a href="https://kingston.dressforsuccess.org">Kingston</a></li><li data-childOf="Canada"><a href="https://montreal.dressforsuccess.org">Montreal</a></li><li data-childOf="Canada"><a href="https://orilliaandbarrie.dressforsuccess.org">Orillia and Barrie</a></li><li data-childOf="Canada"><a href="https://ottawa.dressforsuccess.org">Ottawa</a></li><li data-childOf="Canada"><a href="https://regina.dressforsuccess.org">Regina</a></li><li data-childOf="Canada"><a href="https://saskatoon.dressforsuccess.org">Saskatoon</a></li><li data-childOf="Canada"><a href="https://toronto.dressforsuccess.org">Toronto</a></li><li data-childOf="Canada"><a href="https://vancouver.dressforsuccess.org">Vancouver</a></li><li data-childOf="Canada"><a href="https://winnipeg.dressforsuccess.org">Winnipeg</a></li><li data-childOf="Guatemala"><a href="https://guatemalacity.dressforsuccess.org">Guatemala City</a></li><li data-childOf="Italy"><a href="https://milan.dressforsuccess.org">Milan</a></li><li data-childOf="Italy"><a href="https://rome.dressforsuccess.org">Rome</a></li><li data-childOf="Jamaica"><a href="https://jamaica.dressforsuccess.org">Jamaica</a></li><li data-childOf="Luxembourg"><a href="https://luxembourg.dressforsuccess.org">Luxembourg</a></li><li data-childOf="Mexico"><a href="https://mexicocity.dressforsuccess.org">Mexico City</a></li><li data-childOf="Mongolia"><a href="https://ulaanbaatar.dressforsuccess.org">Ulaanbaatar</a></li><li data-childOf="Netherlands"><a href="https://amsterdam.dressforsuccess.org">Amsterdam</a></li><li data-childOf="Netherlands"><a href="https://eindhoven.dressforsuccess.org">Eindhoven</a></li><li data-childOf="Netherlands"><a href="https://gorinchem.dressforsuccess.org">Gorinchem</a></li><li data-childOf="Netherlands"><a href="https://groningen.dressforsuccess.org">Groningen</a></li><li data-childOf="Netherlands"><a href="https://leeuwarden.dressforsuccess.org">Leeuwarden</a></li><li data-childOf="Netherlands"><a href="https://leiden.dressforsuccess.org">Leiden</a></li><li data-childOf="Netherlands"><a href="https://maastricht.dressforsuccess.org">Maastricht</a></li><li data-childOf="Netherlands"><a href="https://rotterdam.dressforsuccess.org">Rotterdam</a></li><li data-childOf="Netherlands"><a href="https://terneuzen.dressforsuccess.org">Terneuzen</a></li><li data-childOf="Netherlands"><a href="https://utrecht.dressforsuccess.org">Utrecht</a></li><li data-childOf="New-Zealand"><a href="https://auckland.dressforsuccess.org">Auckland</a></li><li data-childOf="New-Zealand"><a href="https://bayofplenty.dressforsuccess.org">Bay of Plenty</a></li><li data-childOf="New-Zealand"><a href="https://christchurch.dressforsuccess.org">Christchurch</a></li><li data-childOf="New-Zealand"><a href="https://hamilton.dressforsuccess.org">Hamilton</a></li><li data-childOf="New-Zealand"><a href="https://hawkesbay.dressforsuccess.org">Hawkes Bay</a></li><li data-childOf="New-Zealand"><a href="https://northland.dressforsuccess.org">Northland</a></li><li data-childOf="New-Zealand"><a href="https://palmerstonnorth.dressforsuccess.org">Palmerston North</a></li><li data-childOf="New-Zealand"><a href="https://wellington.dressforsuccess.org">Wellington</a></li><li data-childOf="Nigeria"><a href="https://lagos.dressforsuccess.org">Lagos</a></li><li data-childOf="Portugal"><a href="https://lisbon.dressforsuccess.org">Lisbon</a></li><li data-childOf="Serbia"><a href="https://belgrade.dressforsuccess.org">Belgrade</a></li><li data-childOf="Singapore"><a href="https://singapore.dressforsuccess.org">Singapore</a></li><li data-childOf="Slovenia"><a href="https://maribor.dressforsuccess.org">Dress for Success Maribor - Slovenia</a></li><li data-childOf="United-Kingdom"><a href="https://greaterlondon.dressforsuccess.org">Greater London</a></li><li data-childOf="United-Kingdom"><a href="https://northernireland.dressforsuccess.org">Northern Ireland</a></li><li data-childOf="United-Kingdom"><a href="https://scotland.dressforsuccess.org">Scotland</a></li><li data-Id="USA_Arizona" data-childOf="USA" class="state">Arizona</li><li data-Id="USA_Arkansas" data-childOf="USA" class="state">Arkansas</li><li data-Id="USA_California" data-childOf="USA" class="state">California</li><li data-Id="USA_Colorado" data-childOf="USA" class="state">Colorado</li><li data-Id="USA_Connecticut" data-childOf="USA" class="state">Connecticut</li><li data-Id="USA_District-of-Columbia" data-childOf="USA" class="state">District of Columbia</li><li data-Id="USA_Florida" data-childOf="USA" class="state">Florida</li><li data-Id="USA_Georgia" data-childOf="USA" class="state">Georgia</li><li data-Id="USA_Hawaii" data-childOf="USA" class="state">Hawaii</li><li data-Id="USA_Idaho" data-childOf="USA" class="state">Idaho</li><li data-Id="USA_Illinois" data-childOf="USA" class="state">Illinois</li><li data-Id="USA_Indiana" data-childOf="USA" class="state">Indiana</li><li data-Id="USA_Iowa" data-childOf="USA" class="state">Iowa</li><li data-Id="USA_Kansas" data-childOf="USA" class="state">Kansas</li><li data-Id="USA_Kentucky" data-childOf="USA" class="state">Kentucky</li><li data-Id="USA_Louisiana" data-childOf="USA" class="state">Louisiana</li><li data-Id="USA_Maryland" data-childOf="USA" class="state">Maryland</li><li data-Id="USA_Massachusetts" data-childOf="USA" class="state">Massachusetts</li><li data-Id="USA_Michigan" data-childOf="USA" class="state">Michigan</li><li data-Id="USA_Minnesota" data-childOf="USA" class="state">Minnesota</li><li data-Id="USA_Mississippi" data-childOf="USA" class="state">Mississippi</li><li data-Id="USA_Missouri" data-childOf="USA" class="state">Missouri</li><li data-Id="USA_Montana" data-childOf="USA" class="state">Montana</li><li data-Id="USA_Nevada" data-childOf="USA" class="state">Nevada</li><li data-Id="USA_New-Jersey" data-childOf="USA" class="state">New Jersey</li><li data-Id="USA_New-York" data-childOf="USA" class="state">New York</li><li data-Id="USA_North-Carolina" data-childOf="USA" class="state">North Carolina</li><li data-Id="USA_Ohio" data-childOf="USA" class="state">Ohio</li><li data-Id="USA_Oklahoma" data-childOf="USA" class="state">Oklahoma</li><li data-Id="USA_Oregon" data-childOf="USA" class="state">Oregon</li><li data-Id="USA_Pennsylvania" data-childOf="USA" class="state">Pennsylvania</li><li data-Id="USA_Rhode-Island" data-childOf="USA" class="state">Rhode Island</li><li data-Id="USA_South-Carolina" data-childOf="USA" class="state">South Carolina</li><li data-Id="USA_South-Dakota" data-childOf="USA" class="state">South Dakota</li><li data-Id="USA_Tennessee" data-childOf="USA" class="state">Tennessee</li><li data-Id="USA_Texas" data-childOf="USA" class="state">Texas</li><li data-Id="USA_Virginia" data-childOf="USA" class="state">Virginia</li><li data-Id="USA_Washington" data-childOf="USA" class="state">Washington</li><li data-Id="USA_West-Virginia" data-childOf="USA" class="state">West Virginia</li><li data-Id="USA_Wisconsin" data-childOf="USA" class="state">Wisconsin</li><li data-Id="USA_Wyoming" data-childOf="USA" class="state">Wyoming</li></ul><ul data-list="level-3" class="clear-fix"><li data-childOf="USA_Arizona"><a href="https://phoenix.dressforsuccess.org">Phoenix</a></li><li data-childOf="USA_Arkansas"><a href="https://northwestarkansas.dressforsuccess.org">Northwest Arkansas</a></li><li data-childOf="USA_California"><a href="https://bakersfield.dressforsuccess.org">Bakersfield</a></li><li data-childOf="USA_California"><a href="https://sacramento.dressforsuccess.org">Sacramento</a></li><li data-childOf="USA_California"><a href="https://sanfrancisco.dressforsuccess.org">San Francisco</a></li><li data-childOf="USA_California"><a href="https://sanjose.dressforsuccess.org">San Jose</a></li><li data-childOf="USA_Colorado"><a href="https://denver.dressforsuccess.org">Denver</a></li><li data-childOf="USA_Connecticut"><a href="https://hartford.dressforsuccess.org">Hartford</a></li><li data-childOf="USA_Connecticut"><a href="https://midfairfieldcounty.dressforsuccess.org">Mid-Fairfield County</a></li><li data-childOf="USA_District-of-Columbia"><a href="https://washingtondc.dressforsuccess.org">Washington DC</a></li><li data-childOf="USA_Florida"><a href="https://emeraldcoast.dressforsuccess.org">Emerald Coast - Florida</a></li><li data-childOf="USA_Florida"><a href="https://greaterorlando.dressforsuccess.org">Greater Orlando</a></li><li data-childOf="USA_Florida"><a href="https://miami.dressforsuccess.org">Miami</a></li><li data-childOf="USA_Florida"><a href="https://palmbeaches.dressforsuccess.org">Palm Beaches</a></li><li data-childOf="USA_Florida"><a href="https://swflorida.dressforsuccess.org">SW Florida</a></li><li data-childOf="USA_Florida"><a href="https://tampabay.dressforsuccess.org">Tampa Bay</a></li><li data-childOf="USA_Georgia"><a href="https://atlanta.dressforsuccess.org">Atlanta</a></li><li data-childOf="USA_Hawaii"><a href="https://honolulu.dressforsuccess.org">Honolulu</a></li><li data-childOf="USA_Idaho"><a href="https://boisevalley.dressforsuccess.org">Boise Valley</a></li><li data-childOf="USA_Illinois"><a href="https://greaterchicago.dressforsuccess.org">Greater Chicago</a></li><li data-childOf="USA_Indiana"><a href="https://greaterlafayette.dressforsuccess.org">Greater Lafayette</a></li><li data-childOf="USA_Indiana"><a href="https://indianapolis.dressforsuccess.org">Indianapolis</a></li><li data-childOf="USA_Indiana"><a href="https://michiana.dressforsuccess.org">Michiana</a></li><li data-childOf="USA_Iowa"><a href="https://desmoines.dressforsuccess.org">Des Moines</a></li><li data-childOf="USA_Iowa"><a href="https://quadcities.dressforsuccess.org">Quad Cities</a></li><li data-childOf="USA_Kansas"><a href="https://wichita.dressforsuccess.org">Wichita</a></li><li data-childOf="USA_Kentucky"><a href="https://louisville.dressforsuccess.org">Louisville</a></li><li data-childOf="USA_Louisiana"><a href="https://neworleans.dressforsuccess.org">New Orleans</a></li><li data-childOf="USA_Louisiana"><a href="https://shreveport-bossier.dressforsuccess.org">Shreveport-Bossier</a></li><li data-childOf="USA_Maryland"><a href="https://greaterbaltimore.dressforsuccess.org">Greater Baltimore</a></li><li data-childOf="USA_Massachusetts"><a href="https://boston.dressforsuccess.org">Boston</a></li><li data-childOf="USA_Massachusetts"><a href="https://westernmass.dressforsuccess.org">Western Massachusetts</a></li><li data-childOf="USA_Massachusetts"><a href="https://worcester.dressforsuccess.org">Worcester</a></li><li data-childOf="USA_Michigan"><a href="https://michigan.dressforsuccess.org">Michigan</a></li><li data-childOf="USA_Minnesota"><a href="https://twincities.dressforsuccess.org">Twin Cities</a></li><li data-childOf="USA_Mississippi"><a href="https://metrojackson.dressforsuccess.org">Metro Jackson</a></li><li data-childOf="USA_Missouri"><a href="https://kansascity.dressforsuccess.org">Kansas City</a></li><li data-childOf="USA_Missouri"><a href="https://midwest.dressforsuccess.org">Midwest</a></li><li data-childOf="USA_Montana"><a href="https://billings.dressforsuccess.org">Billings</a></li><li data-childOf="USA_Nevada"><a href="https://reno.dressforsuccess.org">Reno - Northern Nevada</a></li><li data-childOf="USA_Nevada"><a href="https://southernnevada.dressforsuccess.org">Southern Nevada</a></li><li data-childOf="USA_New-Jersey"><a href="https://centralnj.dressforsuccess.org">Central New Jersey - 7 Counties</a></li><li data-childOf="USA_New-Jersey"><a href="https://northernnj.dressforsuccess.org">Northern New Jersey - 10 Counties</a></li><li data-childOf="USA_New-York"><a href="https://albany.dressforsuccess.org">Albany</a></li><li data-childOf="USA_New-York"><a href="https://brookhaven.dressforsuccess.org">Brookhaven</a></li><li data-childOf="USA_New-York"><a href="https://buffalo.dressforsuccess.org">Buffalo</a></li><li data-childOf="USA_New-York"><a href="https://dutchesscounty.dressforsuccess.org">Dutchess County</a></li><li data-childOf="USA_New-York"><a href="https://newyork.dressforsuccess.org">Greater New York City</a></li><li data-childOf="USA_New-York"><a href="https://rochester.dressforsuccess.org">Rochester</a></li><li data-childOf="USA_New-York"><a href="https://dressforsuccess.org">Worldwide</a></li><li data-childOf="USA_North-Carolina"><a href="https://charlotte.dressforsuccess.org">Charlotte</a></li><li data-childOf="USA_North-Carolina"><a href="https://trianglenc.dressforsuccess.org">Triangle NC</a></li><li data-childOf="USA_North-Carolina"><a href="https://winstonsalem.dressforsuccess.org">Winston-Salem</a></li><li data-childOf="USA_Ohio"><a href="https://cincinnati.dressforsuccess.org">Cincinnati</a></li><li data-childOf="USA_Ohio"><a href="https://cleveland.dressforsuccess.org">Cleveland</a></li><li data-childOf="USA_Ohio"><a href="https://columbus.dressforsuccess.org">Columbus</a></li><li data-childOf="USA_Oklahoma"><a href="https://oklahomacity.dressforsuccess.org">Oklahoma City</a></li><li data-childOf="USA_Oklahoma"><a href="https://tulsa.dressforsuccess.org">Tulsa</a></li><li data-childOf="USA_Oregon"><a href="https://oregon.dressforsuccess.org">Oregon</a></li><li data-childOf="USA_Pennsylvania"><a href="https://erie.dressforsuccess.org">Erie</a></li><li data-childOf="USA_Pennsylvania"><a href="https://greaterphiladelphia.dressforsuccess.org">Greater Philadelphia</a></li><li data-childOf="USA_Pennsylvania"><a href="https://lackawanna.dressforsuccess.org">Lackawanna</a></li><li data-childOf="USA_Pennsylvania"><a href="https://luzernecounty.dressforsuccess.org">Luzerne County</a></li><li data-childOf="USA_Pennsylvania"><a href="https://pittsburgh.dressforsuccess.org">Pittsburgh</a></li><li data-childOf="USA_Pennsylvania"><a href="https://southcentralpa.dressforsuccess.org">South Central PA</a></li><li data-childOf="USA_Rhode-Island"><a href="https://providence.dressforsuccess.org">Providence</a></li><li data-childOf="USA_South-Carolina"><a href="https://charlestoncounty.dressforsuccess.org">Charleston County</a></li><li data-childOf="USA_South-Carolina"><a href="https://columbia.dressforsuccess.org">Columbia</a></li><li data-childOf="USA_South-Dakota"><a href="https://siouxfalls.dressforsuccess.org">Sioux Falls</a></li><li data-childOf="USA_Tennessee"><a href="https://chattanooga.dressforsuccess.org">Chattanooga</a></li><li data-childOf="USA_Tennessee"><a href="https://memphis.dressforsuccess.org">Memphis</a></li><li data-childOf="USA_Tennessee"><a href="https://nashville.dressforsuccess.org">Nashville</a></li><li data-childOf="USA_Texas"><a href="https://austin.dressforsuccess.org">Austin</a></li><li data-childOf="USA_Texas"><a href="https://dallas.dressforsuccess.org">Dallas</a></li><li data-childOf="USA_Texas"><a href="https://houston.dressforsuccess.org">Houston</a></li><li data-childOf="USA_Texas"><a href="https://permianbasin.dressforsuccess.org">Permian Basin - Texas</a></li><li data-childOf="USA_Texas"><a href="https://sanantonio.dressforsuccess.org">San Antonio</a></li><li data-childOf="USA_Virginia"><a href="https://centralvirginia.dressforsuccess.org">Central Virginia</a></li><li data-childOf="USA_Virginia"><a href="https://hamptonroads.dressforsuccess.org">Hampton Roads</a></li><li data-childOf="USA_Washington"><a href="https://seattle.dressforsuccess.org">Seattle</a></li><li data-childOf="USA_West-Virginia"><a href="https://rivercities.dressforsuccess.org">River Cities</a></li><li data-childOf="USA_Wisconsin"><a href="https://racine.dressforsuccess.org">Racine</a></li><li data-childOf="USA_Wyoming"><a href="https://casper.dressforsuccess.org">Casper</a></li></ul> </div> <div class="nav-mobile-only"> <a href="https://www.facebook.com/dfsrochester" class="nav-mobile-only-social nav-mobile-only-facebook hide-text">facebook</a><a href="https://twitter.com/dfsrochester" class="nav-mobile-only-social nav-mobile-only-twitter hide-text">twitter</a><a href="http://instagram.com/dfsrochester" class="nav-mobile-only-social nav-mobile-only-insta hide-text">instagram</a><a href="https://www.youtube.com/channel/UCjAP1RLNhaAdS-V08KrUnuA" class="nav-mobile-only-social nav-mobile-only-youtube hide-text">youtube</a><a href="https://www.linkedin.com/company/dress-for-success-rochester" class="nav-mobile-only-social nav-mobile-only-linkedin hide-text">linkedin</a> <a href="/donate" class="nav-mobile-only-donate-btn hide-text">donate</a> </div> </nav> <button class="nav-mobile-btn"></button> </div> </div> </header> <div id="affiliate-selection-overlay"> <div class="affil-select-wrapper"> <div class="affil-select-header"> <div class="affil-select-header-items"> <a href="/" class="affil-select-logo" alt="Dress for Success. Going Places. Going Strong."></a> <!--<button class="affil-select-btn active">Select</button>--> </div> <button class="affil-select-close"></button> </div> <div class="affil-select-nav-bar"> <ul> </ul> </div> <div class="affil-select-instance-list"> <ul data-list="level-1" data-child-list="level-2" class="clear-fix"><li data-Id="Australia">Australia</li><li data-Id="Canada">Canada</li><li data-Id="Guatemala">Guatemala</li><li data-Id="Italy">Italy</li><li data-Id="Jamaica">Jamaica</li><li data-Id="Luxembourg">Luxembourg</li><li data-Id="Mexico">Mexico</li><li data-Id="Mongolia">Mongolia</li><li data-Id="Netherlands">Netherlands</li><li data-Id="New-Zealand">New Zealand</li><li data-Id="Nigeria">Nigeria</li><li data-Id="Portugal">Portugal</li><li data-Id="Serbia">Serbia</li><li data-Id="Singapore">Singapore</li><li data-Id="Slovenia">Slovenia</li><li data-Id="United-Kingdom">United Kingdom</li><li data-Id="USA">USA</li></ul><ul data-list="level-2" data-child-list="level-3" class="clear-fix"><li data-childOf="Australia"><a href="https://adelaide.dressforsuccess.org">Adelaide</a></li><li data-childOf="Australia"><a href="https://brisbane.dressforsuccess.org">Brisbane</a></li><li data-childOf="Australia"><a href="https://nswact.dressforsuccess.org">NSW & ACT</a></li><li data-childOf="Australia"><a href="https://southeastmelbourne.dressforsuccess.org">South East Melbourne</a></li><li data-childOf="Australia"><a href="https://hobart.dressforsuccess.org">Tasmania</a></li><li data-childOf="Australia"><a href="https://westernaustralia.dressforsuccess.org">Western Australia</a></li><li data-childOf="Canada"><a href="https://calgary.dressforsuccess.org">Calgary</a></li><li data-childOf="Canada"><a href="https://centralalberta.dressforsuccess.org">Central Alberta</a></li><li data-childOf="Canada"><a href="https://halifax.dressforsuccess.org">Halifax</a></li><li data-childOf="Canada"><a href="https://kelowna.dressforsuccess.org">Kelowna</a></li><li data-childOf="Canada"><a href="https://kingston.dressforsuccess.org">Kingston</a></li><li data-childOf="Canada"><a href="https://montreal.dressforsuccess.org">Montreal</a></li><li data-childOf="Canada"><a href="https://orilliaandbarrie.dressforsuccess.org">Orillia and Barrie</a></li><li data-childOf="Canada"><a href="https://ottawa.dressforsuccess.org">Ottawa</a></li><li data-childOf="Canada"><a href="https://regina.dressforsuccess.org">Regina</a></li><li data-childOf="Canada"><a href="https://saskatoon.dressforsuccess.org">Saskatoon</a></li><li data-childOf="Canada"><a href="https://toronto.dressforsuccess.org">Toronto</a></li><li data-childOf="Canada"><a href="https://vancouver.dressforsuccess.org">Vancouver</a></li><li data-childOf="Canada"><a href="https://winnipeg.dressforsuccess.org">Winnipeg</a></li><li data-childOf="Guatemala"><a href="https://guatemalacity.dressforsuccess.org">Guatemala City</a></li><li data-childOf="Italy"><a href="https://milan.dressforsuccess.org">Milan</a></li><li data-childOf="Italy"><a href="https://rome.dressforsuccess.org">Rome</a></li><li data-childOf="Jamaica"><a href="https://jamaica.dressforsuccess.org">Jamaica</a></li><li data-childOf="Luxembourg"><a href="https://luxembourg.dressforsuccess.org">Luxembourg</a></li><li data-childOf="Mexico"><a href="https://mexicocity.dressforsuccess.org">Mexico City</a></li><li data-childOf="Mongolia"><a href="https://ulaanbaatar.dressforsuccess.org">Ulaanbaatar</a></li><li data-childOf="Netherlands"><a href="https://amsterdam.dressforsuccess.org">Amsterdam</a></li><li data-childOf="Netherlands"><a href="https://eindhoven.dressforsuccess.org">Eindhoven</a></li><li data-childOf="Netherlands"><a href="https://gorinchem.dressforsuccess.org">Gorinchem</a></li><li data-childOf="Netherlands"><a href="https://groningen.dressforsuccess.org">Groningen</a></li><li data-childOf="Netherlands"><a href="https://leeuwarden.dressforsuccess.org">Leeuwarden</a></li><li data-childOf="Netherlands"><a href="https://leiden.dressforsuccess.org">Leiden</a></li><li data-childOf="Netherlands"><a href="https://maastricht.dressforsuccess.org">Maastricht</a></li><li data-childOf="Netherlands"><a href="https://rotterdam.dressforsuccess.org">Rotterdam</a></li><li data-childOf="Netherlands"><a href="https://terneuzen.dressforsuccess.org">Terneuzen</a></li><li data-childOf="Netherlands"><a href="https://utrecht.dressforsuccess.org">Utrecht</a></li><li data-childOf="New-Zealand"><a href="https://auckland.dressforsuccess.org">Auckland</a></li><li data-childOf="New-Zealand"><a href="https://bayofplenty.dressforsuccess.org">Bay of Plenty</a></li><li data-childOf="New-Zealand"><a href="https://christchurch.dressforsuccess.org">Christchurch</a></li><li data-childOf="New-Zealand"><a href="https://hamilton.dressforsuccess.org">Hamilton</a></li><li data-childOf="New-Zealand"><a href="https://hawkesbay.dressforsuccess.org">Hawkes Bay</a></li><li data-childOf="New-Zealand"><a href="https://northland.dressforsuccess.org">Northland</a></li><li data-childOf="New-Zealand"><a href="https://palmerstonnorth.dressforsuccess.org">Palmerston North</a></li><li data-childOf="New-Zealand"><a href="https://wellington.dressforsuccess.org">Wellington</a></li><li data-childOf="Nigeria"><a href="https://lagos.dressforsuccess.org">Lagos</a></li><li data-childOf="Portugal"><a href="https://lisbon.dressforsuccess.org">Lisbon</a></li><li data-childOf="Serbia"><a href="https://belgrade.dressforsuccess.org">Belgrade</a></li><li data-childOf="Singapore"><a href="https://singapore.dressforsuccess.org">Singapore</a></li><li data-childOf="Slovenia"><a href="https://maribor.dressforsuccess.org">Dress for Success Maribor - Slovenia</a></li><li data-childOf="United-Kingdom"><a href="https://greaterlondon.dressforsuccess.org">Greater London</a></li><li data-childOf="United-Kingdom"><a href="https://northernireland.dressforsuccess.org">Northern Ireland</a></li><li data-childOf="United-Kingdom"><a href="https://scotland.dressforsuccess.org">Scotland</a></li><li data-Id="USA_Arizona" data-childOf="USA" class="state">Arizona</li><li data-Id="USA_Arkansas" data-childOf="USA" class="state">Arkansas</li><li data-Id="USA_California" data-childOf="USA" class="state">California</li><li data-Id="USA_Colorado" data-childOf="USA" class="state">Colorado</li><li data-Id="USA_Connecticut" data-childOf="USA" class="state">Connecticut</li><li data-Id="USA_District-of-Columbia" data-childOf="USA" class="state">District of Columbia</li><li data-Id="USA_Florida" data-childOf="USA" class="state">Florida</li><li data-Id="USA_Georgia" data-childOf="USA" class="state">Georgia</li><li data-Id="USA_Hawaii" data-childOf="USA" class="state">Hawaii</li><li data-Id="USA_Idaho" data-childOf="USA" class="state">Idaho</li><li data-Id="USA_Illinois" data-childOf="USA" class="state">Illinois</li><li data-Id="USA_Indiana" data-childOf="USA" class="state">Indiana</li><li data-Id="USA_Iowa" data-childOf="USA" class="state">Iowa</li><li data-Id="USA_Kansas" data-childOf="USA" class="state">Kansas</li><li data-Id="USA_Kentucky" data-childOf="USA" class="state">Kentucky</li><li data-Id="USA_Louisiana" data-childOf="USA" class="state">Louisiana</li><li data-Id="USA_Maryland" data-childOf="USA" class="state">Maryland</li><li data-Id="USA_Massachusetts" data-childOf="USA" class="state">Massachusetts</li><li data-Id="USA_Michigan" data-childOf="USA" class="state">Michigan</li><li data-Id="USA_Minnesota" data-childOf="USA" class="state">Minnesota</li><li data-Id="USA_Mississippi" data-childOf="USA" class="state">Mississippi</li><li data-Id="USA_Missouri" data-childOf="USA" class="state">Missouri</li><li data-Id="USA_Montana" data-childOf="USA" class="state">Montana</li><li data-Id="USA_Nevada" data-childOf="USA" class="state">Nevada</li><li data-Id="USA_New-Jersey" data-childOf="USA" class="state">New Jersey</li><li data-Id="USA_New-York" data-childOf="USA" class="state">New York</li><li data-Id="USA_North-Carolina" data-childOf="USA" class="state">North Carolina</li><li data-Id="USA_Ohio" data-childOf="USA" class="state">Ohio</li><li data-Id="USA_Oklahoma" data-childOf="USA" class="state">Oklahoma</li><li data-Id="USA_Oregon" data-childOf="USA" class="state">Oregon</li><li data-Id="USA_Pennsylvania" data-childOf="USA" class="state">Pennsylvania</li><li data-Id="USA_Rhode-Island" data-childOf="USA" class="state">Rhode Island</li><li data-Id="USA_South-Carolina" data-childOf="USA" class="state">South Carolina</li><li data-Id="USA_South-Dakota" data-childOf="USA" class="state">South Dakota</li><li data-Id="USA_Tennessee" data-childOf="USA" class="state">Tennessee</li><li data-Id="USA_Texas" data-childOf="USA" class="state">Texas</li><li data-Id="USA_Virginia" data-childOf="USA" class="state">Virginia</li><li data-Id="USA_Washington" data-childOf="USA" class="state">Washington</li><li data-Id="USA_West-Virginia" data-childOf="USA" class="state">West Virginia</li><li data-Id="USA_Wisconsin" data-childOf="USA" class="state">Wisconsin</li><li data-Id="USA_Wyoming" data-childOf="USA" class="state">Wyoming</li></ul><ul data-list="level-3" class="clear-fix"><li data-childOf="USA_Arizona"><a href="https://phoenix.dressforsuccess.org">Phoenix</a></li><li data-childOf="USA_Arkansas"><a href="https://northwestarkansas.dressforsuccess.org">Northwest Arkansas</a></li><li data-childOf="USA_California"><a href="https://bakersfield.dressforsuccess.org">Bakersfield</a></li><li data-childOf="USA_California"><a href="https://sacramento.dressforsuccess.org">Sacramento</a></li><li data-childOf="USA_California"><a href="https://sanfrancisco.dressforsuccess.org">San Francisco</a></li><li data-childOf="USA_California"><a href="https://sanjose.dressforsuccess.org">San Jose</a></li><li data-childOf="USA_Colorado"><a href="https://denver.dressforsuccess.org">Denver</a></li><li data-childOf="USA_Connecticut"><a href="https://hartford.dressforsuccess.org">Hartford</a></li><li data-childOf="USA_Connecticut"><a href="https://midfairfieldcounty.dressforsuccess.org">Mid-Fairfield County</a></li><li data-childOf="USA_District-of-Columbia"><a href="https://washingtondc.dressforsuccess.org">Washington DC</a></li><li data-childOf="USA_Florida"><a href="https://emeraldcoast.dressforsuccess.org">Emerald Coast - Florida</a></li><li data-childOf="USA_Florida"><a href="https://greaterorlando.dressforsuccess.org">Greater Orlando</a></li><li data-childOf="USA_Florida"><a href="https://miami.dressforsuccess.org">Miami</a></li><li data-childOf="USA_Florida"><a href="https://palmbeaches.dressforsuccess.org">Palm Beaches</a></li><li data-childOf="USA_Florida"><a href="https://swflorida.dressforsuccess.org">SW Florida</a></li><li data-childOf="USA_Florida"><a href="https://tampabay.dressforsuccess.org">Tampa Bay</a></li><li data-childOf="USA_Georgia"><a href="https://atlanta.dressforsuccess.org">Atlanta</a></li><li data-childOf="USA_Hawaii"><a href="https://honolulu.dressforsuccess.org">Honolulu</a></li><li data-childOf="USA_Idaho"><a href="https://boisevalley.dressforsuccess.org">Boise Valley</a></li><li data-childOf="USA_Illinois"><a href="https://greaterchicago.dressforsuccess.org">Greater Chicago</a></li><li data-childOf="USA_Indiana"><a href="https://greaterlafayette.dressforsuccess.org">Greater Lafayette</a></li><li data-childOf="USA_Indiana"><a href="https://indianapolis.dressforsuccess.org">Indianapolis</a></li><li data-childOf="USA_Indiana"><a href="https://michiana.dressforsuccess.org">Michiana</a></li><li data-childOf="USA_Iowa"><a href="https://desmoines.dressforsuccess.org">Des Moines</a></li><li data-childOf="USA_Iowa"><a href="https://quadcities.dressforsuccess.org">Quad Cities</a></li><li data-childOf="USA_Kansas"><a href="https://wichita.dressforsuccess.org">Wichita</a></li><li data-childOf="USA_Kentucky"><a href="https://louisville.dressforsuccess.org">Louisville</a></li><li data-childOf="USA_Louisiana"><a href="https://neworleans.dressforsuccess.org">New Orleans</a></li><li data-childOf="USA_Louisiana"><a href="https://shreveport-bossier.dressforsuccess.org">Shreveport-Bossier</a></li><li data-childOf="USA_Maryland"><a href="https://greaterbaltimore.dressforsuccess.org">Greater Baltimore</a></li><li data-childOf="USA_Massachusetts"><a href="https://boston.dressforsuccess.org">Boston</a></li><li data-childOf="USA_Massachusetts"><a href="https://westernmass.dressforsuccess.org">Western Massachusetts</a></li><li data-childOf="USA_Massachusetts"><a href="https://worcester.dressforsuccess.org">Worcester</a></li><li data-childOf="USA_Michigan"><a href="https://michigan.dressforsuccess.org">Michigan</a></li><li data-childOf="USA_Minnesota"><a href="https://twincities.dressforsuccess.org">Twin Cities</a></li><li data-childOf="USA_Mississippi"><a href="https://metrojackson.dressforsuccess.org">Metro Jackson</a></li><li data-childOf="USA_Missouri"><a href="https://kansascity.dressforsuccess.org">Kansas City</a></li><li data-childOf="USA_Missouri"><a href="https://midwest.dressforsuccess.org">Midwest</a></li><li data-childOf="USA_Montana"><a href="https://billings.dressforsuccess.org">Billings</a></li><li data-childOf="USA_Nevada"><a href="https://reno.dressforsuccess.org">Reno - Northern Nevada</a></li><li data-childOf="USA_Nevada"><a href="https://southernnevada.dressforsuccess.org">Southern Nevada</a></li><li data-childOf="USA_New-Jersey"><a href="https://centralnj.dressforsuccess.org">Central New Jersey - 7 Counties</a></li><li data-childOf="USA_New-Jersey"><a href="https://northernnj.dressforsuccess.org">Northern New Jersey - 10 Counties</a></li><li data-childOf="USA_New-York"><a href="https://albany.dressforsuccess.org">Albany</a></li><li data-childOf="USA_New-York"><a href="https://brookhaven.dressforsuccess.org">Brookhaven</a></li><li data-childOf="USA_New-York"><a href="https://buffalo.dressforsuccess.org">Buffalo</a></li><li data-childOf="USA_New-York"><a href="https://dutchesscounty.dressforsuccess.org">Dutchess County</a></li><li data-childOf="USA_New-York"><a href="https://newyork.dressforsuccess.org">Greater New York City</a></li><li data-childOf="USA_New-York"><a href="https://rochester.dressforsuccess.org">Rochester</a></li><li data-childOf="USA_New-York"><a href="https://dressforsuccess.org">Worldwide</a></li><li data-childOf="USA_North-Carolina"><a href="https://charlotte.dressforsuccess.org">Charlotte</a></li><li data-childOf="USA_North-Carolina"><a href="https://trianglenc.dressforsuccess.org">Triangle NC</a></li><li data-childOf="USA_North-Carolina"><a href="https://winstonsalem.dressforsuccess.org">Winston-Salem</a></li><li data-childOf="USA_Ohio"><a href="https://cincinnati.dressforsuccess.org">Cincinnati</a></li><li data-childOf="USA_Ohio"><a href="https://cleveland.dressforsuccess.org">Cleveland</a></li><li data-childOf="USA_Ohio"><a href="https://columbus.dressforsuccess.org">Columbus</a></li><li data-childOf="USA_Oklahoma"><a href="https://oklahomacity.dressforsuccess.org">Oklahoma City</a></li><li data-childOf="USA_Oklahoma"><a href="https://tulsa.dressforsuccess.org">Tulsa</a></li><li data-childOf="USA_Oregon"><a href="https://oregon.dressforsuccess.org">Oregon</a></li><li data-childOf="USA_Pennsylvania"><a href="https://erie.dressforsuccess.org">Erie</a></li><li data-childOf="USA_Pennsylvania"><a href="https://greaterphiladelphia.dressforsuccess.org">Greater Philadelphia</a></li><li data-childOf="USA_Pennsylvania"><a href="https://lackawanna.dressforsuccess.org">Lackawanna</a></li><li data-childOf="USA_Pennsylvania"><a href="https://luzernecounty.dressforsuccess.org">Luzerne County</a></li><li data-childOf="USA_Pennsylvania"><a href="https://pittsburgh.dressforsuccess.org">Pittsburgh</a></li><li data-childOf="USA_Pennsylvania"><a href="https://southcentralpa.dressforsuccess.org">South Central PA</a></li><li data-childOf="USA_Rhode-Island"><a href="https://providence.dressforsuccess.org">Providence</a></li><li data-childOf="USA_South-Carolina"><a href="https://charlestoncounty.dressforsuccess.org">Charleston County</a></li><li data-childOf="USA_South-Carolina"><a href="https://columbia.dressforsuccess.org">Columbia</a></li><li data-childOf="USA_South-Dakota"><a href="https://siouxfalls.dressforsuccess.org">Sioux Falls</a></li><li data-childOf="USA_Tennessee"><a href="https://chattanooga.dressforsuccess.org">Chattanooga</a></li><li data-childOf="USA_Tennessee"><a href="https://memphis.dressforsuccess.org">Memphis</a></li><li data-childOf="USA_Tennessee"><a href="https://nashville.dressforsuccess.org">Nashville</a></li><li data-childOf="USA_Texas"><a href="https://austin.dressforsuccess.org">Austin</a></li><li data-childOf="USA_Texas"><a href="https://dallas.dressforsuccess.org">Dallas</a></li><li data-childOf="USA_Texas"><a href="https://houston.dressforsuccess.org">Houston</a></li><li data-childOf="USA_Texas"><a href="https://permianbasin.dressforsuccess.org">Permian Basin - Texas</a></li><li data-childOf="USA_Texas"><a href="https://sanantonio.dressforsuccess.org">San Antonio</a></li><li data-childOf="USA_Virginia"><a href="https://centralvirginia.dressforsuccess.org">Central Virginia</a></li><li data-childOf="USA_Virginia"><a href="https://hamptonroads.dressforsuccess.org">Hampton Roads</a></li><li data-childOf="USA_Washington"><a href="https://seattle.dressforsuccess.org">Seattle</a></li><li data-childOf="USA_West-Virginia"><a href="https://rivercities.dressforsuccess.org">River Cities</a></li><li data-childOf="USA_Wisconsin"><a href="https://racine.dressforsuccess.org">Racine</a></li><li data-childOf="USA_Wyoming"><a href="https://casper.dressforsuccess.org">Casper</a></li></ul> </div> </div> </div> <div id="sign-in-form-overlay" class="modal"> <div id="sign-in-module" class="sign-in-module"> <div id="captcha-options" data-captcha-action="login" data-captcha-public-key="6LdmgLMUAAAAADD0wphmPwl42T8COaAAuGteXqHd"></div> Sign in or <a href="/register/">register</a><br /><br /> <form name="loginform" id="loginform" action="https://rochester.dressforsuccess.org/wp-login.php?wpe-login=true" method="post"><p class="login-username"> <label for="user_login">Username or Email Address</label> <input type="text" name="log" id="user_login" autocomplete="username" class="input" value="" size="20" /> </p><p class="login-password"> <label for="user_pass">Password</label> <input type="password" name="pwd" id="user_pass" autocomplete="current-password" spellcheck="false" class="input" value="" size="20" /> </p><p class="login-remember"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label></p><p class="login-submit"> <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary" value="Sign In" /> <input type="hidden" name="redirect_to" value="https://rochester.dressforsuccess.org/get-involved/donate/" /> </p></form> <a id="sign-in-forgot-pw" href="/wp-login.php?action=lostpassword">Forgot your Password?</a> <button type="button" id="sign-in-close-x" class="modal-close-x"></button> </div> </div> <div id="content"> <div class="center-block"> <div id="section-header"> <img src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images//get-involved/donate-main-header-resized.jpg"> <span>Donate</span> </div> </div> <div id="inner-content" class="wrap clearfix"> <div id="main" class="clearfix" role="main"> <div class="module-content donate-head-text"> <h2>Give Confidence</h2> <p>Join us by making a monetary contribution. Donate your gently used, nearly-new professional attire. Offer your time as a volunteer to empower women in your community. With your support, we can continue providing services that inspire women to take charge of their lives.</p> <button type="button" class="red-button donate-money-btn">Donate Money</button><button type="button" class="red-button donate-clothes-btn">Donate Clothes</button> </div>  <div id="donation-wrapper" class="form-wrapper"> <div class="module-content"> <div class="section-title">DONATE MONEY</div><p class="section-subtitle">Please make a monetary gift that will forever change a woman&rsquo;s future. Financial support from our donors ensures we can continue to offer our wide range of programs to women striving for economic empowerment. Your financial contribution is an investment that will generate tremendous benefits not just for the women we serve and their families but also for your community.</p> <div class="form-wrapper"> <div id="donation-form" class="form-page" data-send-to-worldwide=""> <div class="form-height-holder"> <div class="loading-cover"> <img src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/loading.gif" alt="loading" /> </div> <div id="donation-thank-you" class="form-thank-you"> <h2>Thank you!</h2> <p>Your donation has been processed successfully.</p> <p><a href="/get-involved">Return to Get Involved</a></p> </div> <div class="donate-fields form-fields clear-fix"> <div class="form-col donate-col-gift-information"> <h3>Gift Information</h3> <hr size="1" /> <div id="donate-type" class="form-radio-buttons"> <div class="form-full-width"> <input type="radio" name="donate-type" id="donate-type-once" checked value="0" /> <label for="donate-type-once">One-Time Contribution</label> </div> <div class="form-full-width"> <input type="radio" name="donate-type" id="donate-type-recurring" value="1" /> <label for="donate-type-recurring">Recurring Contribution</label> </div> </div> <div id="donate-schedule" class="form-radio-buttons donate-schedule"> <div class="donate-schedule-height-holder"> <div class="form-full-width"> <input type="radio" name="donate-schedule" id="donate-schedule-monthly" checked value="1" /> <label for="donate-schedule-monthly">Monthly</label> </div> <div class="form-full-width"> <input type="radio" name="donate-schedule" id="donate-schedule-bimonthly" value="2" /> <label for="donate-schedule-bimonthly">Bimonthly</label> </div> <div class="form-full-width"> <input type="radio" name="donate-schedule" id="donate-schedule-quarterly" value="3" /> <label for="donate-schedule-quarterly">Quarterly</label> </div> <div class="form-full-width"> <input type="radio" name="donate-schedule" id="donate-schedule-semiannually" value="6" /> <label for="donate-schedule-semiannually">Semiannually</label> </div> <div class="form-full-width"> <input type="radio" name="donate-schedule" id="donate-schedule-annually" value="12" /> <label for="donate-schedule-annually">Annually</label> </div> </div> </div> <hr size="1" /> <ul id="donate-amount" class="form-radio-buttons" data-currency-symbol="&#36;" data-friendly-name="Donation Amount" data-v-required data-v-revalidate="#donate-other-amount"> <li><input type="radio" name="donate-amount" data-base-value="10" data-amount-index="0" id="donate-amount-0" value="10" /><label for="donate-amount-0">&#36;10</label></li><li><input type="radio" name="donate-amount" data-base-value="25" data-amount-index="1" id="donate-amount-1" value="25" /><label for="donate-amount-1">&#36;25</label></li><li><input type="radio" name="donate-amount" data-base-value="50" data-amount-index="2" id="donate-amount-2" value="50" /><label for="donate-amount-2">&#36;50</label></li><li><input type="radio" name="donate-amount" data-base-value="100" data-amount-index="3" id="donate-amount-3" value="100" /><label for="donate-amount-3">&#36;100</label></li> <li class="donate-amount-other-label donate-amount-other-field"> <input type="radio" name="donate-amount" id="donate-amount-other" value="other" /> <label for="donate-amount-other">Other</label> </li> <li class="donate-amount-other-input donate-amount-other-field"> <div id="donate-amount-other-container" class="donate-other-amount-input-wrapper"> <span class="donate-other-amount-dollar-sign">&#36;</span> <label for="donate-other-amount" class="donate-other-amount-label">Other Amount</label> <input type="text" id="donate-other-amount" class="validation-no-green" maxlength="15" data-v-format-currency /> </div> </li> </ul> <div id="pay-processor-fee" class="pay-processor-fee"> <input type="checkbox" id="processor-checkbox" value="1" name="processor-checkbox"> <label class="processor-checkbox-label" for="processor-checkbox">Check this box to also pay our payment processor fee. Your donation amount will be updated to show the final amount.</label> </div> <hr size="1" /> <label for="donate-notes" class="donate-notes-label">Notes</label> <textarea id="donate-notes" class="counted-textarea" maxlength="500" rows="2" data-counter="notes-max" data-friendly-name="Donation Notes" data-v-max-length="500"></textarea> <p id="notes-max" class="max-characters"><span id="notes-max-number" class="character-counter">500</span> characters remaining.</p> </div> <div class="form-col one-third donate-col-payment-information"> <h3>Payment Information</h3> <hr size="1" /> <div class="form-half-width"> <label for="donate-first-name">First Name</label> <input type="text" id="donate-first-name" maxlength="30" data-v-required value="" /> </div> <div class="form-half-width"> <label for="donate-last-name">Last Name</label> <input type="text" id="donate-last-name" maxlength="30" data-v-required value="" /> </div> <div class="form-full-width"> <label for="donate-email">Email</label> <input type="text" id="donate-email" maxlength="50" data-v-required data-v-format-email value="" /> </div> <div class="form-full-width"> <label for="donate-address">Address</label> <input type="text" id="donate-address" maxlength="50" data-v-required value="" /> </div> <div class="form-half-width"> <label for="donate-city">City</label> <input type="text" id="donate-city" maxlength="50" data-v-required value="" /> </div> <div class="form-half-width"> <label for="donate-state">State</label> <input type="text" id="donate-state" maxlength="50" data-v-required value="" /> </div> <div class="form-full-width"> <label for="donate-zip">Zip Code</label> <input type="text" id="donate-zip" maxlength="15" value=""/> </div> <div class="form-full-width"> <label for="donate-country">Country</label> <div class="form-select-wrapper"> <select id="donate-country" class="form-control"><option value="AF">Afghanistan</option><option value="AL">Albania</option><option value="DZ">Algeria</option><option value="AS">American Samoa</option><option value="AD">Andorra</option><option value="AO">Angola</option><option value="AQ">Antarctica</option><option value="AG">Antigua and Barbuda</option><option value="AR">Argentina</option><option value="AM">Armenia</option><option value="AW">Aruba</option><option value="AU">Australia</option><option value="AT">Austria</option><option value="AZ">Azerbaijan</option><option value="BS">Bahamas</option><option value="BH">Bahrain</option><option value="BD">Bangladesh</option><option value="BB">Barbados</option><option value="BY">Belarus</option><option value="BE">Belgium</option><option value="BZ">Belize</option><option value="BJ">Benin</option><option value="BM">Bermuda</option><option value="BT">Bhutan</option><option value="BO">Bolivia</option><option value="BA">Bosnia and Herzegovina</option><option value="BW">Botswana</option><option value="BR">Brazil</option><option value="VG">British Virgin Islands</option><option value="BN">Brunei</option><option value="BG">Bulgaria</option><option value="BF">Burkina Faso</option><option value="BI">Burundi</option><option value="CI">C&ocirc;te D'Ivoire</option><option value="KH">Cambodia</option><option value="CM">Cameroon</option><option value="CA">Canada</option><option value="CV">Cape Verde</option><option value="KY">Cayman Islands</option><option value="CF">Central African Republic</option><option value="TD">Chad</option><option value="CL">Chile</option><option value="CN">China</option><option value="CO">Colombia</option><option value="KM">Comoros</option><option value="CR">Costa Rica</option><option value="HR">Croatia</option><option value="CU">Cuba</option><option value="CY">Cyprus</option><option value="CZ">Czech Republic</option><option value="KP">Democratic People's Republic of Korea</option><option value="CD">Democratic Republic of the Congo</option><option value="DK">Denmark</option><option value="DJ">Djibouti</option><option value="DM">Dominica</option><option value="DO">Dominican Republic</option><option value="EC">Ecuador</option><option value="EG">Egypt</option><option value="SV">El Salvador</option><option value="XE">England</option><option value="GQ">Equatorial Guinea</option><option value="ER">Eritrea</option><option value="EE">Estonia</option><option value="ET">Ethiopia</option><option value="FO">Faroe Islands</option><option value="FJ">Fiji</option><option value="FI">Finland</option><option value="FR">France</option><option value="PF">French Polynesia</option><option value="GA">Gabon</option><option value="GM">Gambia</option><option value="GE">Georgia</option><option value="DE">Germany</option><option value="GH">Ghana</option><option value="GR">Greece</option><option value="GL">Greenland</option><option value="GD">Grenada</option><option value="GP">Guadeloupe</option><option value="GU">Guam</option><option value="GT">Guatemala</option><option value="GN">Guinea</option><option value="GW">Guinea Bissau</option><option value="GY">Guyana</option><option value="HT">Haiti</option><option value="HN">Honduras</option><option value="HK">Hong Kong</option><option value="HU">Hungary</option><option value="IS">Iceland</option><option value="IN">India</option><option value="ID">Indonesia</option><option value="IR">Iran</option><option value="IQ">Iraq</option><option value="IE">Ireland</option><option value="IL">Israel</option><option value="IT">Italy</option><option value="JM">Jamaica</option><option value="JP">Japan</option><option value="JE">Jersey</option><option value="JO">Jordan</option><option value="KZ">Kazakhstan</option><option value="KE">Kenya</option><option value="KI">Kiribati</option><option value="KV">Kosovo</option><option value="KW">Kuwait</option><option value="KG">Kyrgyzstan</option><option value="LA">Laos</option><option value="LV">Latvia</option><option value="LB">Lebanon</option><option value="LS">Lesotho</option><option value="LR">Liberia</option><option value="LY">Libya</option><option value="LI">Liechtenstein</option><option value="LT">Lithuania</option><option value="LU">Luxembourg</option><option value="MO">Macao</option><option value="MK">Macedonia</option><option value="MG">Madagascar</option><option value="MW">Malawi</option><option value="MY">Malaysia</option><option value="MV">Maldives</option><option value="ML">Mali</option><option value="MT">Malta</option><option value="MH">Marshall Islands</option><option value="MR">Mauritania</option><option value="MQ">Mauritania</option><option value="MU">Mauritius</option><option value="MX">Mexico</option><option value="FM">Micronesia</option><option value="MD">Moldova</option><option value="MC">Monaco</option><option value="MN">Mongolia</option><option value="ME">Montenegro</option><option value="MA">Morocco</option><option value="MZ">Mozambique</option><option value="MM">Myanmar(Burma)</option><option value="NA">Namibia</option><option value="NR">Nauru</option><option value="NP">Nepal</option><option value="NL">Netherlands</option><option value="AN">Netherlands Antilles</option><option value="NC">New Caledonia</option><option value="NZ">New Zealand</option><option value="NI">Nicaragua</option><option value="NE">Niger</option><option value="NG">Nigeria</option><option value="XI">Northern Ireland</option><option value="MP">Northern Mariana Islands</option><option value="NO">Norway</option><option value="OM">Oman</option><option value="PK">Pakistan</option><option value="PW">Palau</option><option value="PS">Palestine</option><option value="PA">Panama</option><option value="PG">Papua New Guinea</option><option value="PY">Paraguay</option><option value="PE">Peru</option><option value="PH">Philippines</option><option value="PL">Poland</option><option value="PT">Portugal</option><option value="PR">Puerto Rico</option><option value="QA">Qatar</option><option value="CG">Republic of the Congo</option><option value="RO">Romania</option><option value="RU">Russia</option><option value="RW">Rwanda</option><option value="RN">Réunion</option><option value="ST">S&agrave;o Tom&eacute; And Pr&iacute;ncipe</option><option value="KN">Saint Kitts and Nevis</option><option value="LC">Saint Lucia</option><option value="VC">Saint Vincent and the Grenadines</option><option value="WS">Samoa</option><option value="SM">San Marino</option><option value="SA">Saudi Arabia</option><option value="XS">Scotland</option><option value="SN">Senegal</option><option value="RS">Serbia</option><option value="SC">Seychelles</option><option value="SL">Sierra Leone</option><option value="SG">Singapore</option><option value="SK">Slovakia</option><option value="SI">Slovenia</option><option value="SB">Solomon Islands</option><option value="SO">Somalia</option><option value="ZA">South Africa</option><option value="KR">South Korea</option><option value="ES">Spain</option><option value="LK">Sri Lanka</option><option value="SD">Sudan</option><option value="SR">Suriname</option><option value="SZ">Swaziland</option><option value="SE">Sweden</option><option value="CH">Switzerland</option><option value="SY">Syria</option><option value="TW">Taiwan</option><option value="TJ">Tajikistan</option><option value="TZ">Tanzania</option><option value="TH">Thailand</option><option value="TL">Timor-Leste</option><option value="TG">Togo</option><option value="TO">Tonga</option><option value="TT">Trinidad and Tobago</option><option value="TN">Tunisia</option><option value="TR">Turkey</option><option value="TM">Turkmenistan</option><option value="TV">Tuvalu</option><option value="VI">US Virgin Islands</option><option value="UG">Uganda</option><option value="UA">Ukraine</option><option value="AE">United Arab Emirates</option><option value="GB">United Kingdom</option><option value="US">United States</option><option value="UY">Uruguay</option><option value="UZ">Uzbekistan</option><option value="VU">Vanuatu</option><option value="VA">Vatican</option><option value="VE">Venezuela</option><option value="VN">Vietnam</option><option value="XW">Wales</option><option value="YE">Yemen</option><option value="ZM">Zambia</option><option value="ZW">Zimbabwe</option></select> </div> </div> <div id="donate-card-number-container" class="form-full-width"> <label for="donate-card-number" class="donate-pay-label">Card Number</label> <input type="text" id="donate-card-number" maxlength="20" data-v-required data-v-format-numeric data-v-format-credit-card /> </div> <br /> <label for="" class="donate-pay-label">Expires</label> <div class="form-select-wrapper donate-exp-month-wrapper"> <select id="donate-exp-month"> <option value="01">01</option> <option value="02">02</option> <option value="03">03</option> <option value="04">04</option> <option value="05">05</option> <option value="06">06</option> <option value="07">07</option> <option value="08">08</option> <option value="09">09</option> <option value="10">10</option> <option value="11">11</option> <option value="12">12</option> </select> </div> <div class="form-select-wrapper donate-exp-year-wrapper"> <select id="donate-exp-year"> <option value="2024">2024</option><option value="2025">2025</option><option value="2026">2026</option><option value="2027">2027</option><option value="2028">2028</option><option value="2029">2029</option><option value="2030">2030</option><option value="2031">2031</option><option value="2032">2032</option><option value="2033">2033</option> </select> </div> <div class="form-full-width"> <label for="donate-cvv" class="donate-cvv-label">CVV / Security Code</label> <input type="text" id="donate-cvv" maxlength="10" data-v-required data-v-format-numeric /> </div> <div class="form-full-width"> <span id="siteseal"><script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=AeeIzIO6P1Azz7ZDsBxlNw0y845BkI5KdYDL90nwnrMpd7s7pizmzt1Jqw81"></script></span> </div> <div class="form-full-width"> <hr size="1" /> <div class="text-center"> <input type="hidden" id="g-recaptcha-response" name="g-recaptcha-response"> <button id="submit-donation" class="red-button form-submit" type="button">Process Donation</button> </div> </div> </div> </div> </div> </div> <p class="form-privacy-policy">Dress for Success is committed to the privacy of our supporters. No personal contact information will be shared outside of the organization without an individual’s written consent.</p> </div> <script type="text/javascript"> var opts = { captchaPublicKey: '6LdmgLMUAAAAADD0wphmPwl42T8COaAAuGteXqHd', stripePublicKey: 'pk_live_CUQyfDcMk07QQSRWPLx0CbyA', currencyCode: 'USD', localCurrency: 'USD', localAmounts: '["10","25","50","100"]' }; window.modulesToInit.push({view: 'DonationForm', options: opts}); </script> </div> </div> <script type="text/javascript" src="https://js.stripe.com/v2/"></script> <div class="donate-clothes-instructions" id="donation-clothes-wrapper"> <div class="module-content clear-fix"> <div class="section-title">DONATE CLOTHES</div> <h3 class="section-subtitle" style="text-align: center"><strong><span style="line-height: 1.5"><span style="line-height: 1.5"><span style="color: #940622"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">WE ARE ACCEPTING CURRENT STYLE, GENTLY USED:</span></span></span></span></span></span></span></strong></h3> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">SEASONLESS SUITS, PANTS, BLAZERS (wearable all year round) ALL SIZES, ESPECIALLY 18 AND UP (1X-5X) </span></span></span></span></span></strong></span></strong></span></p> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">SEPARATES (Shell tops, blouses, dresses, skirts) ALL SIZES ESPECIALLY 18 AND UP (1X-5X)</span></span></span></span></strong></span></strong></span></p> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">SCRUBS (ALL SIZES)</span></span></span></span></span></strong></span></strong></span></p> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">WORK APPROPRIATE CLOSED TOE SHOES ALL SIZES, ESPECIALLY 9-13 </span></span></span></span></span></span></strong></span></strong></span></p> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">WORK APPROPRIATE TOTES/HANDBAGS (NEUTRAL COLORS PREFERRED)</span></span></span></span></span></span></strong></span></strong></span></p> <p style="text-align: center"><span style="color: #940622"><strong style="font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">JEWELRY/BELTS/SCARFS/NEW BRAS &amp; HOSIERY</span></span></span></span></span></span></strong></span></strong></span></p> <h2 class="section-subtitle" style="text-align: center"><strong><span style="line-height: 1.5"><span style="line-height: 1.5"><span style="color: #940622"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">* </span></span></span></span></span></span></span></span><span style="color: #000000"><span style="line-height: 1.5"><span style="color: #940622"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">DONATIONS ACCEPTED BY APPOINTMENT ONLY, AT OUR BACK DOOR ON PINDLE ALLEY (OFF W. MAIN STREET BETWEEN STATE STREET AND FITZHUGH STREET). </span></span></span></span></span></span></span></span></strong></h2> <h2 class="section-subtitle" style="text-align: center"><strong><span style="color: #000000"><span style="line-height: 1.5"><span style="color: #940622"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">PLEASE DO NOT BRING ITEMS TO OUR FRONT ENTRANCE. </span></span></span></span></span></span></span></span></strong><strong><span style="color: #000000"><span style="line-height: 1.5"><span style="color: #940622"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">NO UNSCHEDULED CLOTHING DONATIONS, THANK YOU!</span></span></span></span></span></span></span></span></strong></h2> <h2 class="section-subtitle" style="text-align: center"><span style="color: #000000"><strong style="color: #3366ff;font-size: 16px;line-height: 1.5"><span style="line-height: 1.5"><strong><span style="line-height: 1.5"><span style="color: #940622"><span style="font-size: 16px"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">FOR MORE INFORMATION CALL (585) 225-3377</span></span></span></span></span></span></span></strong></span></strong></span></h2> <p style="text-align: center"><span style="line-height: 1.5"><strong><span style="color: #940622"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">PLEASE HAVE ALL CLOTHING ITEMS CLEANED (LAUNDERED OR DRY CLEANED), AND ON HANGERS.  </span></span></span></span></span></strong></span></p> <p style="text-align: center"><span style="line-height: 1.5"><strong><span style="color: #940622"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">ONLY ACCESSORIES,</span></span></span></span></span></strong></span><strong><span style="color: #940622"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"> SHOES AND HANDBAGS WILL BE ACCEPTED IN BAGS AND BOXES, </span></span></span></span></span></strong><span style="line-height: 1.5;color: #940622"><strong><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">THANK YOU.</span></span></span></span></strong></span></p> <h4 class="section-subtitle" style="text-align: center"><span style="color: #000000"><span style="line-height: 1.5"><span style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Your fabulous professional apparel could outfit another woman with the confidence to enter or return to the workplace, make a great first impression and land a job that could change her life. </span></span></span><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Therefore, i </span></span></span></span></span><span class="s1" style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">n the interest of the women we serve, we can only accept cleaned, interview/workplace appropriate clothing that is </span></span></span></span><strong><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">current in style (purchased within the last 6 years)</span></span></span></span></strong><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"> , on hangers, and ready to wear to an interview. </span></span></span></span><br /> <span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Please refer to the examples below. </span></span></span><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">We will not accept vintage clothing and shoes. </span></span></span></span></span><span class="s1" style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Thank you for your understanding and cooperation.</span></span></span></span></span></span></span></h4> <table style="border-collapse: collapse;width: 100%"> <tbody> <tr> <td style="width: 20%"><a href="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/DRESSES-AND-SUTIS-WE-WANT.png"><img fetchpriority="high" decoding="async" class="size-medium wp-image-872 aligncenter" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/DRESSES-AND-SUTIS-WE-WANT-300x205.png" alt="" width="300" height="205" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/DRESSES-AND-SUTIS-WE-WANT-300x205.png 300w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/DRESSES-AND-SUTIS-WE-WANT.png 754w" sizes="(max-width: 300px) 100vw, 300px" /></a></td> <td style="width: 20%"><a href="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BLAZERS-AND-OUTWEAR-WE-WANT.png"><img decoding="async" class="size-medium wp-image-871 aligncenter" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BLAZERS-AND-OUTWEAR-WE-WANT-300x206.png" alt="" width="300" height="206" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BLAZERS-AND-OUTWEAR-WE-WANT-300x206.png 300w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BLAZERS-AND-OUTWEAR-WE-WANT.png 684w" sizes="(max-width: 300px) 100vw, 300px" /></a></td> <td style="width: 20%"><a href="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/TOPS-WE-WANT.png"><img decoding="async" class=" wp-image-874 aligncenter" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/TOPS-WE-WANT-287x300.png" alt="" width="262" height="274" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/TOPS-WE-WANT-287x300.png 287w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/TOPS-WE-WANT.png 480w" sizes="(max-width: 262px) 100vw, 262px" /></a></td> <td style="width: 20%"><a href="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BOTTOMS-WE-WANT.png"><img decoding="async" class="size-medium wp-image-873 aligncenter" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BOTTOMS-WE-WANT-300x247.png" alt="" width="300" height="247" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BOTTOMS-WE-WANT-300x247.png 300w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/BOTTOMS-WE-WANT.png 401w" sizes="(max-width: 300px) 100vw, 300px" /></a></td> <td style="width: 20%"><a href="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/SHOES-ACCESSORIES-WE-WANT.png"><img decoding="async" class="wp-image-870 size-medium aligncenter" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/SHOES-ACCESSORIES-WE-WANT-e1676585581669-300x264.png" alt="" width="300" height="264" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/SHOES-ACCESSORIES-WE-WANT-e1676585581669-300x264.png 300w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/SHOES-ACCESSORIES-WE-WANT-e1676585581669.png 570w" sizes="(max-width: 300px) 100vw, 300px" /></a></td> </tr> </tbody> </table> <p><a href="https://calendly.com/dfsrochester/donations" target="_blank" rel="noopener"><br /> <img decoding="async" class="aligncenter wp-image-877 size-medium" src="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/Blue-Modern-Game-Button-Twitch-Panel-300x94.png" alt="" width="300" height="94" srcset="https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/Blue-Modern-Game-Button-Twitch-Panel-300x94.png 300w, https://rochester.dressforsuccess.org/wp-content/uploads/sites/33/2023/02/Blue-Modern-Game-Button-Twitch-Panel.png 320w" sizes="(max-width: 300px) 100vw, 300px" /></a></p> <p>&nbsp;</p> <p style="text-align: center"><strong><span style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Interested in hosting a clothing or donation drive? </span></span></span><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Please contact us FIRST! </span></span></span><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">Email us at </span></span></span></span><span class="s2" style="line-height: 1.5"><a href="mailto:hello@dfsrochester.org"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">hello@dfsrochester.org</span></span></span></span></a></span> </span><span class="s1"><br /> </span></strong></p> <p class="p5" style="text-align: center"><span class="s1"><span style="line-height: 1.5"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit"><span style="vertical-align: inherit">The full amount of your gift is tax-deductible for federal income tax purposes, subject to any limitations that might otherwise apply. </span></span></span></span></span></span></p> <div class="donate-clothes-col-wrap clear-fix"> <div class="donate-clothes-item-wrapper donate-clothes-accepted"> <h3>Clothing Accepted</h3> <ul class="donate-clothes-item-list"> <li>Interview appropriate suits</li><li>Interview appropriate blouses, shirts</li><li>Professional separates including blouses, slacks, skirts, dresses, blazers and jackets, cardigans</li><li>Khaki/Chino type pants (business casual or uniform type)</li><li>Scrubs</li><li>Work appropriate closed toe shoes (Dress boots/flats/pumps) </li><li>Bras/Underwear (New with tags) </li><li>Hosiery (new in packaging) </li><li>Worksite or steel toe construction shoes/boots</li><li>Jewelry cleaned and in good condition</li><li>Belts and scarves</li><li>Handbags (work appropriate handbags and totes)</li><li>Coats (seasonless overcoat/trench)</li> </ul> </div> <div class="donate-clothes-item-wrapper donate-clothes-not-accepted"> <h3>Clothing Not Accepted</h3> <ul class="donate-clothes-item-list"> <li>Clothing not cleaned, with stains or in need of repair</li><li>Vintage clothing or shoes</li><li>Non-Professional Clothing (ripped jeans, graphic t-shirts, sweats, etc.)</li><li>Evening Wear, Party Dresses, Formal Suits</li><li>Casual or Bulky Sweaters, Denim or Bulky Jackets</li><li>Previously worn undergarments or hosiery</li><li>Hats/hair pieces/hair clips</li><li>Evening Shoes, Casual Sneakers, Sandals, Moccasins, Boat Shoes, Ugg type boots</li><li>Casual or Bulky Jackets/Coats</li><li>White pants/skirts/jackets/shoes</li> </ul> </div> </div> </div> </div> <div class="donate-locations-and-hours"> <div class="module-content clear-fix"> <div class="donate-locations-row donate-locations-row-header clear-fix"> <div class="one-third donate-locations-header donate-locations-location"> <h3>Location</h3> </div> <div class="one-third donate-locations-header donate-locations-directions"> <h3>Directions</h3> </div> <div class="one-third donate-locations-header donate-locations-hours"> <h3>Hours</h3> </div> </div> <h2 class="donate-locations-header-mobile">Donation Locations</h2> <div class="donate-locations-row clear-fix"><div class="one-third clear-fix"><h2>Dress for Success Rochester</h2><p>47 State Street<br />Back door (on Pindle Alley) <br />Rochester<br />New York<br />14614<br />United States of America<br /></p></div><div class="one-third"><div class="donate-locations-map" data-location="47 State Street Back door (on Pindle Alley) Rochester United States of America"></div><p><a target="_blank" href="https://maps.google.com?daddr=47 State Street Back door (on Pindle Alley) Rochester United States of America">Get Full Directions</a></p></div><div class="one-third"><p>Donations accepted only at our back door on Pindle Alley Door (off W. Main, between Fitzhugh and State St.) by appointment only. Please do not bring items to the State Street boutique entrance.<br /> <br /> We are unable to accept clothing in garbage bags, or boxes. <br /> Please, only laundered or professional clothing cleaned, and on hangers. <br /> <br /> Donations accepted by appointment only.<br /> Contact our Boutique Coordinator <br /> email: hello@dfsrochester.org<br /> <br /> We do not have pick up service.</p></div></div> </div> </div> </div> </div> </div> <script type="text/javascript"> window.modulesToInit.push('DonateLocationMap'); window.modulesToInit.push('DonateHeader'); </script> <footer class="footer" role="contentinfo"> <div id="inner-footer" class="wrap clearfix"> <p class="source-org copyright">&copy; 2024 Dress for Success</p> <div class="footer-nav"> <ul> <li><a href="/contact">Contact</a></li> <li><a href="/donate">Donate</a></li> <li><a href="/contact" id="footer-join-newsletter">Join Newsletter</a></li> <li><a href="https://dressforsuccess.org/terms-of-service">Terms</a></li> <li><a href="https://dressforsuccess.org/privacy-policy">Privacy</a></li> </ul> </div> <div id="social" class="connect"> <div class="connect-label">Connect with us:</div> <div class="media-btn"> <a target="_blank" href="https://www.linkedin.com/company/dress-for-success-rochester" class="linkedin"></a> </div> <div class="media-btn"> <a target="_blank" href="https://www.facebook.com/dfsrochester" class="facebook"></a> </div> <div class="media-btn"> <a target="_blank" href="https://twitter.com/dfsrochester" class="twitter"></a> </div> <div class="media-btn"> <a target="_blank" href="http://instagram.com/dfsrochester" class="instagram"></a> </div> <div class="media-btn"> <a target="_blank" href="https://www.pinterest.com/dressforsuccess/" class="pinterest"></a> </div> <div class="media-btn"> <a target="_blank" href="https://www.youtube.com/channel/UCjAP1RLNhaAdS-V08KrUnuA" class="youtube"></a> </div> </div> </div> <div id="newsletter-form-overlay" class="modal"> <div id="newsletter-thank-you" class="form-thank-you"> Thank You! You have been added to our email list. </div> <div id="newsletter-modal-content" class="modal-content form-wrapper"> <h3>Join our<br />email list</h3> <div id="newsletter-form"> <div class="loading-cover"> <img src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/images/loading.gif" alt="loading" /> </div> <div class="form-fields"> <div class="form-col"> <label for="newsletter-first-name">First Name:</label> <input type="text" id="newsletter-first-name" data-v-required value="" /> <br /> <label for="newsletter-last-name">Last Name:</label> <input type="text" id="newsletter-last-name" data-v-required value="" /> <br /> <label for="newsletter-email">E-mail:</label> <input type="text" id="newsletter-email" data-v-required data-v-format-email value="" /> </div> </div> <button type="button" id="newsletter-submit" class="red-button form-submit">Join</button> </div> <button type="button" id="newsletter-close-x" class="modal-close-x"></button> </div> </div> <div id="gdpr-notice" class="footer-modal"> <div id="gdpr-modal-content" class="footer-modal-content"> <div id="gdpr-description" class="footer-modal-text"> <div>Dress for Success uses cookies in order to better understand who visits our site, which is administered in the United States, and how we can better engage our users. For more information, you can read our privacy policy <a target="_blank" href="https://dressforsuccess.org/privacy-policy/">here</a>.</div> <div>I hereby consent to the use of cookies and transfer of this data to the United States.</div> </div> <div class="gdpr-buttons"> <button type="button" id="gdpr-modal-accept" class="modal-button">Accept</button> <button type="button" id="gdpr-modal-dismiss" class="modal-button">Dismiss</button> </div> </div> </div> </footer> </div> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" id="custom-script-js-extra"> /* <![CDATA[ */ var wpdata = {"object_id":"94","site_url":"https:\/\/rochester.dressforsuccess.org"}; /* ]]> */ </script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/plugins/wp-meta-and-date-remover/assets/js/inspector.js" id="custom-script-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/js/dfs.libs.min.js" id="dfs-libs-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/js/language-selector.js?v=1.02" id="language-selector-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/js/scripts.js?v=1.01" id="bones-js-js"></script> <script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/themes/dfs/library/js/dfs.app.min.js?v=1.31" id="dfs-app-js"></script> <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=AIzaSyC-qmJbzyhG0_UK8R23RqjCbk67xZQgElI" id="google-maps-js"></script> <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?render=6LdmgLMUAAAAADD0wphmPwl42T8COaAAuGteXqHd" id="google-recaptcha-js"></script> <script type="text/javascript">/*<![CDATA[*/childSiteBeforeLoad();/*]]>*/</script><script type="text/javascript" src="https://rochester.dressforsuccess.org/wp-content/plugins/wp-translator-revolution-dropdown/javascript/jquery.translator.min.js?ver=2.2"></script><script type="text/javascript">/*<![CDATA[*/var _translator_revolution_dropdown=_translator_revolution_dropdown||{languages: ["en","fr","es"],scrollBarLanguages: "10",flags: false,targetSelector: ".translate",locationWidget: false,location: "#header-language-selector",onBeforeInitialize: function(translator, options) { childSiteBeforeInit(translator, options);},onInitialize: function(translator, options) { childSiteOnInit(translator, options);},onStart: function(filtered_elements, source, from, to, options) { childSiteOnStartTranslate(filtered_elements, source, from, to, options);},onComplete: function(filtered_elements, translation, source, from, to, options, restore) { childSiteOnCompleteTranslate(filtered_elements, translation, source, from, to, options, restore);},flagsFolder: "https:\/\/rochester.dressforsuccess.org\/wp-content\/plugins\/wp-translator-revolution-dropdown\/images\/",clsKey: "th5b159602e694fc2d5d7659ab928332"};/*]]>*/</script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10