diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt
index 89a2b74fda25c42420f7f8010a0d82652715d2ea..335e85c4a6e117dc6b1471fd58c8c1ab35534c83 100644
--- a/profiles/wcm_base/CHANGELOG.txt
+++ b/profiles/wcm_base/CHANGELOG.txt
@@ -1,8 +1,19 @@
+WCM Base 7.x-1.x, 2016-02-24
+----------------------------
+- OCIO Media: Hide file destination field for remote files.
+- OCIO Taxonomy: Added chosen to news article tags field.
+- WCM Base: patched media contrib modules
+  - Media Internet: Allow editing remote file URLs.
+  - Media Youtube: Fix exception handling errors.
+- OCIO Omega Base:
+  - Added blockquote styles.
+  - Fixed slideshow height bug.
+
 WCM Base 7.x-1.x, 2016-02-19
 ----------------------------
 - OCIO Featured Slideshow: Add options for slideshow text color and ability
   to make translucent background optional.
-- OCIO Omega base: Allow anchors in tile pane URLs.
+- OCIO Omega Base: Allow anchors in tile pane URLs.
 
 WCM Base 7.x-1.x, 2016-02-11
 ----------------------------
diff --git a/profiles/wcm_base/libraries/fitvids/jquery.fitvids.js b/profiles/wcm_base/libraries/fitvids/jquery.fitvids.js
index 3742b4e00fb130f778670e85c6da77630e4cd170..bbfcdc0fe874b0ba92cd06dac3cd9aa181a6a349 100644
--- a/profiles/wcm_base/libraries/fitvids/jquery.fitvids.js
+++ b/profiles/wcm_base/libraries/fitvids/jquery.fitvids.js
@@ -55,7 +55,7 @@
       $allVideos = $allVideos.not('object object'); // SwfObj conflict patch
       $allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video.
 
-      $allVideos.each(function(count){
+      $allVideos.each(function(){
         var $this = $(this);
         if($this.parents(ignoreList).length > 0) {
           return; // Disable FitVids on this video.
@@ -69,14 +69,19 @@
         var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
             width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
             aspectRatio = height / width;
-        if(!$this.attr('id')){
-          var videoID = 'fitvid' + count;
-          $this.attr('id', videoID);
+        if(!$this.attr('name')){
+          var videoName = 'fitvid' + $.fn.fitVids._count;
+          $this.attr('name', videoName);
+          $.fn.fitVids._count++;
         }
         $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%');
         $this.removeAttr('height').removeAttr('width');
       });
     });
   };
+  
+  // Internal counter for unique video names.
+  $.fn.fitVids._count = 0;
+  
 // Works with either jQuery or Zepto
 })( window.jQuery || window.Zepto );
diff --git a/profiles/wcm_base/modules/contrib/admin/PATCHES.txt b/profiles/wcm_base/modules/contrib/admin/PATCHES.txt
index d6a705e115ccc61f6d0b475e6c75677ab19cd761..0de9d4c58bb2ce55a552d90f4f8261daa8e36a84 100644
--- a/profiles/wcm_base/modules/contrib/admin/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/admin/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/1334804-admin-jquery-updated-6.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/administerusersbyrole/PATCHES.txt b/profiles/wcm_base/modules/contrib/administerusersbyrole/PATCHES.txt
index a8af5d6d17cd58bf2654a3cc634b535e6859a751..85feeab4d6b0d6b5309b3af2384a29a2656ccbd2 100644
--- a/profiles/wcm_base/modules/contrib/administerusersbyrole/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/administerusersbyrole/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/administerusersbyrole-can_create_user_ajax_submit-2557473-13-D7.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/better_exposed_filters/PATCHES.txt b/profiles/wcm_base/modules/contrib/better_exposed_filters/PATCHES.txt
index 922031ec3c8ffae74f5602ef6b518c261f3fe9ee..c74d33744677f6fdd7e55d99c00d2d30b3a97934 100644
--- a/profiles/wcm_base/modules/contrib/better_exposed_filters/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/better_exposed_filters/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/bef-placeholder_support-2560321-2.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/breakpoints/PATCHES.txt b/profiles/wcm_base/modules/contrib/breakpoints/PATCHES.txt
index bd8feba4b63914414c5f1403322f29ef8360d92b..92968bc18e34825cddbdedc5adb664663e442a48 100644
--- a/profiles/wcm_base/modules/contrib/breakpoints/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/breakpoints/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - https://www.drupal.org/files/issues/2415363-breakpoints-menu_rebuild-13.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/chosen/PATCHES.txt b/profiles/wcm_base/modules/contrib/chosen/PATCHES.txt
index 778363e1e83a4e2a4ac9208c116f94e05664f114..932921d40ffcb299165fb7aff0413198402bafd3 100644
--- a/profiles/wcm_base/modules/contrib/chosen/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/chosen/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/chosen-remove_none_option-2117827-7.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/ctools/PATCHES.txt b/profiles/wcm_base/modules/contrib/ctools/PATCHES.txt
index 6655a0adbd9e4ebbb69b995c58e83cc007146403..5a7ea8106df25b639609e176207df9fb8fc61f93 100644
--- a/profiles/wcm_base/modules/contrib/ctools/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/ctools/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/issues/ctools-readd_access_callback_params-2209775-24.patch
 - http://drupal.org/files/issues/views_content-keyword-substitution-1910608-33.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/defaultconfig/PATCHES.txt b/profiles/wcm_base/modules/contrib/defaultconfig/PATCHES.txt
index db91ce586758e0b961c835d43e24505c72449cc2..a646afe941f5caecd4b3216d250706eb36dbe56b 100644
--- a/profiles/wcm_base/modules/contrib/defaultconfig/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/defaultconfig/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/issues/defaultconfig-rebuild-2008178-14.patch
 - http://drupal.org/files/issues/1900574.defaultconfig.undefinedindex_20.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/defaultcontent/PATCHES.txt b/profiles/wcm_base/modules/contrib/defaultcontent/PATCHES.txt
index 0d26fb0873493428ed36e223458a76d266dd0382..120241d93a15a205f2319ea03a7e986ba2dbe52a 100644
--- a/profiles/wcm_base/modules/contrib/defaultcontent/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/defaultcontent/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/1754428-allow-node-export-alter.patch
 - http://drupal.org/files/1757782-cannot-import-menu-hierarchy-8.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/features/PATCHES.txt b/profiles/wcm_base/modules/contrib/features/PATCHES.txt
index 47fe1854a30ae8e8f1b0246e383858eea865716b..d1c847fe4671522beff31958e14374b7d54b4b0b 100644
--- a/profiles/wcm_base/modules/contrib/features/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/features/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - https://drupal.org/files/issues/export_shorcuts_sets-986968-36.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/file_entity/PATCHES.txt b/profiles/wcm_base/modules/contrib/file_entity/PATCHES.txt
index 8c24a881dec1ba1f5bde86deeaae99a76c1b6583..8ad5f47df1001ed253e04207b5c6287a40e8180a 100644
--- a/profiles/wcm_base/modules/contrib/file_entity/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/file_entity/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/issues/file_entity-file-size-limit-per-file-type-2530656-3.patch
 - http://drupal.org/files/issues/2537982-fix-changing-file-scheme.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/jquery_update/PATCHES.txt b/profiles/wcm_base/modules/contrib/jquery_update/PATCHES.txt
index 2f41873b1abd313b2a7ffbd741f8042c8872b804..f6dfcf6a7abce873341758d8911f9c56c830e910 100644
--- a/profiles/wcm_base/modules/contrib/jquery_update/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/jquery_update/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/jquery_update-autoheight_fix-2241973-7.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/manualcrop/PATCHES.txt b/profiles/wcm_base/modules/contrib/manualcrop/PATCHES.txt
index 9e864c1d439f4ae278f191004f4bbf2c6cffce04..6627972d7ced0971579e99600ab056ddb2c2851f 100644
--- a/profiles/wcm_base/modules/contrib/manualcrop/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/manualcrop/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/manualcrop-two-crop-tools-2237835.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/media/PATCHES.txt b/profiles/wcm_base/modules/contrib/media/PATCHES.txt
index 0148d1e31c20dde8ce67a83a63082882fb8ce6f5..a01561226c4cfef7bf32d12d03e09b3764bbced2 100644
--- a/profiles/wcm_base/modules/contrib/media/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/media/PATCHES.txt
@@ -1,6 +1,7 @@
 The following patches have been applied to this project:
+- http://drupal.org/files/issues/media-edit_uri_for_remote_files-2297685-6.patch
 - http://drupal.org/files/issues/media-js-dialog-issues-2093435-21.patch
 - http://drupal.org/files/issues/media-alt_and_title_double-2308487-9.patch
 - http://drupal.org/files/issues/media-file-name-focus-2084287-2.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/media/modules/media_internet/media_internet.module b/profiles/wcm_base/modules/contrib/media/modules/media_internet/media_internet.module
index d94b47926a317f7fb8ff0c3a151be26da539d581..8b158fc8c28bad01dec73b7db01a514c51dde5aa 100644
--- a/profiles/wcm_base/modules/contrib/media/modules/media_internet/media_internet.module
+++ b/profiles/wcm_base/modules/contrib/media/modules/media_internet/media_internet.module
@@ -320,3 +320,47 @@ function media_internet_add_submit($form, &$form_state) {
     $form_state['storage']['upload'] = $file->fid;
   }
 }
+
+/**
+ * Implements hook_form_FORM_ID_alter().
+ */
+function media_internet_form_file_entity_edit_alter(&$form, &$form_state) {
+
+  $embed_code = file_create_url($form['#entity']->uri);
+
+  try {
+    $provider = get_class(media_internet_get_provider($embed_code));
+  }
+  catch (Exception $e) {
+    form_set_error('embed_code', $e->getMessage());
+    $provider = NULL;
+  }
+
+  if ($provider != 'MediaInternetFileHandler') {
+    $form['embed_code'] = array(
+      '#type' => 'textfield',
+      '#title' => t('File URL'),
+      '#description' => t('Enter the URL of this file.'),
+      '#attributes' => array('class' => array('media-add-from-url')),
+      '#maxlength' => 2083,
+      '#required' => TRUE,
+      '#default_value' => $embed_code,
+    );
+
+    $form['#validators'] = array();
+
+    array_unshift($form['actions']['submit']['#validate'], 'media_internet_add_validate');
+    array_unshift($form['actions']['submit']['#submit'], 'media_internet_edit_submit');
+  }
+}
+
+/**
+ *  Submit callback that updates managed file URI.
+ */
+function media_internet_edit_submit($form, &$form_state) {
+  $embed_code = $form_state['values']['embed_code'];
+  $provider = get_class(media_internet_get_provider($embed_code));
+  $handler = new $provider($embed_code);
+
+  $form_state['values']['uri'] = $handler->parse($embed_code);
+}
diff --git a/profiles/wcm_base/modules/contrib/media_vimeo/PATCHES.txt b/profiles/wcm_base/modules/contrib/media_vimeo/PATCHES.txt
index 804e03144e2da21292104471ada8434606a09166..2a840b039580f7095f76e119b9e6e381393538cb 100644
--- a/profiles/wcm_base/modules/contrib/media_vimeo/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/media_vimeo/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - https://www.drupal.org/files/issues/no_exception_handling-2446199-1.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/media_youtube/PATCHES.txt b/profiles/wcm_base/modules/contrib/media_youtube/PATCHES.txt
new file mode 100644
index 0000000000000000000000000000000000000000..53fad5c68bc461639c67d847f74335b9af1fa684
--- /dev/null
+++ b/profiles/wcm_base/modules/contrib/media_youtube/PATCHES.txt
@@ -0,0 +1,4 @@
+The following patches have been applied to this project:
+- http://drupal.org/files/issues/media_youtube-remove_thumbnail_exception-2498493-23.patch
+
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/media_youtube/includes/MediaYouTubeStreamWrapper.inc b/profiles/wcm_base/modules/contrib/media_youtube/includes/MediaYouTubeStreamWrapper.inc
index 72f925f2f77208f99cfcad3f659777fb100fb0cd..0e564fc5cabc12f2792f210c4d9b5ad314381ea3 100644
--- a/profiles/wcm_base/modules/contrib/media_youtube/includes/MediaYouTubeStreamWrapper.inc
+++ b/profiles/wcm_base/modules/contrib/media_youtube/includes/MediaYouTubeStreamWrapper.inc
@@ -28,8 +28,11 @@ class MediaYouTubeStreamWrapper extends MediaReadOnlyStreamWrapper {
       return $data['thumbnail_url'];
     }
     else {
-      throw new Exception("Error Processing Request. (Error: {$response->code}, {$response->error})");
-      return;
+      $file = file_uri_to_object($this->uri);
+      $icon_dir = variable_get('media_icon_base_directory', 'public://media-icons') . '/' . variable_get('media_icon_set', 'default');
+      $local_path = file_icon_path($file, $icon_dir);
+
+      return $local_path;
     }
   }
 
diff --git a/profiles/wcm_base/modules/contrib/panelizer/PATCHES.txt b/profiles/wcm_base/modules/contrib/panelizer/PATCHES.txt
index fcd582b1c81c7e8ef47b15b0e07e10fff2133416..8cbf64475227bfccf5b6b15f8f28165df46dc1f0 100644
--- a/profiles/wcm_base/modules/contrib/panelizer/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/panelizer/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/issues/array-to-object-on-update-1623536-26.patch
 - http://www.drupal.org/files/issues/panelizer-search_api-2416505-3.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/panels/PATCHES.txt b/profiles/wcm_base/modules/contrib/panels/PATCHES.txt
index 4e1cdbff7b3b5cd54b6bbfe3273a1450cb3645d0..a0f87b265a3c6c31690cb66238e50819dea2ac34 100644
--- a/profiles/wcm_base/modules/contrib/panels/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/panels/PATCHES.txt
@@ -3,4 +3,4 @@ The following patches have been applied to this project:
 - https://www.drupal.org/files/issues/panels-focus-add-content-tab-2390803-13.patch
 - https://www.drupal.org/files/issues/panels-1588212-10.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/pathauto/PATCHES.txt b/profiles/wcm_base/modules/contrib/pathauto/PATCHES.txt
index 267648ff56b12148743fc2627cbb47e83bcb693a..85b2e6350c365470c54275c5fdc0246e34a8b023 100644
--- a/profiles/wcm_base/modules/contrib/pathauto/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/pathauto/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/pathauto-persist-936222-195-pathauto-state.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/private/PATCHES.txt b/profiles/wcm_base/modules/contrib/private/PATCHES.txt
index 7d310d0fec4c79352fe35970be38ecebd92d42d4..bb0d78321672923cd51e7e9389517d2113e10bc6 100644
--- a/profiles/wcm_base/modules/contrib/private/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/private/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/private-bypasses_content_type_edit_permissions-2660598-2.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/search_api_db/PATCHES.txt b/profiles/wcm_base/modules/contrib/search_api_db/PATCHES.txt
index 1694c453a40e88b1fdd2165a429980ff335cbe3b..f078ccc4f97e381796a8d76df1d1e84310cb0ee9 100644
--- a/profiles/wcm_base/modules/contrib/search_api_db/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/search_api_db/PATCHES.txt
@@ -3,4 +3,4 @@ The following patches have been applied to this project:
 - https://www.drupal.org/files/issues/2436341-search_api_db-updb-1.patch
 - https://www.drupal.org/files/issues/2343371-search_api_db-update-table-8.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/simplesamlphp_auth/PATCHES.txt b/profiles/wcm_base/modules/contrib/simplesamlphp_auth/PATCHES.txt
index 1a1f14c77a4164f278f56db2215c2dfc825c7ec3..7fcd2a87eb25d9010b7e1eaed28f05a631e2c5ae 100644
--- a/profiles/wcm_base/modules/contrib/simplesamlphp_auth/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/simplesamlphp_auth/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/simplesamlphp_auth-admin-users-cannot-other-users-9291915-8.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/uuid_features/PATCHES.txt b/profiles/wcm_base/modules/contrib/uuid_features/PATCHES.txt
index dc5e6bbe3d6c8677f122dfd4228bf9a741bd0567..c4ed3d96e18065be35729bd5d4c060921e62933a 100644
--- a/profiles/wcm_base/modules/contrib/uuid_features/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/uuid_features/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/issues/uuid_features-2220837-path-and-pathauto-for-node-3.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/views/PATCHES.txt b/profiles/wcm_base/modules/contrib/views/PATCHES.txt
index ab83ee9da6d85c9fef70c885c3284fa0a0f89344..264e521e0b10d314d0dea242de9db8f068c80a9e 100644
--- a/profiles/wcm_base/modules/contrib/views/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/views/PATCHES.txt
@@ -1,4 +1,4 @@
 The following patches have been applied to this project:
 - http://drupal.org/files/views-exposed-sorts-2037469-1.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/views_autocomplete_filters/PATCHES.txt b/profiles/wcm_base/modules/contrib/views_autocomplete_filters/PATCHES.txt
index 85fee513b6624680267a34053744adbc9cd0ecee..b04596a6cf11bf95d3cfd25f11718c7eee754de2 100644
--- a/profiles/wcm_base/modules/contrib/views_autocomplete_filters/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/views_autocomplete_filters/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://www.drupal.org/files/issues/views_autocomplete_filters-cache-2374709-2.patch
 - http://www.drupal.org/files/issues/views_autocomplete_filters-content-pane-2317351-4.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/contrib/workbench_moderation/PATCHES.txt b/profiles/wcm_base/modules/contrib/workbench_moderation/PATCHES.txt
index 09cc1d58b250e1e171be931d9df445a2b8042d31..b468405ce94fd0a20c60d42ccc1a27f6e4f0c483 100644
--- a/profiles/wcm_base/modules/contrib/workbench_moderation/PATCHES.txt
+++ b/profiles/wcm_base/modules/contrib/workbench_moderation/PATCHES.txt
@@ -2,4 +2,4 @@ The following patches have been applied to this project:
 - http://drupal.org/files/playnicewithpanels-1285090-22.patch
 - http://drupal.org/files/issues/view_all_unpublished-1492118-64.patch
 
-This file was automatically generated by Drush Make (http://drupal.org/project/drush).
+This file was automatically generated by Drush Make (http://drupal.org/project/drush).
\ No newline at end of file
diff --git a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.module b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.module
index 22a4503407cb007facbc0de90235cc5c2f4d4b6c..99cdd0d389cc2cc6f33c13fe5c7b7e001d726f0e 100644
--- a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.module
+++ b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.module
@@ -40,17 +40,23 @@ function ocio_media_field_display_file_alter(&$display, $context) {
  * Implements hook_form_alter().
  */
 function ocio_media_form_alter(&$form, &$form_state, $form_id) {
+
   if (in_array($form_id, array('file_entity_edit', 'file_entity_add_upload'))) {
     $hide_fields = array(
       'field_file_image_alt_text',
       'field_file_image_title_text',
       'field_basic_image_caption',
     );
+
     foreach ($hide_fields as $field) {
       if (isset($form[$field])) {
         $form[$field]['#access'] = FALSE;
       }
     }
+
+    if (!isset($form['embed_code'])) {
+      $form['destination']['#access'] = TRUE;
+    }
   }
 
   if ($form_id == 'media_wysiwyg_format_form') {
@@ -85,6 +91,3 @@ function ocio_media_file_mimetype_mapping_alter(&$mapping) {
     $mapping['extensions'][$extension] = $index;
   }
 }
-
-
-
diff --git a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_base.inc b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_base.inc
index 1360639451b4e7b0ca9dcea5a9560873c6bedc03..b2caac8c06e0cdb2607c41be4d1a54cb58e34079 100644
--- a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_base.inc
+++ b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_base.inc
@@ -10,7 +10,7 @@
 function ocio_taxonomy_field_default_field_bases() {
   $field_bases = array();
 
-  // Exported field_base: 'field_contact_group'
+  // Exported field_base: 'field_contact_group'.
   $field_bases['field_contact_group'] = array(
     'active' => 1,
     'cardinality' => 1,
@@ -36,7 +36,7 @@ function ocio_taxonomy_field_default_field_bases() {
     'type' => 'taxonomy_term_reference',
   );
 
-  // Exported field_base: 'field_file_tags'
+  // Exported field_base: 'field_file_tags'.
   $field_bases['field_file_tags'] = array(
     'active' => 1,
     'cardinality' => 1,
@@ -62,7 +62,7 @@ function ocio_taxonomy_field_default_field_bases() {
     'type' => 'taxonomy_term_reference',
   );
 
-  // Exported field_base: 'field_leadership_group'
+  // Exported field_base: 'field_leadership_group'.
   $field_bases['field_leadership_group'] = array(
     'active' => 1,
     'cardinality' => 1,
@@ -88,7 +88,7 @@ function ocio_taxonomy_field_default_field_bases() {
     'type' => 'taxonomy_term_reference',
   );
 
-  // Exported field_base: 'field_tags'
+  // Exported field_base: 'field_tags'.
   $field_bases['field_tags'] = array(
     'active' => 1,
     'cardinality' => -1,
diff --git a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_instance.inc b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_instance.inc
index 6055721b2f63ae9bd0d37b3bc8d4a266d422e253..a7417a3c9265b2a918257a4a2e8f9d8801d49ef8 100644
--- a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_instance.inc
+++ b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.features.field_instance.inc
@@ -10,7 +10,7 @@
 function ocio_taxonomy_field_default_field_instances() {
   $field_instances = array();
 
-  // Exported field_instance: 'file-audio-field_file_tags'
+  // Exported field_instance: 'file-audio-field_file_tags'.
   $field_instances['file-audio-field_file_tags'] = array(
     'bundle' => 'audio',
     'default_value' => NULL,
@@ -64,7 +64,7 @@ function ocio_taxonomy_field_default_field_instances() {
     ),
   );
 
-  // Exported field_instance: 'file-document-field_file_tags'
+  // Exported field_instance: 'file-document-field_file_tags'.
   $field_instances['file-document-field_file_tags'] = array(
     'bundle' => 'document',
     'default_value' => NULL,
@@ -118,7 +118,7 @@ function ocio_taxonomy_field_default_field_instances() {
     ),
   );
 
-  // Exported field_instance: 'file-image-field_file_tags'
+  // Exported field_instance: 'file-image-field_file_tags'.
   $field_instances['file-image-field_file_tags'] = array(
     'bundle' => 'image',
     'default_value' => NULL,
@@ -202,7 +202,7 @@ function ocio_taxonomy_field_default_field_instances() {
     ),
   );
 
-  // Exported field_instance: 'file-video-field_file_tags'
+  // Exported field_instance: 'file-video-field_file_tags'.
   $field_instances['file-video-field_file_tags'] = array(
     'bundle' => 'video',
     'default_value' => NULL,
@@ -228,6 +228,12 @@ function ocio_taxonomy_field_default_field_instances() {
         'type' => 'hidden',
         'weight' => 0,
       ),
+      'video_center' => array(
+        'label' => 'above',
+        'settings' => array(),
+        'type' => 'hidden',
+        'weight' => 0,
+      ),
       'video_left' => array(
         'label' => 'above',
         'settings' => array(),
@@ -268,7 +274,7 @@ function ocio_taxonomy_field_default_field_instances() {
     ),
   );
 
-  // Exported field_instance: 'node-article-field_tags'
+  // Exported field_instance: 'node-article-field_tags'.
   $field_instances['node-article-field_tags'] = array(
     'bundle' => 'article',
     'default_value' => NULL,
@@ -320,18 +326,17 @@ function ocio_taxonomy_field_default_field_instances() {
       'user_register_form' => FALSE,
     ),
     'widget' => array(
-      'active' => 0,
-      'module' => 'taxonomy',
+      'active' => 1,
+      'module' => 'options',
       'settings' => array(
-        'autocomplete_path' => 'taxonomy/autocomplete',
-        'size' => 60,
+        'apply_chosen' => 1,
       ),
-      'type' => 'taxonomy_autocomplete',
+      'type' => 'options_select',
       'weight' => 31,
     ),
   );
 
-  // Exported field_instance: 'user-user-field_contact_group'
+  // Exported field_instance: 'user-user-field_contact_group'.
   $field_instances['user-user-field_contact_group'] = array(
     'bundle' => 'user',
     'default_value' => NULL,
@@ -378,7 +383,7 @@ function ocio_taxonomy_field_default_field_instances() {
     ),
   );
 
-  // Exported field_instance: 'user-user-field_leadership_group'
+  // Exported field_instance: 'user-user-field_leadership_group'.
   $field_instances['user-user-field_leadership_group'] = array(
     'bundle' => 'user',
     'default_value' => NULL,
diff --git a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.info b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.info
index 8498a61207ff43524dc594eb5f3a6b51806c4fff..96ddf169318af092fc2cd9298ecc5009a47e4cf0 100644
--- a/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.info
+++ b/profiles/wcm_base/modules/custom/ocio_taxonomy/ocio_taxonomy.info
@@ -10,6 +10,7 @@ dependencies[] = custom_breadcrumbs_paths
 dependencies[] = custom_breadcrumbs_views
 dependencies[] = ds
 dependencies[] = features
+dependencies[] = options
 dependencies[] = strongarm
 dependencies[] = taxonomy
 dependencies[] = taxonomy_access_fix
@@ -39,12 +40,6 @@ features[taxonomy][] = ocio_tags
 features[taxonomy][] = wcm_file_tags
 features[taxonomy][] = wcm_user_contact_group
 features[taxonomy][] = wcm_user_leadership_group
-features[uuid_term][] = 11c488a9-c4d6-41d2-9f5a-7e1aff2465bc
-features[uuid_term][] = 3f36288d-48cb-4a01-a725-dee41084db61
-features[uuid_term][] = 48e6d0a8-38df-445c-b739-efe08f048cb6
-features[uuid_term][] = 6cd2714c-91a5-4b78-8f36-ee2f613380fc
-features[uuid_term][] = 958c7ff0-5741-4954-aad7-c35a2c6cc0cc
-features[uuid_term][] = 9f57971f-1cbf-4b2b-a0df-262d2ea80f64
 features[variable][] = custom_breadcrumbs_paths_allow_wildcards
 features[variable][] = simplify_taxonomy_ocio_tags
 features[variable][] = simplify_taxonomy_panopoly_categories
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
index 4ea62f8d34a7b77b9dd7f0f16004e2a98a241201..b82deb93d037876bd11685d14af9acd1f834bad3 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
@@ -1,3 +1,4 @@
+@charset "UTF-8";
 /*******************************************************************************
  * ocio-default.layout.scss
  *
@@ -817,6 +818,39 @@ tr.error {
 	padding: 0.3em 0.6em;
 }
 */
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1145,6 +1179,39 @@ table caption {
   background: #c7c7c7;
 }
 
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
index 2dbb6a38eec62ff6a2d2de233a4546fae27e2214..9ae6635b53471cca75e115a4c28f6144fa3a40db 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
@@ -1,3 +1,4 @@
+@charset "UTF-8";
 /*******************************************************************************
  * ocio-default.layout.scss
  *
@@ -815,6 +816,39 @@ tr.error {
 	padding: 0.3em 0.6em;
 }
 */
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1139,6 +1173,39 @@ table caption {
   background: #c7c7c7;
 }
 
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
index 625084e9d07b97174f44b46fa97a14dc79694a65..d0b6f94f26eaacb9adab69c1b2a9e2aa71c2913e 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
@@ -1,3 +1,4 @@
+@charset "UTF-8";
 /* No files to import found in abstractions/**\/* */
 ul.breadcrumb {
   padding: 0;
@@ -811,6 +812,39 @@ tr.error {
 	padding: 0.3em 0.6em;
 }
 */
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1136,6 +1170,39 @@ table caption {
   background: #c7c7c7;
 }
 
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1563,6 +1630,18 @@ ul.flex-direction-nav, ul.flex-direction-nav:hover {
   background-color: #fff;
 }
 
+.l-region--hero-wrapper {
+  position: relative;
+  max-height: 500px;
+}
+.l-region--hero-wrapper .views-field-field-basic-image-image {
+  position: relative;
+  top: 0;
+  z-index: 9;
+  max-height: 500px;
+  overflow: hidden;
+}
+
 .block--mm-widgets .item,
 .pane-mm-widgets-live-pane .item {
   margin: 1.5em 0;
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
index 127c126863b4a9636b776ed7d66da89f46c55df6..90b84a3526a6f6643fad9f1a70b124b0da1c07e2 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
@@ -1,3 +1,4 @@
+@charset "UTF-8";
 /* No files to import found in abstractions/**\/* */
 ul.breadcrumb {
   padding: 0;
@@ -813,6 +814,39 @@ tr.error {
 	padding: 0.3em 0.6em;
 }
 */
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1142,6 +1176,39 @@ table caption {
   background: #c7c7c7;
 }
 
+blockquote {
+  padding-left: 0.5em;
+  font-size: 26px;
+  font-size: 2.6rem;
+  line-height: 130%;
+  font-family: "capita", Georgia, serif;
+  font-style: italic;
+}
+blockquote::before {
+  font-size: 35px;
+  font-size: 3.5rem;
+  color: rgba(0, 0, 0, 0.6);
+  content: "\f10d";
+  font-family: FontAwesome;
+  font-style: normal;
+  margin-left: -1.5em;
+  margin-top: -0.25em;
+  float: left;
+}
+
+cite {
+  font-size: 16px;
+  font-size: 1.6rem;
+  font-family: "proximanova", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+}
+cite::before {
+  content: "―";
+  margin-right: 3px;
+}
+
 html, body {
   font-family: "proximanova", Helvetica, Arial, sans-serif;
   color: #2d2d2d;
@@ -1593,6 +1660,18 @@ ul.flex-direction-nav, ul.flex-direction-nav:hover {
   }
 }
 
+.l-region--hero-wrapper {
+  position: relative;
+  max-height: 500px;
+}
+.l-region--hero-wrapper .views-field-field-basic-image-image {
+  position: relative;
+  top: 0;
+  z-index: 9;
+  max-height: 500px;
+  overflow: hidden;
+}
+
 .block--mm-widgets .item,
 .pane-mm-widgets-live-pane .item {
   margin: 1.5em 0;
diff --git a/profiles/wcm_base/themes/ocio_omega_base/sass/base/_typography.scss b/profiles/wcm_base/themes/ocio_omega_base/sass/base/_typography.scss
index 165b91f68ca234cf36d1cb655f65a6edb77138a1..9bcc91131d8dd3f1d75db4002bbe4976cf080c74 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/sass/base/_typography.scss
+++ b/profiles/wcm_base/themes/ocio_omega_base/sass/base/_typography.scss
@@ -1,9 +1,42 @@
+
 // font units
 @mixin font-size($sizeValue: 1.6) {
   font-size: $sizeValue * 10 + px;
   font-size: $sizeValue + rem;
 }
 
+blockquote {
+  padding-left: 0.5em;
+  @include font-size(2.6);
+  line-height: 130%;
+  font-family: $capita;
+  font-style: italic;
+
+  &::before {
+    @include font-size(3.5);
+    color: rgba(0, 0, 0, 0.6);
+    content: "\f10d";
+    font-family: FontAwesome;
+    font-style: normal;
+    margin-left: -1.5em;
+    margin-top: -0.25em;
+    float: left;
+  }
+}
+
+cite {
+  @include font-size(1.6);
+  font-family: $proxima;
+  font-style: normal;
+  display: block;
+  padding-top: 0.6em;
+
+  &::before {
+    content: "―";
+    margin-right: 3px;
+  }
+}
+
 // base typography
 html, body {
   font-family: $proxima;
diff --git a/profiles/wcm_base/themes/ocio_omega_base/sass/components/_featured-slideshow.scss b/profiles/wcm_base/themes/ocio_omega_base/sass/components/_featured-slideshow.scss
index 896bbece345b88a57459ea021bfa130a7c4ad2f6..db781e8548374079aeee48f8c3021464d4c6f805 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/sass/components/_featured-slideshow.scss
+++ b/profiles/wcm_base/themes/ocio_omega_base/sass/components/_featured-slideshow.scss
@@ -14,40 +14,40 @@
     bottom: 0.6em;
     padding: 0.4em 8%;
     @include font-size(2.4);
-    
+
 		.flex-title {
     	display: block;
 			font-weight: 400;
 			line-height: 1.1em;
   	}
-		
+
 		.flex-summary {
     	font-weight: 300;
 			font-size: 0.6em;
 			line-height: 1.2em;
 			display: none;
-			
+
 			//hide summary text until tab view
 			@include breakpoint($tab, true) {
 	    	display: block;
 	    }
     }
-    
+
     //adjust for various breakpoints
     @include breakpoint($tab, true) {
       bottom: 0.3em;
       padding: 0.5em 6%;
       @include font-size(3.2);
-      
+
       .flex-title {
 	      margin-bottom: 0.1em;
       }
     }
-    
+
     @include breakpoint($desk, true) {
       @include font-size(3.4);
     }
-    
+
 		@include breakpoint($wide, true) {
       @include font-size(4.0);
     }
@@ -75,7 +75,7 @@
   		}
     }
   }
-	
+
 	.flex-direction-nav a {
     color: rgba(0, 0, 0, 0.8);
     text-decoration: none;
@@ -126,7 +126,7 @@ ul.flex-direction-nav, ul.flex-direction-nav:hover {
 	&.flex-active {
 		background-color:$white;
 	}
-	
+
 	// hide pager on small view
 	@include breakpoint($small, true) {
 		display: none;
@@ -134,3 +134,15 @@ ul.flex-direction-nav, ul.flex-direction-nav:hover {
 }
 
 
+.l-region--hero-wrapper {
+  position: relative;
+  max-height: 500px;
+
+  .views-field-field-basic-image-image {
+    position: relative;
+    top: 0;
+    z-index: 9;
+    max-height: 500px;
+    overflow: hidden;
+  }
+}
diff --git a/profiles/wcm_base/wcm_base.make b/profiles/wcm_base/wcm_base.make
index 7fb850dedee3200d3f1c22a0bc333224b8886894..8fbcebff81bcd2b538c00be09359ed58c636bcd0 100644
--- a/profiles/wcm_base/wcm_base.make
+++ b/profiles/wcm_base/wcm_base.make
@@ -77,10 +77,15 @@ projects[mimemail][subdir] = contrib
 
 projects[media][version] = 2.0-beta1
 projects[media][subdir] = contrib
+projects[media][patch][2297685] = http://drupal.org/files/issues/media-edit_uri_for_remote_files-2297685-6.patch
 projects[media][patch][2093435] = http://drupal.org/files/issues/media-js-dialog-issues-2093435-21.patch
 projects[media][patch][2308487] = http://drupal.org/files/issues/media-alt_and_title_double-2308487-9.patch
 projects[media][patch][2084287] = http://drupal.org/files/issues/media-file-name-focus-2084287-2.patch
 
+projects[media_youtube][version] = 3.0
+projects[media_youtube][subdir] = contrib
+projects[media_youtube][patch][2498493] = http://drupal.org/files/issues/media_youtube-remove_thumbnail_exception-2498493-23.patch
+
 projects[navbar][version] = 1.5
 projects[navbar][subdir] = contrib