>
thumbnail-no-wrap">
diff --git a/wp-content/themes/score/functions.php b/wp-content/themes/score/functions.php
index 7e68a27..245b820 100644
--- a/wp-content/themes/score/functions.php
+++ b/wp-content/themes/score/functions.php
@@ -52,6 +52,7 @@ add_action( 'wp_footer', 'wp_print_head_scripts', 5 );
// Main Theme Options
require_once(ghostpool_admin . 'theme-options.php');
require(ghostpool_inc . 'options.php');
+require(ghostpool_inc . 'fetch-video-data.php');
// Meta Options
require_once(ghostpool_admin . 'theme-meta-options.php');
@@ -524,9 +525,7 @@ function gp_ajax_pagination($pages = '', $range = 2) {
if ($paged + 1 <= $pages) {
echo "
" . __('See More', 'gp_lang') . "";
echo "
 . "/lib/images/loader.gif)
";
-
}
-
echo "
\n";
}
}
diff --git a/wp-content/themes/score/index.php b/wp-content/themes/score/index.php
index 9347723..b575da9 100644
--- a/wp-content/themes/score/index.php
+++ b/wp-content/themes/score/index.php
@@ -9,6 +9,7 @@ get_currentuserinfo();
$gp_settings['cats'],
"ignore_sticky_posts" => 1,
@@ -43,7 +44,7 @@ if (have_posts()) :
$urls_video[] = $gp_settings['video'];
endwhile;
-endif;
+endif;*/
$args = array(
"cat" => $gp_settings['cats'],
@@ -52,7 +53,7 @@ $args = array(
"order" => $order,
"paged" => $paged,
"posts_per_page" => $gp_settings['posts_per_page'],
- "post__not_in" => $ids_descartados
+ //"post__not_in" => $ids_descartados
);
query_posts($args);
diff --git a/wp-content/themes/score/lib/inc/fetch-video-data.php b/wp-content/themes/score/lib/inc/fetch-video-data.php
new file mode 100644
index 0000000..5b7fb7c
--- /dev/null
+++ b/wp-content/themes/score/lib/inc/fetch-video-data.php
@@ -0,0 +1,124 @@
+ admin_url( 'admin-ajax.php' ),
+ 'postCommentNonce' => wp_create_nonce( 'myajax-post-comment-nonce' )
+ ));
+ }
+}
+add_action('wp_print_scripts', 'gp_enqueue_ajax_scripts');
+
+function gp_ajax_video_data() {
+ global $gp_settings, $post, $current_user, $bp;
+
+ $nonce = $_POST['postCommentNonce'];
+ if ( ! wp_verify_nonce( $nonce, 'myajax-post-comment-nonce' ) )
+ die ( 'Busted!');
+
+ // get the submitted parameters
+ if (isset($_POST['id']))
+ $postID = $_POST['id'];
+
+ header('Cache-Control: no-cache, must-revalidate');
+ header('Content-type: application/json');
+
+ $displayed_id = bp_displayed_user_id();
+ $dedication_orderby = "rand"; //date";
+ $category_name = 'dedication';
+ $post_status = array('publish', 'private');
+
+ if ($postID > 0) {
+ $args = array(
+ 'p' => $postID
+ );
+ } else {
+ $args = array(
+ 'post_type' => array('post'),
+ 'orderby' => $dedication_orderby,
+ 'posts_per_page' => -1,
+ 'post_status' => $post_status,
+ 'category_name' => $category_name,
+ );
+ }
+ $array = array();
+ $i = 0;
+
+ $video = new WP_Query($args);
+ while ($video->have_posts()) {
+ $video->the_post();
+ require(dirname(__FILE__).'/../../loop-dedication-data.php');
+
+ // Perfil del usuario: sólo mostrar las dedicadas por él y para él. El resto se descartan.
+ if ( $bp->current_component == BP_DEDICATION_SLUG ) {
+ if (($displayed_id != $gp_settings['from_user_id']) && ($displayed_id != $gp_settings['to_user_id'])) {
+ continue; // me salto esta dedicatoria
+ }
+ }
+
+ // Página de inicio / página del video: Usuario actual puede ver la dedicatoria?
+ if ($post->post_status == 'private') {
+ if (($current_user->ID != $gp_settings['from_user_id']) && ($current_user->ID != $gp_settings['to_user_id'])) {
+ continue; // me salto esta dedicatoria
+ }
+ }
+
+ $array[$i] = array();
+ $array[$i]['id'] = $post->ID;
+ $array[$i]['title'] = $post->post_title;
+ $array[$i]['video'] = $gp_settings['video'];
+ $array[$i]['video_id'] = $gp_settings['video_id'];
+ $array[$i]['video_path'] = $gp_settings['video_path'];
+ $array[$i]['video_type'] = $gp_settings['video_type'];
+ $array[$i]['permalink'] = $post->guid;
+ $array[$i]['extlink'] = $gp_settings['enc_link'];
+ $array[$i]['artist'] = $gp_settings['artist_short'];
+ $array[$i]['song'] = $gp_settings['song_short'];
+ $array[$i]['unreaded'] = $gp_settings['unreaded'];
+
+ $array[$i]['from_to_text'] = $gp_settings['from_flag'];
+ $array[$i]['from_to_text'] .= '
FROM: ' . $gp_settings['from_user_link'] . ' ';
+ $array[$i]['from_to_text'] .= $gp_settings['to_flag'];
+ $array[$i]['from_to_text'] .= '
TO: ' . $gp_settings['to_user_link'] . '';
+
+ $i++;
+
+ break;
+ }
+ wp_reset_postdata();
+
+ $salida = '';
+ foreach($array as $video) {
+ $salida .= '
';
+ $salida .= '' . $video['id'] . '';
+ $salida .= '' . $video['title']. '';
+ $salida .= '' . $video['artist']. '';
+ $salida .= '' . $video['song']. '';
+ $salida .= '' . $video['permalink']. '';
+ $salida .= '' . $video['extlink']. '';
+ $salida .= '';
+ if (($theme_show_new_label) && ($video['unreadedid'])) {
+ $salida .= '' . mar_read_unread_links('', '', false) . '';
+ }
+ $salida .= '';
+ $salida .= $video['from_to_text'];
+ $salida .= '';
+
+ $salida .= '';
+ }
+
+ echo json_encode($salida);
+
+ die();
+}
+add_action('wp_ajax_gp_video_data', 'gp_ajax_video_data');
+//add_action('wp_ajax_nopriv_gp_video_data', 'gp_ajax_video_data');
+
+?>
diff --git a/wp-content/themes/score/lib/scripts/asong2u.js b/wp-content/themes/score/lib/scripts/asong2u.js
index 50a67ea..3d6dd46 100644
--- a/wp-content/themes/score/lib/scripts/asong2u.js
+++ b/wp-content/themes/score/lib/scripts/asong2u.js
@@ -24,7 +24,6 @@ jQuery(document).ready(function(){
} else {
jQuery('#the_slider').addClass('fullscreen_div');
_fullscreen.attr('src', _srcimg.replace('fullscreen.png', 'fullscreen_exit.png'));
- //_fullscreen.parent().appendTo(jQuery('.slideshow_controls'));
_fullscreen.parent().appendTo(jQuery('#componentWrapper'));
}
calc_video_height();
@@ -62,36 +61,43 @@ jQuery(document).ready(function(){
});
jQuery('.dedication-profile .home_column_my_dedications a.read-more').live('click', function(e){
+ jQuery('.dedication-profile .home_column_my_dedications img.read-more-loader').css('display', 'inline');
e.preventDefault();
link = jQuery(this).attr('href');
- jQuery('.dedication-profile .home_column_my_dedications a.read-more').remove();
jQuery.get(link, function(data) {
var kids = jQuery(data).find('#content').children();
jQuery.each(kids, function(){
if (jQuery(this).hasClass('post-loop')) {
- jQuery(this).removeClass();
- jQuery(this).addClass('home-my-dedications post-loop');
+ jQuery(this).removeClass('post type-post status-publish format-standard hentry category-dedication');
+ jQuery(this).addClass('home-my-dedications');
}
+ jQuery('.dedication-profile .home_column_my_dedications img.read-more-loader').remove();
+ jQuery('.dedication-profile .home_column_my_dedications a.read-more').remove();
+
jQuery('.dedication-profile .home_column_my_dedications').append(jQuery(this));
});
});
});
-
-
+
jQuery('.dedication-profile .home_column_dedicated_2_me a.read-more').live('click', function(e){
+ jQuery('.dedication-profile .home_column_dedicated_2_me img.read-more-loader').css('display', 'inline');
e.preventDefault();
link = jQuery(this).attr('href');
- jQuery('.dedication-profile .home_column_dedicated_2_me a.read-more').remove();
jQuery.get(link, function(data) {
var kids = jQuery(data).find('#content').children();
jQuery.each(kids, function(){
if (jQuery(this).hasClass('post-loop')) {
- jQuery(this).removeClass();
- jQuery(this).addClass('home-dedicated-2-me post-loop');
+ jQuery(this).removeClass('post type-post status-publish format-standard hentry category-dedication');
+ jQuery(this).addClass('home-my-dedications');
+ jQuery(this).addClass('home-dedicated-2-me');
}
+ jQuery('.dedication-profile .home_column_dedicated_2_me img.read-more-loader').remove();
+ jQuery('.dedication-profile .home_column_dedicated_2_me a.read-more').remove();
+
jQuery('.dedication-profile .home_column_dedicated_2_me').append(jQuery(this));
+
});
});
});
@@ -103,6 +109,9 @@ var oUrl='';
function updateInfo() {
var id = jQuery.fn.videoGallery.getMediaID();
+ var li_element = jQuery((jQuery('#playlist li').get(id))).attr('id');
+
+ id = li_element.replace('playlist-element-','');
if ((aIndex != id) && (id >= 0)) {
aIndex = id;
@@ -120,6 +129,7 @@ function updateInfo() {
var enc_link = jQuery('#postdata-extlink-' + id).html();
var nUrl = oUrl + 'id/' + the_id;
+
jQuery('#dedicate_this_song_button').attr("href", nUrl);
// Social networks
@@ -200,23 +210,21 @@ function shrinkTitle()
textH1.style.fontSize -= 10+"px";
}
-jQuery(window).ready(function() {
-
- if (jQuery('#slider-wrapper').length > 0 ) {
- jQuery('#content-wrapper .post-loop .post-thumbnail a').click(function(e) {
- e.preventDefault();
- var oUrl = jQuery(this).attr('href');
- jQuery('#playlist li [id^=postdata-link-]').each(function(indice, valor){
- var nUrl = jQuery(this).html();
- if (nUrl == oUrl) {
- jQuery('#componentWrapper').videoGallery.loadMedia(indice);
- jQuery('html, body').animate({ scrollTop: 0 }, 600);
- return false;
- }
- });
- return false;
+jQuery(window).ready(function() {
+ jQuery('#content-wrapper .post-loop .post-thumbnail a').live('click', function(e) {
+ e.preventDefault();
+ var nParent = (jQuery(this).parent().parent());
+ var classList = jQuery(nParent).attr('class').split(' ');
+ jQuery(classList).each(function(index, item) {
+ var id = item.replace('post-','');
+ if (jQuery.isNumeric(id)) {
+ loadVideo(id);
+ jQuery('html, body').animate({ scrollTop: 0 }, 600);
+ return false;
+ }
});
- }
+ return false;
+ });
});
jQuery(document).ready(function(){
diff --git a/wp-content/themes/score/lib/scripts/asong2u.min.js b/wp-content/themes/score/lib/scripts/asong2u.min.js
index bbd6a72..e7da862 100644
--- a/wp-content/themes/score/lib/scripts/asong2u.min.js
+++ b/wp-content/themes/score/lib/scripts/asong2u.min.js
@@ -1 +1,16 @@
-function calc_video_height(){if(jQuery("#the_slider").hasClass("fullscreen_div")){jQuery("#componentWrapper").css("height","100%").css("height","-=115px")}else{if(jQuery("#componentWrapper").css("height")!="500px"){jQuery("#componentWrapper").css("height","500px")}}}function updateInfo(){var a=jQuery.fn.videoGallery.getMediaID();if(aIndex!=a&&a>=0){aIndex=a;if(oUrl==""){oUrl=jQuery("#dedicate_this_song_button").attr("href")}var b=jQuery("#postdata-id-"+a).text();var c=jQuery("#postdata-title-"+a).html();var d=jQuery("#postdata-from-to-"+a).html();var e=jQuery("#postdata-artist-"+a).html();var f=jQuery("#postdata-song-"+a).html();var g=jQuery("#postdata-link-"+a).html();var h=jQuery("#postdata-extlink-"+a).html();var i=oUrl+"id/"+b;jQuery("#dedicate_this_song_button").attr("href",i);i="https://www.facebook.com/sharer.php?u="+h;jQuery("#fsbbtn a").attr("href",i);i="http://twitter.com/intent/tweet?source=sharethiscom&url="+h;jQuery("#twtbtn a").attr("href",i);i="https://plusone.google.com/_/+1/confirm?url="+h;jQuery("#gpsbtn a").attr("href",i);i='javascript:void(window.open("http://www.myspace.com/Modules/PostTo/Pages/?u='+h+'"+encodeURIComponent(document.location.toString()),"ptm","height=450,width=550").focus())';jQuery("#mysbtn a").attr("href",i);jQuery("#dedication-data-panel").hide("fast");jQuery("#dedication-data-panel").slideUp("fast",function(){jQuery("#dedication-data-panel").html(d);jQuery("#dedicationTitle-data-panel").html(d)});jQuery("#dedication-data-panel").slideDown();jQuery("#dedicationFooter_container").slideUp("fast",function(){jQuery("#dedicationArtits").html(e);jQuery("#dedicationSong").html(f)});jQuery("#dedicationFooter_container").slideDown("fast",function(){});jQuery("#dedicationTitle").html(c);shrinkTitle();jQuery("#dedicationTitle a").jTypeWriter();jQuery("#dedicationComments_container").slideUp("fast",function(){jQuery("#dedicationComments_container").load(g+" #comments","",function(a){init_comments();jQuery("#dedicationComments_container").on("submit","#commentform",function(){prepare_new_comment_home();return false})})});jQuery("#dedicationComments_container").slideDown();if(jQuery("#postdata-mark-read-"+a).length>0){jQuery("#postdata-mark-read-"+a+" .mar_mark_as_read").click();jQuery("#postdata-mark-read-"+a).remove()}}}function shrinkTitle(){var a=document.getElementById("dedicationTitle");var b=document.getElementById("dedicationTitle_container");a.style.fontSize=42+"px";while(a.offsetWidth>b.offsetWidth){size=parseInt(a.style.fontSize.replace("px",""));size-=1;a.style.fontSize=size+"px"}a.style.fontSize-=10+"px"}jQuery(document).ready(function(){calc_video_height();jQuery(".controls_fullscreen").css("cursor","pointer");_fullscreen=jQuery(".controls_fullscreen").children("img");_srcimg=_fullscreen.attr("src");_fullscreen.hover(function(){_fullscreen.attr("src",_srcimg.replace("fullscreen.png","fullscreen_on.png"))},function(){_fullscreen.attr("src",_srcimg.replace("fullscreen_on.png","fullscreen.png"))});_fullscreen.bind("click",function(){if(jQuery("#the_slider").hasClass("fullscreen_div")){jQuery("#the_slider").removeClass("fullscreen_div");jQuery(".mediaWrapper").css("width","");jQuery(".youtubeHolder").css("width","");jQuery(".vimeoHolder").css("width","");_fullscreen.parent().appendTo(jQuery("#dedicationFooter_container .columns.two.last"))}else{jQuery("#the_slider").addClass("fullscreen_div");_fullscreen.attr("src",_srcimg.replace("fullscreen.png","fullscreen_exit.png"));_fullscreen.parent().appendTo(jQuery("#componentWrapper"))}calc_video_height()});jQuery(window).resize(function(){calc_video_height()})});jQuery(document).ready(function(){jQuery(".home-page .wp-pagenavi a").live("click",function(a){jQuery(".home-page .wp-pagenavi img.read-more-loader").css("display","inline");a.preventDefault();link=jQuery(this).attr("href");jQuery.get(link,function(a){jQuery(".home-page .wp-pagenavi img.read-more-loader").remove();jQuery(".home-page .wp-pagenavi").remove();var b=jQuery(a).find(".contentInner").children();jQuery.each(b,function(){jQuery("#content-wrapper #content .contentInner").append(jQuery(this))})})});jQuery(".dedication-profile .home_column_my_dedications a.read-more").live("click",function(a){a.preventDefault();link=jQuery(this).attr("href");jQuery(".dedication-profile .home_column_my_dedications a.read-more").remove();jQuery.get(link,function(a){var b=jQuery(a).find("#content").children();jQuery.each(b,function(){if(jQuery(this).hasClass("post-loop")){jQuery(this).removeClass();jQuery(this).addClass("home-my-dedications post-loop")}jQuery(".dedication-profile .home_column_my_dedications").append(jQuery(this))})})});jQuery(".dedication-profile .home_column_dedicated_2_me a.read-more").live("click",function(a){a.preventDefault();link=jQuery(this).attr("href");jQuery(".dedication-profile .home_column_dedicated_2_me a.read-more").remove();jQuery.get(link,function(a){var b=jQuery(a).find("#content").children();jQuery.each(b,function(){if(jQuery(this).hasClass("post-loop")){jQuery(this).removeClass();jQuery(this).addClass("home-dedicated-2-me post-loop")}jQuery(".dedication-profile .home_column_dedicated_2_me").append(jQuery(this))})})})});var aIndex=-1;var oUrl="";jQuery(window).ready(function(){if(jQuery("#slider-wrapper").length>0){jQuery("#content-wrapper .post-loop .post-thumbnail a").click(function(a){a.preventDefault();var b=jQuery(this).attr("href");jQuery("#playlist li [id^=postdata-link-]").each(function(a,c){var d=jQuery(this).html();if(d==b){jQuery("#componentWrapper").videoGallery.loadMedia(a);jQuery("html, body").animate({scrollTop:0},600);return false}});return false})}});jQuery(document).ready(function(){jQuery("#sidebar .sidebarposts .top_10 .posts").hide();jQuery("#sidebar .sidebarposts .top_10 h3").click(function(){jQuery("#sidebar .sidebarposts .top_10 .posts").toggle("slow",function(){})})});jQuery(document).ready(function(){jQuery("#my-friends-big-avatars div.see_more").hide();jQuery("#my-friends-big-avatars span.see_more").click(function(){jQuery("#my-friends-big-avatars span.see_more").hide();jQuery("#my-friends-big-avatars div.see_more").toggle("fast",function(){})})});jQuery(document).ready(function(){setTimeout(function(){jQuery("#content-wrapper #message.updated").toggle("slow")},3e3)})
\ No newline at end of file
+jQuery(document).ready(function(){calc_video_height();jQuery(".controls_fullscreen").css("cursor","pointer");_fullscreen=jQuery(".controls_fullscreen").children("img");_srcimg=_fullscreen.attr("src");_fullscreen.hover(function(){_fullscreen.attr("src",_srcimg.replace("fullscreen.png","fullscreen_on.png"))},function(){_fullscreen.attr("src",_srcimg.replace("fullscreen_on.png","fullscreen.png"))});_fullscreen.bind("click",function(){jQuery("#the_slider").hasClass("fullscreen_div")?(jQuery("#the_slider").removeClass("fullscreen_div"),
+jQuery(".mediaWrapper").css("width",""),jQuery(".youtubeHolder").css("width",""),jQuery(".vimeoHolder").css("width",""),_fullscreen.parent().appendTo(jQuery("#dedicationFooter_container .columns.two.last"))):(jQuery("#the_slider").addClass("fullscreen_div"),_fullscreen.attr("src",_srcimg.replace("fullscreen.png","fullscreen_exit.png")),_fullscreen.parent().appendTo(jQuery("#componentWrapper")));calc_video_height()});jQuery(window).resize(function(){calc_video_height()})});
+function calc_video_height(){jQuery("#the_slider").hasClass("fullscreen_div")?jQuery("#componentWrapper").css("height","100%").css("height","-=115px"):"500px"!=jQuery("#componentWrapper").css("height")&&jQuery("#componentWrapper").css("height","500px")}
+jQuery(document).ready(function(){jQuery(".home-page .wp-pagenavi a").live("click",function(a){jQuery(".home-page .wp-pagenavi img.read-more-loader").css("display","inline");a.preventDefault();link=jQuery(this).attr("href");jQuery.get(link,function(a){jQuery(".home-page .wp-pagenavi img.read-more-loader").remove();jQuery(".home-page .wp-pagenavi").remove();a=jQuery(a).find(".contentInner").children();jQuery.each(a,function(){jQuery("#content-wrapper #content .contentInner").append(jQuery(this))})})});
+jQuery(".dedication-profile .home_column_my_dedications a.read-more").live("click",function(a){jQuery(".dedication-profile .home_column_my_dedications img.read-more-loader").css("display","inline");a.preventDefault();link=jQuery(this).attr("href");jQuery.get(link,function(a){a=jQuery(a).find("#content").children();jQuery.each(a,function(){jQuery(this).hasClass("post-loop")&&(jQuery(this).removeClass("post type-post status-publish format-standard hentry category-dedication"),jQuery(this).addClass("home-my-dedications"));
+jQuery(".dedication-profile .home_column_my_dedications img.read-more-loader").remove();jQuery(".dedication-profile .home_column_my_dedications a.read-more").remove();jQuery(".dedication-profile .home_column_my_dedications").append(jQuery(this))})})});jQuery(".dedication-profile .home_column_dedicated_2_me a.read-more").live("click",function(a){jQuery(".dedication-profile .home_column_dedicated_2_me img.read-more-loader").css("display","inline");a.preventDefault();link=jQuery(this).attr("href");jQuery.get(link,
+function(a){a=jQuery(a).find("#content").children();jQuery.each(a,function(){jQuery(this).hasClass("post-loop")&&(jQuery(this).removeClass("post type-post status-publish format-standard hentry category-dedication"),jQuery(this).addClass("home-my-dedications"),jQuery(this).addClass("home-dedicated-2-me"));jQuery(".dedication-profile .home_column_dedicated_2_me img.read-more-loader").remove();jQuery(".dedication-profile .home_column_dedicated_2_me a.read-more").remove();jQuery(".dedication-profile .home_column_dedicated_2_me").append(jQuery(this))})})})});
+var aIndex=-1,oUrl="";
+function updateInfo(){var a=jQuery.fn.videoGallery.getMediaID(),a=jQuery(jQuery("#playlist li").get(a)).attr("id").replace("playlist-element-","");if(aIndex!=a&&0<=a){aIndex=a;""==oUrl&&(oUrl=jQuery("#dedicate_this_song_button").attr("href"));var b=jQuery("#postdata-id-"+a).text(),e=jQuery("#postdata-title-"+a).html(),c=jQuery("#postdata-from-to-"+a).html(),f=jQuery("#postdata-artist-"+a).html(),g=jQuery("#postdata-song-"+a).html(),h=jQuery("#postdata-link-"+a).html(),d=jQuery("#postdata-extlink-"+a).html(),
+b=oUrl+"id/"+b;jQuery("#dedicate_this_song_button").attr("href",b);jQuery("#fsbbtn a").attr("href","https://www.facebook.com/sharer.php?u="+d);jQuery("#twtbtn a").attr("href","http://twitter.com/intent/tweet?source=sharethiscom&url="+d);jQuery("#gpsbtn a").attr("href","https://plusone.google.com/_/+1/confirm?url="+d);jQuery("#mysbtn a").attr("href",'javascript:void(window.open("http://www.myspace.com/Modules/PostTo/Pages/?u='+d+'"+encodeURIComponent(document.location.toString()),"ptm","height=450,width=550").focus())');
+jQuery("#dedication-data-panel").hide("fast");jQuery("#dedication-data-panel").slideUp("fast",function(){jQuery("#dedication-data-panel").html(c);jQuery("#dedicationTitle-data-panel").html(c)});jQuery("#dedication-data-panel").slideDown();jQuery("#dedicationFooter_container").slideUp("fast",function(){jQuery("#dedicationArtits").html(f);jQuery("#dedicationSong").html(g)});jQuery("#dedicationFooter_container").slideDown("fast",function(){});jQuery("#dedicationTitle").html(e);shrinkTitle();jQuery("#dedicationTitle a").jTypeWriter();
+jQuery("#dedicationComments_container").slideUp("fast",function(){jQuery("#dedicationComments_container").load(h+" #comments","",function(){init_comments();jQuery("#dedicationComments_container").on("submit","#commentform",function(){prepare_new_comment_home();return!1})})});jQuery("#dedicationComments_container").slideDown();0
b.offsetWidth;)size=parseInt(a.style.fontSize.replace("px","")),size-=1,a.style.fontSize=size+"px";a.style.fontSize-=NaN}
+jQuery(window).ready(function(){jQuery("#content-wrapper .post-loop .post-thumbnail a").live("click",function(a){a.preventDefault();a=jQuery(this).parent().parent();a=jQuery(a).attr("class").split(" ");jQuery(a).each(function(a,e){var c=e.replace("post-","");if(jQuery.isNumeric(c))return loadVideo(c),jQuery("html, body").animate({scrollTop:0},600),!1});return!1})});
+jQuery(document).ready(function(){jQuery("#sidebar .sidebarposts .top_10 .posts").hide();jQuery("#sidebar .sidebarposts .top_10 h3").click(function(){jQuery("#sidebar .sidebarposts .top_10 .posts").toggle("slow",function(){})})});jQuery(document).ready(function(){jQuery("#my-friends-big-avatars div.see_more").hide();jQuery("#my-friends-big-avatars span.see_more").click(function(){jQuery("#my-friends-big-avatars span.see_more").hide();jQuery("#my-friends-big-avatars div.see_more").toggle("fast",function(){})})});
+jQuery(document).ready(function(){setTimeout(function(){jQuery("#content-wrapper #message.updated").toggle("slow")},3E3)});
\ No newline at end of file
diff --git a/wp-content/themes/score/lib/scripts/custom-ajax.js b/wp-content/themes/score/lib/scripts/custom-ajax.js
new file mode 100644
index 0000000..e6dfde4
--- /dev/null
+++ b/wp-content/themes/score/lib/scripts/custom-ajax.js
@@ -0,0 +1,42 @@
+jQuery(window).ready(function() {
+
+ jQuery('.controls_prev').bind('click', function(){
+ jQuery.fn.videoGallery.previousMedia();
+ return false;
+ });
+ jQuery('.controls_next').bind('click', function(){
+ if (jQuery.fn.videoGallery.isLastMedia()) {
+ loadVideo(0);
+ } else {
+ jQuery.fn.videoGallery.nextMedia();
+ }
+ return false;
+ });
+
+ return false;
+});
+
+function loadVideo(videoid) {
+ jQuery.ajax({
+ type:'POST',
+ data:{
+ postCommentNonce : MyAjax.postCommentNonce,
+ action:'gp_video_data',
+ id: videoid
+ },
+ url: ajaxurl,
+ success: function(value) {
+ jQuery('#playlist').append(value);
+ jQuery.fn.videoGallery.inputPlaylist('playlist');
+ }
+ });
+ return false;
+}
+
+function activePlaylist(playlist) {
+ jQuery.fn.videoGallery.destroyMedia();
+ jQuery.fn.videoGallery.inputPlaylist(playlist);
+ return false;
+}
+
+
diff --git a/wp-content/themes/score/lib/scripts/custom-ajax.min.js b/wp-content/themes/score/lib/scripts/custom-ajax.min.js
new file mode 100644
index 0000000..b3cab96
--- /dev/null
+++ b/wp-content/themes/score/lib/scripts/custom-ajax.min.js
@@ -0,0 +1 @@
+jQuery(window).ready(function(){jQuery(".controls_prev").bind("click",function(){jQuery.fn.videoGallery.previousMedia();return!1});jQuery(".controls_next").bind("click",function(){jQuery.fn.videoGallery.isLastMedia()?loadVideo(0):jQuery.fn.videoGallery.nextMedia();return!1});return!1}); function loadVideo(a){jQuery.ajax({type:"POST",data:{postCommentNonce:MyAjax.postCommentNonce,action:"gp_video_data",id:a},url:ajaxurl,success:function(a){jQuery("#playlist").append(a);jQuery.fn.videoGallery.inputPlaylist("playlist")}});return!1}function activePlaylist(a){jQuery.fn.videoGallery.destroyMedia();jQuery.fn.videoGallery.inputPlaylist(a);return!1};
\ No newline at end of file
diff --git a/wp-content/themes/score/lib/scripts/custom.php b/wp-content/themes/score/lib/scripts/custom.php
index d1afa2e..886b946 100644
--- a/wp-content/themes/score/lib/scripts/custom.php
+++ b/wp-content/themes/score/lib/scripts/custom.php
@@ -1,50 +1,53 @@
\ No newline at end of file
diff --git a/wp-content/themes/score/lib/scripts/jquery.fittext.js b/wp-content/themes/score/lib/scripts/jquery.fittext.js
index 482a2ec..4e992e9 100644
--- a/wp-content/themes/score/lib/scripts/jquery.fittext.js
+++ b/wp-content/themes/score/lib/scripts/jquery.fittext.js
@@ -28,7 +28,7 @@
// Resizer() resizes items based on the object width divided by the compressor * 10
var resizer = function () {
$this.css('font-size', Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
- console.log(Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
+ //console.log(Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
};
// Call once to set.
diff --git a/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.js b/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.js
index c6297ab..4510e32 100644
--- a/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.js
+++ b/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.js
@@ -1,13 +1,7 @@
(function($) {
-
-
-
function VideoGallery(element, options) {
-
var self=this;
-
this.settings = $.extend({}, $.fn.videoGallery.defaults, options);
-
this.isMobile = jQuery.browser.mobile;
//console.log(this.isMobile);
@@ -331,6 +325,10 @@
VideoGallery.prototype = {
// PUBLIC
+ isLastMedia:function() {
+ return this._playlistManager.getLastInOrder();
+ },
+
getMediaID:function() {
if(!this._componentInited || this._playlistTransitionOn) return;
if(this._playlistManager.getCounter() == -1){
@@ -404,6 +402,10 @@
inputPlaylist:function(id) {
if(!this._componentInited || this._playlistTransitionOn) return;
this._activePlaylist=id;
+ this.refreshPlaylist(); //this._setPlaylist();
+ },
+ refreshPlaylist:function() {
+ if(!this._componentInited || this._playlistTransitionOn) return;
this._setPlaylist();
},
@@ -698,15 +700,15 @@
}
},
_processYotubeSingleSuccess:function (response) {
- //console.log(response);
- /*
+ /*console.log(response);
+
console.log(response.data);
console.log(response.data.title);
console.log(response.data.description);
console.log(response.data.id);
console.log(response.data.thumbnail.sqDefault);
- console.log(response.data.thumbnail.hqDefault);
- */
+ console.log(response.data.thumbnail.hqDefault);*/
+
var obj = {}, _item;
_item = response.data;
@@ -1399,12 +1401,16 @@
if(self._autoAdvanceToNextVideo){
self._mediaAdvance();
}else{
- if(self.autoPlay) self._vimeoPlayer.api('play');
+ if(self.autoPlay) {
+ self._vimeoPlayer.api('play');
+ }
}
});
this._vimeoInited=true;
+ this.settings.videoGalleryPlayMedia.call(this);
}else{
this._vimeoPlayer.initVideo(this._mediaPath);
+ this.settings.videoGalleryPlayMedia.call(this);
}
},
@@ -1423,14 +1429,16 @@
self._mediaAdvance();
}else{
if(self.autoPlay){
- self._youtubePlayer.play();
+ self._youtubePlayer.play();
}
}
});
+ this.settings.videoGalleryPlayMedia.call(this);
this._youtubeInited=true;
}else{
this.youtubeHolder.css('left', 0+'px');
this._youtubePlayer.initVideo(this._mediaPath);
+ this.settings.videoGalleryPlayMedia.call(this);
}
},
@@ -1625,6 +1633,13 @@
$.fn.videoGallery.inputPlaylist = function(id) {
videoGallery.inputPlaylist(id);
}
+ $.fn.videoGallery.refreshPlayList = function() {
+ videoGallery.refreshPlaylist();
+ }
+ $.fn.videoGallery.isLastMedia = function() {
+ return videoGallery.isLastMedia();
+ }
+
});
};
@@ -1695,6 +1710,7 @@
iconThumbBackwardOn: 'data/icons/thumb_backward_on.png',
iconThumbBackwardVOn: 'data/icons/thumb_backward_v_on.png',
+ videoGalleryPlayMedia: function(){},
videoGallerySetupDone: function(){}, //Callback, triggers when component is ready to receive public function calls
videoGalleryPlaylistEnd: function(){} // Callback, triggers when playlist comes to an end (looping or not)
//http://stackoverflow.com/questions/2534436/jquery-plugin-adding-callback-functionality
diff --git a/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.min.js b/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.min.js
index 4e9d1fc..c9c385a 100644
--- a/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.min.js
+++ b/wp-content/themes/score/lib/scripts/videoslider/js/jquery.videoGallery.min.js
@@ -1 +1,81 @@
-(function(b){function a(e,d){var c=this;this.settings=b.extend({},b.fn.videoGallery.defaults,d);this.isMobile=jQuery.browser.mobile;this._componentInited=false;this._body=b("body");this._window=b(window);this._doc=b(document);this._windowResizeInterval=100;this._windowResizeIntervalID;this._mediaPath;this._mediaType;this._vimeoPlayer;this._vimeoInited=false;this._youtubeInited=false;this._youtubeFrameId="ytplayer";this._thumbSizeSet=false;this._finalThumbHeight;this._thumbInnerContainerSize;this._thumbScrollIntervalID;this._thumbArr=[];this._thumbHolderArr=[];this._thumbInnerContainerStartBuffer;this._videoProcessCounter=0;this._videoProcessData=[];this._videoProcessDataUrl=[];this._playlistQueryCounter=0;this._playlistQueryUrl=[];this._shareOpened=false;this._playlistLength;this._playlistOpened=false;this._playlistTransitionOn=true;this._descriptionDataArr=[];this._iconLoader=this.settings.iconLoader;this._iconClose=this.settings.iconClose;this._iconCloseOn=this.settings.iconCloseOn;this._iconOpen=this.settings.iconOpen;this._iconOpenOn=this.settings.iconOpenOn;this._iconBackwardOn=this.settings.iconBackwardOn;this._iconBackward=this.settings.iconBackward;this._iconForwardOn=this.settings.iconForwardOn;this._iconForward=this.settings.iconForward;this._iconShare=this.settings.iconShare;this._iconShareOn=this.settings.iconShareOn;this._iconThumbForward=this.settings.iconThumbForward;this._iconThumbForwardV=this.settings.iconThumbForwardV;this._iconThumbForwardOn=this.settings.iconThumbForwardOn;this._iconThumbForwardVOn=this.settings.iconThumbForwardVOn;this._iconThumbBackward=this.settings.iconThumbBackward;this._iconThumbBackwardV=this.settings.iconThumbBackwardV;this._iconThumbBackwardOn=this.settings.iconThumbBackwardOn;this._iconThumbBackwardVOn=this.settings.iconThumbBackwardVOn;this._componentFixedSize=this.settings.componentFixedSize;this._animateVideoSizeOnPlaylistClose=this.settings.animateVideoSizeOnPlaylistClose;this.autoPlay=this.settings.autoPlay;this._autoAdvanceToNextVideo=this.settings.autoAdvanceToNextVideo;this._youtubeChromeless=this.settings.youtubeChromeless;this.thumbBackgroundColor=this.settings.thumbBackgroundColor;this.randomPlay=this.settings.randomPlay;this.loopingOn=this.settings.loopingOn;this._activePlaylist=this.settings.activePlaylist;this.defaultVolume=this.settings.defaultVolume;if(this.defaultVolume<0){this.defaultVolume=0}else{if(this.defaultVolume>1){this.defaultVolume=1}}this._thumbOrientation=this.settings.thumbOrientation;this._playlistOutside=this.settings.playlistOutside.value;this._thumbsScrollValue=Math.abs(this.settings.thumbsScrollValue);this._thumbSpacing=this.settings.thumbSpacing;this._closePlaylistOnVideoSelect=this.settings.closePlaylistOnVideoSelect;this._autoOpenPlaylist=this.settings.autoOpenPlaylist;this._thumbWidth=this.settings.thumbWidth;this._thumbHeight=this.settings.thumbHeight;this.componentWrapper=b(e);this._componentWidth=parseInt(this.componentWrapper.css("width"),10);this._componentHeight=parseInt(this.componentWrapper.css("height"),10);this.componentPlaylist=this.componentWrapper.find(".componentPlaylist");this.mediaPreloader=this.componentWrapper.find(".mediaPreloader");this.mediaPreloader.css("display","block");this.mediaWrapper=this.componentWrapper.find(".mediaWrapper");this.youtubeHolder=this.componentWrapper.find(".youtubeHolder");this.vimeoHolder=this.componentWrapper.find(".vimeoHolder");this.thumbHolder=this.componentWrapper.find(".thumbHolder");this.thumbHolder.css("zIndex",99);this.thumbHolder.bind("mousewheel",function(i,l,h,g){if(!c._componentInited||c._playlistTransitionOn){return}var k=l>0?1:-1,j;if(c._thumbOrientation=="horizontal"){if(c._thumbInnerContainerSizec._thumbSpacing){j=c._thumbSpacing}else{if(jc._thumbSpacing){j=c._thumbSpacing}else{if(jthis._playlistLength-1){d=this._playlistLength-1}else{if(d<0){d=0}}}else{if(this._playlistManager.getCounter()==-1){alert("No active Item for description, counter = -1");return}d=this._playlistManager.getCounter()}return this._descriptionDataArr[d]?this._descriptionDataArr[d]:null},playMedia:function(){if(!this._componentInited||this._playlistTransitionOn||!this._mediaType){return}if(this._mediaType=="vimeo"){if(this._vimeoPlayer){this._vimeoPlayer.play()}}else{if(this._mediaType=="youtube"){if(this._youtubePlayer){this._youtubePlayer.play()}}}},pauseMedia:function(){if(!this._componentInited||this._playlistTransitionOn||!this._mediaType){return}if(this._mediaType=="vimeo"){if(this._vimeoPlayer){this._vimeoPlayer.pause()}}else{if(this._mediaType=="youtube"){if(this._youtubePlayer){this._youtubePlayer.pause()}}}},nextMedia:function(){if(!this._componentInited||this._playlistTransitionOn){return}this._enableActiveItem();this._playlistManager.advanceHandler(1,true)},previousMedia:function(){if(!this._componentInited||this._playlistTransitionOn){return}this._enableActiveItem();this._playlistManager.advanceHandler(-1,true)},loadMedia:function(c){if(!this._componentInited||this._playlistTransitionOn){return}if(c<0){c=0}else{if(c>this._playlistLength-1){c=this._playlistLength-1}}this._enableActiveItem();this._playlistManager.processPlaylistRequest(c)},destroyMedia:function(){if(!this._componentInited||!this._mediaType){return}this._cleanMedia()},togglePlaylistState:function(){if(!this._componentInited||this._playlistTransitionOn){return}this._togglePlaylist()},setVolume:function(c){if(!this._componentInited||this._playlistTransitionOn||!this._mediaType){return}if(c<0){c=0}else{if(c>1){c=1}}this._setVolume(c)},inputPlaylist:function(c){if(!this._componentInited||this._playlistTransitionOn){return}this._activePlaylist=c;this._setPlaylist()},_processJson:function(){var c=this._videoProcessDataUrl[this._videoProcessCounter].type;if(RegExp("youtube").test(c)){this._processYoutube()}else{this._processVimeo()}},_getPlaylist:function(){var c=this;this._videoProcessCounter=0;this._videoProcessData=[];this._videoProcessDataUrl=[];this._descriptionDataArr=[];var e,d;var f=b(this.componentPlaylist.find("ul[id="+this._activePlaylist+"]"));this._playlistLength=f.children("li").size();f.children("li").each(function(){d=b(this);e={};e.type=d.attr("data-type");e.path=d.attr("data-path");if(e.type=="youtube_playlist"){}c._videoProcessDataUrl.push(e)});this._processJson()},_processYoutube:function(){var c=this;var e=this._videoProcessDataUrl[this._videoProcessCounter].type;var d=this._videoProcessDataUrl[this._videoProcessCounter].path;if(e=="youtube_single"){this._processYoutubeSingle(d);return}else{if(e=="youtube_playlist"){}else{if(e=="youtube_user_favourites"){}else{if(e=="youtube_user_uploads"){}else{if(e=="youtube_video_query"){}else{if(e=="youtube_playlist_query"){}else{if(e=="youtube_standard_feed"){}else{if(e=="youtube_user_videos"){}else{if(e=="youtube_channel_query"){}else{alert("Invalid data-type in playlist!");return}}}}}}}}}jQuery.ajax({url:d,dataType:"jsonp",success:function(f){c._processYotubeSuccess(f)},error:function(f){c._processYotubeError(f)}})},_processYoutubeSingle:function(d){var c=this;jQuery.ajax({url:d,dataType:"jsonp",success:function(e){c._processYotubeSingleSuccess(e)},error:function(e){c._processYotubeError(e)}})},_processYoutubePlaylistQuery:function(){var c=this;var d=this._playlistQueryUrl[this._playlistQueryCounter];jQuery.ajax({url:d,dataType:"jsonp",success:function(e){c._processYoutubePlaylistQuerySuccess(e)},error:function(e){c._processYotubeError(e)}})},_processYoutubePlaylistQuerySuccess:function(d){if(d.error){alert(d.error.message);return}var c=d.data.items.length,f=0,g,e;for(f;fthis._playlistLength-1){this._buildPlaylist()}else{this._processYoutubePlaylistQuery()}},_processYotubeSuccess:function(d){if(d.error){alert(d.error.message);return}var c=d.data.items.length,g=0,h=this._videoProcessDataUrl[this._videoProcessCounter].type,j,f;if(h=="youtube_playlist_query"){this._playlistQueryCounter=0;this._playlistQueryUrl=[];var e;this._playlistLength=c;for(g;gthis._playlistLength-1){this._buildPlaylist()}else{this._processJson()}},_processYotubeSingleSuccess:function(c){var e={},d;d=c.data;e.type="youtube";e.id=d.id;e.title=d.title;e.description=d.description;e.thumbnail=d.thumbnail.hqDefault?d.thumbnail.hqDefault:d.thumbnail.sqDefault;this._videoProcessData.push(e);this._videoProcessCounter++;if(this._videoProcessCounter>this._playlistLength-1){this._buildPlaylist()}else{this._processJson()}},_processYotubeError:function(c){},_processVimeo:function(){var c=this;var e=this._videoProcessDataUrl[this._videoProcessCounter].type;var d=this._videoProcessDataUrl[this._videoProcessCounter].path;if(e=="vimeo_single"){this._processVimeoSingle(d);return}else{if(e=="vimeo_user"){}else{if(e=="vimeo_group"){}else{if(e=="vimeo_channel"){}else{if(e=="vimeo_album"){}else{alert("Invalid data-type in playlist!");return}}}}}jQuery.ajax({url:d,dataType:"jsonp",success:function(f){c._processVimeoSuccess(f)},error:function(f){c._processVimeoError(f)}})},_processVimeoSingle:function(d){var c=this;jQuery.ajax({url:d,dataType:"jsonp",success:function(e){c._processVimeoSingleSuccess(e)},error:function(e){c._processVimeoError(e)}})},_processVimeoSuccess:function(e){var c=e.length,d=0,f;for(d;dthis._playlistLength-1){this._buildPlaylist()}else{this._processJson()}},_processVimeoSingleSuccess:function(c){var d={};d.type="vimeo";d.id=c[0].id;d.title=c[0].title;d.description=c[0].description;d.thumbnail=c[0].thumbnail_medium;this._videoProcessData.push(d);this._videoProcessCounter++;if(this._videoProcessCounter>this._playlistLength-1){this._buildPlaylist()}else{this._processJson()}},_processVimeoError:function(c){},_getThumbSize:function(e){var d=this;var c=b(new Image());c.load(function(){var f=this.width/this.height;d._finalThumbHeight=d._thumbWidth/f;d._buildPlaylist()}).attr("src",e)},_buildPlaylist:function(){if(!this._thumbSizeSet){this._thumbSizeSet=true;var f=this._videoProcessData[0].thumbnail;this._getThumbSize(f);return}var n=this;this.mediaPreloader.css("display","none");this._thumbInnerContainerSize=0;this._playlistOpened=false;this._playlistLength=this._videoProcessData.length;var j=0,d,e,f,h,m,l,g;for(j;j");this._thumbHolderArr[j]=e;e.attr("data-id",j);e.attr("data-type",m.type);e.attr("data-path",m.id);e.bind("click",function(i){if(!n._componentInited||n._playlistTransitionOn){return}if(!i){var i=n._window.event}if(i.cancelBubble){i.cancelBubble=true}else{if(i.stopPropagation){i.stopPropagation()}}var c=b(i.currentTarget);var o=c.attr("data-id");if(o==n._playlistManager.getCounter()){return}n._enableActiveItem();n._playlistManager.processPlaylistRequest(o);if(n._closePlaylistOnVideoSelect){n._togglePlaylist()}return false});e.bind("mouseover",function(p){if(!n._componentInited||n._playlistTransitionOn){return}if(!p){var p=n._window.event}if(p.cancelBubble){p.cancelBubble=true}else{if(p.stopPropagation){p.stopPropagation()}}var o=b(p.currentTarget);var q=o.attr("data-id");var i=o.find("div[data-title='titleDiv']");if(i){var c=o.height()-i.height()-parseInt(i.css("paddingBottom"),10)-parseInt(i.css("paddingTop"),10);i.stop().animate({top:c+"px"},{duration:300,easing:"easeOutQuart"})}return false});e.bind("mouseout",function(o){if(!n._componentInited||n._playlistTransitionOn){return}if(!o){var o=n._window.event}if(o.cancelBubble){o.cancelBubble=true}else{if(o.stopPropagation){o.stopPropagation()}}var i=b(o.currentTarget);var p=i.attr("data-id");if(p==n._playlistManager.getCounter()){return}var c=i.find("div[data-title='titleDiv']");if(c){c.stop().animate({top:i.height()+"px"},{duration:300,easing:"easeOutQuart"})}return false});if(this._thumbOrientation=="horizontal"){e.css({position:"relative",width:this._thumbWidth+"px",height:this._finalThumbHeight+"px",top:0+"px",left:0+"px","float":"left",marginRight:this._thumbSpacing+"px",cursor:"pointer",opacity:0,overflow:"hidden",backgroundColor:this.thumbBackgroundColor,backgroundImage:'url("'+this._iconLoader+'")',backgroundRepeat:"no-repeat",backgroundPosition:"center center"})}else{e.css({position:"relative",width:this._thumbWidth+"px",height:this._finalThumbHeight+"px",top:0+"px",left:0+"px",clear:"both",marginBottom:this._thumbSpacing+"px",cursor:"pointer",opacity:0,overflow:"hidden",backgroundColor:this.thumbBackgroundColor,backgroundImage:'url("'+this._iconLoader+'")',backgroundRepeat:"no-repeat",backgroundPosition:"center center"})}h=b("");e.titleDiv=h;h.attr("data-title","titleDiv");h.css({left:0+"px",top:this._finalThumbHeight+"px"});h.html(m.title);h.addClass("thumb_title");d=b(new Image());d.attr("alt",m.title);d.attr("id",j);d.css({top:0+"px",left:0+"px",display:"block",width:this._thumbWidth+"px",height:this._finalThumbHeight+"px"}).load(function(){g=b(this).attr("id");n._thumbHolderArr[g].css("backgroundImage","")}).attr("src",f);e.append(d);e.append(h);this.thumbInnerContainer.append(e);e.stop().animate({opacity:1},{duration:500,easing:"easeOutSine"});if(this._thumbOrientation=="horizontal"){this._thumbInnerContainerSize+=this._thumbWidth+this._thumbSpacing}else{this._thumbInnerContainerSize+=this._finalThumbHeight+this._thumbSpacing}}this.thumbInnerContainer.css("width",this._thumbInnerContainerSize+"px");this._checkThumbPosition();this._playlistTransitionOn=false;this._playlistLength=this._thumbHolderArr.length;this._playlistManager.setPlaylistItems(this._playlistLength);var k=this.settings.activeVideo;if(k>this._playlistLength-1){k=this._playlistLength-1}else{if(k<-1){k=-1}}if(k>-1){this._playlistManager.setCounter(k,false)}if(this._autoOpenPlaylist){this._togglePlaylist()}else{this._playlistOpened=true;this._togglePlaylist()}if(!this._componentInited){this._componentInited=true;this.slideshow_controls.css("opacity",0);this.slideshow_controls.css("display","block");this.slideshow_controls.stop().animate({opacity:1},{duration:500,easing:"easeOutSine"});this.settings.videoGallerySetupDone.call(this)}},_checkThumbPosition:function(){if(this._thumbOrientation=="horizontal"){if(this._thumbInnerContainerSize>this._getComponentSize("w")-this._thumbBackwardSize-this._thumbForwardSize){this.thumbBackward.css("display","block");this.thumbForward.css("display","block");var c=parseInt(this.thumbInnerContainer.css("left"),10);if(cthis._thumbSpacing){c=this._thumbSpacing}}this.thumbInnerContainer.css("left",c+"px")}else{this.thumbBackward.css("display","none");this.thumbForward.css("display","none");this.thumbInnerContainer.css("left",this._getComponentSize("w")/2-this._thumbInnerContainerSize/2-this._thumbBackwardSize+"px")}}else{if(this._thumbInnerContainerSize>this._getComponentSize("h")-this._thumbBackwardSize-this._thumbForwardSize){this.thumbBackward.css("display","block");this.thumbForward.css("display","block");var c=parseInt(this.thumbInnerContainer.css("top"),10);if(cthis._thumbSpacing){c=this._thumbSpacing}}this.thumbInnerContainer.css("top",c+"px")}else{this.thumbBackward.css("display","none");this.thumbForward.css("display","none");this.thumbInnerContainer.css("top",this._getComponentSize("h")/2-this._thumbInnerContainerSize/2-this._thumbBackwardSize+"px")}}},_overPlaylistItem:function(g){if(!this._componentInited||this._playlistTransitionOn){return}if(!g){var g=this._window.event}if(g.cancelBubble){g.cancelBubble=true}else{if(g.stopPropagation){g.stopPropagation()}}var f=b(g.currentTarget);var h=f.attr("data-id");var d=f.find("div[data-title='titleDiv']");if(d){var c=f.height()-d.height()-parseInt(d.css("paddingBottom"),10)-parseInt(d.css("paddingTop"),10);d.stop().animate({top:c+"px"},{duration:300,easing:"easeOutQuart"})}return false},_outPlaylistItem:function(f){if(!this._componentInited||this._playlistTransitionOn){return}if(!f){var f=this._window.event}if(f.cancelBubble){f.cancelBubble=true}else{if(f.stopPropagation){f.stopPropagation()}}var d=b(f.currentTarget);var g=d.attr("data-id");if(g==this._playlistManager.getCounter()){return}var c=d.find("div[data-title='titleDiv']");if(c){c.stop().animate({top:d.height()+"px"},{duration:300,easing:"easeOutQuart"})}return false},_clickPlaylistItem:function(d){if(!this._componentInited||this._playlistTransitionOn){return}if(!d){var d=this._window.event}if(d.cancelBubble){d.cancelBubble=true}else{if(d.stopPropagation){d.stopPropagation()}}var c=b(d.currentTarget);var f=c.attr("data-id");if(f==this._playlistManager.getCounter()){return}this._enableActiveItem();this._playlistManager.processPlaylistRequest(f);if(this._closePlaylistOnVideoSelect){this._togglePlaylist()}return false},_enableActiveItem:function(){if(this._playlistManager.getCounter()!=-1){var c=b(this._thumbHolderArr[this._playlistManager.getCounter()]);c.css("cursor","pointer");var d=c.find("div[data-title='titleDiv']");if(d){d.stop().animate({top:c.height()+"px"},{duration:500,easing:"easeOutQuart"})}}},_disableActiveItem:function(){var c=b(this._thumbHolderArr[this._playlistManager.getCounter()]);c.css("cursor","default");var e=c.find("div[data-title='titleDiv']");var d=c.height()-e.height()-parseInt(e.css("paddingBottom"),10)-parseInt(e.css("paddingTop"),10);if(e){e.stop().animate({top:d+"px"},{duration:500,easing:"easeOutQuart"})}},_clickControls:function(g){if(!this._componentInited){return}if(!g){var g=this._window.event}if(g.cancelBubble){g.cancelBubble=true}else{if(g.stopPropagation){g.stopPropagation()}}var f=b(g.currentTarget);var h=f.attr("class");var d=f.find("img");if(h=="this.controls_prev"){if(this._playlistTransitionOn){return}this._enableActiveItem();this._playlistManager.advanceHandler(-1,true)}else{if(h=="controls_playlist_toggle"){if(this._playlistTransitionOn){return}this._togglePlaylist(true)}else{if(h=="this.controls_next"){if(this._playlistTransitionOn){return}this._enableActiveItem();this._playlistManager.advanceHandler(1,true)}else{if(h=="this.player_share"){this._toggleShare()}}}}return false},_overControls:function(g){if(!this._componentInited){return}if(!g){var g=this._window.event}if(g.cancelBubble){g.cancelBubble=true}else{if(g.stopPropagation){g.stopPropagation()}}var f=b(g.currentTarget);var h=f.attr("class");var d=f.find("img");if(h=="this.controls_prev"){this._controlsPrevSrc.attr("src",$this._iconBackwardOn)}else{if(h=="controls_playlist_toggle"){if(this._playlistOpened){this._controlsToggleSrc.attr("src",this._iconCloseOn)}else{this._controlsToggleSrc.attr("src",this._iconOpenOn)}}else{if(h=="this.controls_next"){this._controlsNextSrc.attr("src",$this._iconForwardOn)}else{if(h=="this.thumbBackward"){this._thumbBackwardSrc.attr("src",this._thumbOrientation=="horizontal"?$this._iconThumbBackwardOn:$this._iconThumbBackwardVOn)}else{if(h=="this.thumbForward"){this._thumbForwardSrc.attr("src",this._thumbOrientation=="horizontal"?$this._iconThumbForwardOn:$this._iconThumbForwardVOn)}else{if(h=="this.player_share"){d.attr("src",$this._iconShareOn)}}}}}}return false},_outControls:function(g){if(!this._componentInited){return}if(!g){var g=this._window.event}if(g.cancelBubble){g.cancelBubble=true}else{if(g.stopPropagation){g.stopPropagation()}}var f=b(g.currentTarget);var h=f.attr("class");var d=f.find("img");if(h=="this.controls_prev"){this._controlsPrevSrc.attr("src",$this._iconBackward)}else{if(h=="controls_playlist_toggle"){if(this._playlistOpened){this._controlsToggleSrc.attr("src",this._iconClose)}else{this._controlsToggleSrc.attr("src",this._iconOpen)}}else{if(h=="this.controls_next"){this._controlsNextSrc.attr("src",$this._iconForward)}else{if(h=="this.thumbBackward"){this._thumbBackwardSrc.attr("src",this._thumbOrientation=="horizontal"?$this._iconThumbBackward:$this._iconThumbBackwardV)}else{if(h=="this.thumbForward"){this._thumbForwardSrc.attr("src",this._thumbOrientation=="horizontal"?$this._iconThumbForward:$this._iconThumbForwardV)}else{if(h=="this.player_share"){d.attr("src",$this._iconShare)}}}}}}return false},_toggleThumbBg:function(c){var d;if(this._thumbOrientation=="horizontal"){d=this._thumbInnerContainerStartBuffer+this._finalThumbHeight+this._thumbInnerContainerStartBuffer;if(c){this.thumbHolder.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"});this.thumbBackward.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"});this.thumbForward.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"})}else{this.thumbHolder.stop().animate({height:0+"px"},{duration:500,easing:"easeOutQuart"});this.thumbBackward.stop().animate({height:0+"px"},{duration:500,easing:"easeOutQuart"});this.thumbForward.stop().animate({height:0+"px"},{duration:500,easing:"easeOutQuart"})}}else{d=this._thumbInnerContainerStartBuffer+this._thumbWidth+this._thumbInnerContainerStartBuffer;if(c){this.thumbHolder.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"});this.thumbBackward.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"});this.thumbForward.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"})}else{this.thumbHolder.stop().animate({width:0+"px"},{duration:500,easing:"easeOutQuart"});this.thumbBackward.stop().animate({width:0+"px"},{duration:500,easing:"easeOutQuart"});this.thumbForward.stop().animate({width:0+"px"},{duration:500,easing:"easeOutQuart"})}}},_togglePlaylist:function(c){if(this._playlistOpened){this._toggleThumbBg();this._playlistOpened=false;if(c){this._controlsToggleSrc.attr("src",this._iconOpenOn)}else{this._controlsToggleSrc.attr("src",this._iconOpen)}if(this._animateVideoSizeOnPlaylistClose){if(this._thumbOrientation=="horizontal"){this.mediaWrapper.stop().animate({height:this._getComponentSize("h")+"px"},{duration:500,easing:"easeOutQuart"});this.youtubeHolder.stop().animate({height:this._getComponentSize("h")+"px"},{duration:500,easing:"easeOutQuart"});this.vimeoHolder.stop().animate({height:this._getComponentSize("h")+"px"},{duration:500,easing:"easeOutQuart"})}else{this.mediaWrapper.stop().animate({width:this._getComponentSize("w")+"px"},{duration:500,easing:"easeOutQuart"});this.youtubeHolder.stop().animate({width:this._getComponentSize("w")+"px"},{duration:500,easing:"easeOutQuart"});this.vimeoHolder.stop().animate({width:this._getComponentSize("w")+"px"},{duration:500,easing:"easeOutQuart"})}}}else{this._toggleThumbBg(true);this._playlistOpened=true;if(c){this._controlsToggleSrc.attr("src",this._iconCloseOn)}else{this._controlsToggleSrc.attr("src",this._iconClose)}if(this._animateVideoSizeOnPlaylistClose){var d;if(this._thumbOrientation=="horizontal"){if(this._playlistOutside){d=this._getComponentSize("h")-this.settings.playlistOutside.playlistSize}else{d=this._getComponentSize("h")-this._finalThumbHeight-2*parseInt(this.thumbInnerContainer.css("top"),10)}this.mediaWrapper.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"});this.youtubeHolder.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"});this.vimeoHolder.stop().animate({height:d+"px"},{duration:500,easing:"easeOutQuart"})}else{if(this._playlistOutside){d=this._getComponentSize("w")-this.settings.playlistOutside.playlistSize}else{d=this._getComponentSize("w")-this._thumbWidth-2*parseInt(this.thumbInnerContainer.css("left"),10)}this.mediaWrapper.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"});this.youtubeHolder.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"});this.vimeoHolder.stop().animate({width:d+"px"},{duration:500,easing:"easeOutQuart"})}}}},_cleanPlaylist:function(){this.thumbBackward.css("display","none");this.thumbForward.css("display","none");this._cleanMedia();this.thumbInnerContainer.empty();this._thumbHolderArr=[];if(this._thumbOrientation=="horizontal"){this.thumbInnerContainer.css("left",this._thumbSpacing+"px")}else{this.thumbInnerContainer.css("top",this._thumbSpacing+"px")}},_setPlaylist:function(){this._playlistTransitionOn=true;this.mediaPreloader.css("display","block");this._cleanPlaylist();this._getPlaylist()},_mediaAdvance:function(){this._enableActiveItem();this._playlistManager.advanceHandler(1,true)},_findMedia:function(){this._cleanMedia();var c=this._thumbHolderArr[this._playlistManager.getCounter()];this._mediaPath=c.attr("data-path");this._mediaType=c.attr("data-type");if(this._mediaType=="vimeo"){this._initVimeo()}else{if(this._mediaType=="youtube"){this._initYoutube()}else{alert("Error in this._findMedia!")}}},_cleanMedia:function(){if(this._mediaType=="vimeo"){if(this._vimeoPlayer){this._vimeoPlayer.clean()}}else{if(this._mediaType=="youtube"){if(this._youtubePlayer){this._youtubePlayer.stop()}this.youtubeHolder.css("left",-this._getComponentSize("w")-5+"px")}}},_setVolume:function(c){if(this._mediaType=="vimeo"){if(this._vimeoPlayer){this._vimeoPlayer.setVolume(c)}}else{if(this._mediaType=="youtube"){if(this._youtubePlayer){this._youtubePlayer.setVolume(c)}}}},_initVimeo:function(){var c=this;if(!this._vimeoInited){var d={autoPlay:this.autoPlay,defaultVolume:this.defaultVolume,mediaPath:this._mediaPath,vimeoHolder:this.vimeoHolder};this._vimeoPlayer=b.vimeoPlayer(d);b(this._vimeoPlayer).bind("ap_VimeoPlayer.END_PLAY",function(){if(c._autoAdvanceToNextVideo){c._mediaAdvance()}else{if(c.autoPlay){c._vimeoPlayer.api("play")}}});this._vimeoInited=true}else{this._vimeoPlayer.initVideo(this._mediaPath)}},_initYoutube:function(){if(!this._youtubeInited){var c=this;var d={frameId:this._youtubeFrameId,autoPlay:this.autoPlay,defaultVolume:this.defaultVolume,mediaPath:this._mediaPath,youtubeHolder:this.youtubeHolder,youtubeChromeless:this._youtubeChromeless};this._youtubePlayer=b.youtubePlayer(d);b(this._youtubePlayer).bind("ap_YoutubePlayer.START_PLAY",function(){c.youtubeHolder.css("left",0+"px")});b(this._youtubePlayer).bind("ap_YoutubePlayer.END_PLAY",function(){if(c._autoAdvanceToNextVideo){c._mediaAdvance()}else{if(c.autoPlay){c._youtubePlayer.play()}}});this._youtubeInited=true}else{this.youtubeHolder.css("left",0+"px");this._youtubePlayer.initVideo(this._mediaPath)}},_toggleShare:function(){if(!this._shareOpened){this.shareHolder.css("display","block");this._shareOpened=true}else{this.shareHolder.css("display","none");this._shareOpened=false}},_getComponentSize:function(c){if(c=="w"){return this.componentWrapper.width()}else{return this.componentWrapper.height()}},_getDocumentWidth:function(){return Math.max(self._window.width(),_doc.documentElement.clientWidth)},_getDocumentHeight:function(){return Math.max(self._window.height(),_doc.documentElement.clientHeight)},_stringCounter:function(c){var d;if(c<9){d="0"+(c+1)}else{d=c+1}return d},_preventSelect:function(c){b(c).each(function(){b(this).attr("unselectable","on").css({"-moz-user-select":"none","-webkit-user-select":"none","user-select":"none"}).each(function(){this.onselectstart=function(){return false}})})},_initScrollBack:function(c){if(this._playlistTransitionOn){return}if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}this._thumbScrollIntervalID=setInterval(this._scrollThumbsBack,100);return false},_stopScrollBack:function(c){if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}return false},_scrollThumbsBack:function(){var c;if(this._thumbOrientation=="horizontal"){c=parseInt(this.thumbInnerContainer.css("left"),10);c+=this._thumbsScrollValue;if(c>this._thumbSpacing){if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}c=this._thumbSpacing}this.thumbInnerContainer.css("left",c+"px")}else{c=parseInt(this.thumbInnerContainer.css("top"),10);c+=this._thumbsScrollValue;if(c>this._thumbSpacing){if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}c=this._thumbSpacing}this.thumbInnerContainer.css("top",c+"px")}},_initScrollForward:function(c){if(this._playlistTransitionOn){return}if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}this._thumbScrollIntervalID=setInterval(this._scrollThumbsForward,100);return false},_stopScrollForward:function(c){if(this._thumbScrollIntervalID){clearInterval(this._thumbScrollIntervalID)}return false},_scrollThumbsForward:function(){var c;if(this._thumbOrientation=="horizontal"){c=parseInt(this.thumbInnerContainer.css("left"),10);c-=this._thumbsScrollValue;if(cthis.defaultVolume?this.defaultVolume=0:10?1:-1,
+f;if(b._thumbOrientation=="horizontal"){if(b._thumbInnerContainerSizeb._thumbSpacing?f=b._thumbSpacing:fb._thumbSpacing?f=b._thumbSpacing:fthis._playlistLength-1?a=this._playlistLength-1:0>a&&(a=0);else{if(-1==this._playlistManager.getCounter()){alert("No active Item for description, counter = -1");
+return}a=this._playlistManager.getCounter()}return this._descriptionDataArr[a]?this._descriptionDataArr[a]:null}},playMedia:function(){this._componentInited&&(!this._playlistTransitionOn&&this._mediaType)&&("vimeo"==this._mediaType?this._vimeoPlayer&&this._vimeoPlayer.play():"youtube"==this._mediaType&&this._youtubePlayer&&this._youtubePlayer.play())},pauseMedia:function(){this._componentInited&&(!this._playlistTransitionOn&&this._mediaType)&&("vimeo"==this._mediaType?this._vimeoPlayer&&this._vimeoPlayer.pause():
+"youtube"==this._mediaType&&this._youtubePlayer&&this._youtubePlayer.pause())},nextMedia:function(){this._componentInited&&!this._playlistTransitionOn&&(this._enableActiveItem(),this._playlistManager.advanceHandler(1,!0))},previousMedia:function(){this._componentInited&&!this._playlistTransitionOn&&(this._enableActiveItem(),this._playlistManager.advanceHandler(-1,!0))},loadMedia:function(a){this._componentInited&&!this._playlistTransitionOn&&(0>a?a=0:a>this._playlistLength-1&&(a=this._playlistLength-
+1),this._enableActiveItem(),this._playlistManager.processPlaylistRequest(a))},destroyMedia:function(){this._componentInited&&this._mediaType&&this._cleanMedia()},togglePlaylistState:function(){this._componentInited&&!this._playlistTransitionOn&&this._togglePlaylist()},setVolume:function(a){this._componentInited&&(!this._playlistTransitionOn&&this._mediaType)&&(0>a?a=0:1
+this._playlistLength-1?this._buildPlaylist():this._processYoutubePlaylistQuery()}},_processYotubeSuccess:function(a){if(a.error)alert(a.error.message);else{var c=a.data.items.length,b=0,d=this._videoProcessDataUrl[this._videoProcessCounter].type,e,h;if("youtube_playlist_query"==d){this._playlistQueryCounter=0;this._playlistQueryUrl=[];this._playlistLength=c;for(b;bthis._playlistLength-1?this._buildPlaylist():this._processJson()}}},_processYotubeSingleSuccess:function(a){var c=
+{},a=a.data;c.type="youtube";c.id=a.id;c.title=a.title;c.description=a.description;c.thumbnail=a.thumbnail.hqDefault?a.thumbnail.hqDefault:a.thumbnail.sqDefault;this._videoProcessData.push(c);this._videoProcessCounter++;this._videoProcessCounter>this._playlistLength-1?this._buildPlaylist():this._processJson()},_processYotubeError:function(){},_processVimeo:function(){var a=this,c=this._videoProcessDataUrl[this._videoProcessCounter].type,b=this._videoProcessDataUrl[this._videoProcessCounter].path;
+"vimeo_single"==c?this._processVimeoSingle(b):"vimeo_user"!=c&&"vimeo_group"!=c&&"vimeo_channel"!=c&&"vimeo_album"!=c?alert("Invalid data-type in playlist!"):jQuery.ajax({url:b,dataType:"jsonp",success:function(b){a._processVimeoSuccess(b)},error:function(b){a._processVimeoError(b)}})},_processVimeoSingle:function(a){var c=this;jQuery.ajax({url:a,dataType:"jsonp",success:function(a){c._processVimeoSingleSuccess(a)},error:function(a){c._processVimeoError(a)}})},_processVimeoSuccess:function(a){var c=
+a.length,b=0,d;for(b;bthis._playlistLength-1?this._buildPlaylist():this._processJson()},_processVimeoSingleSuccess:function(a){var c={type:"vimeo"};c.id=a[0].id;c.title=a[0].title;c.description=a[0].description;c.thumbnail=a[0].thumbnail_medium;this._videoProcessData.push(c);this._videoProcessCounter++;
+this._videoProcessCounter>this._playlistLength-1?this._buildPlaylist():this._processJson()},_processVimeoError:function(){},_getThumbSize:function(a){var c=this;d(new Image).load(function(){c._finalThumbHeight=c._thumbWidth/(this.width/this.height);c._buildPlaylist()}).attr("src",a)},_buildPlaylist:function(){if(this._thumbSizeSet){var a=this;this.mediaPreloader.css("display","none");this._thumbInnerContainerSize=0;this._playlistOpened=!1;this._playlistLength=this._videoProcessData.length;var c=0,
+b,g,e,h,f;for(c;c"),this._thumbHolderArr[c]=g,g.attr("data-id",c),g.attr("data-type",h.type),g.attr("data-path",h.id),g.bind("click",function(b){if(a._componentInited&&!a._playlistTransitionOn&&(b||(b=a._window.event),b.cancelBubble?b.cancelBubble=!0:b.stopPropagation&&b.stopPropagation(),b=d(b.currentTarget).attr("data-id"),b!=a._playlistManager.getCounter()))return a._enableActiveItem(),
+a._playlistManager.processPlaylistRequest(b),a._closePlaylistOnVideoSelect&&a._togglePlaylist(),!1}),g.bind("mouseover",function(b){if(a._componentInited&&!a._playlistTransitionOn){b||(b=a._window.event);b.cancelBubble?b.cancelBubble=!0:b.stopPropagation&&b.stopPropagation();var c=d(b.currentTarget);c.attr("data-id");if(b=c.find("div[data-title='titleDiv']"))c=c.height()-b.height()-parseInt(b.css("paddingBottom"),10)-parseInt(b.css("paddingTop"),10),b.stop().animate({top:c+"px"},{duration:300,easing:"easeOutQuart"});
+return!1}}),g.bind("mouseout",function(b){if(a._componentInited&&!a._playlistTransitionOn&&(b||(b=a._window.event),b.cancelBubble?b.cancelBubble=!0:b.stopPropagation&&b.stopPropagation(),b=d(b.currentTarget),b.attr("data-id")!=a._playlistManager.getCounter())){var c=b.find("div[data-title='titleDiv']");c&&c.stop().animate({top:b.height()+"px"},{duration:300,easing:"easeOutQuart"});return!1}}),"horizontal"==this._thumbOrientation?g.css({position:"relative",width:this._thumbWidth+"px",height:this._finalThumbHeight+
+"px",top:"0px",left:"0px","float":"left",marginRight:this._thumbSpacing+"px",cursor:"pointer",opacity:0,overflow:"hidden",backgroundColor:this.thumbBackgroundColor,backgroundImage:'url("'+this._iconLoader+'")',backgroundRepeat:"no-repeat",backgroundPosition:"center center"}):g.css({position:"relative",width:this._thumbWidth+"px",height:this._finalThumbHeight+"px",top:"0px",left:"0px",clear:"both",marginBottom:this._thumbSpacing+"px",cursor:"pointer",opacity:0,overflow:"hidden",backgroundColor:this.thumbBackgroundColor,
+backgroundImage:'url("'+this._iconLoader+'")',backgroundRepeat:"no-repeat",backgroundPosition:"center center"}),e=d(""),g.titleDiv=e,e.attr("data-title","titleDiv"),e.css({left:"0px",top:this._finalThumbHeight+"px"}),e.html(h.title),e.addClass("thumb_title"),b=d(new Image),b.attr("alt",h.title),b.attr("id",c),b.css({top:"0px",left:"0px",display:"block",width:this._thumbWidth+"px",height:this._finalThumbHeight+"px"}).load(function(){f=d(this).attr("id");a._thumbHolderArr[f].css("backgroundImage",
+"")}).attr("src",i),g.append(b),g.append(e),this.thumbInnerContainer.append(g),g.stop().animate({opacity:1},{duration:500,easing:"easeOutSine"}),this._thumbInnerContainerSize="horizontal"==this._thumbOrientation?this._thumbInnerContainerSize+(this._thumbWidth+this._thumbSpacing):this._thumbInnerContainerSize+(this._finalThumbHeight+this._thumbSpacing);this.thumbInnerContainer.css("width",this._thumbInnerContainerSize+"px");this._checkThumbPosition();this._playlistTransitionOn=!1;this._playlistLength=
+this._thumbHolderArr.length;this._playlistManager.setPlaylistItems(this._playlistLength);c=this.settings.activeVideo;c>this._playlistLength-1?c=this._playlistLength-1:-1>c&&(c=-1);-1this._getComponentSize("w")-this._thumbBackwardSize-this._thumbForwardSize){this.thumbBackward.css("display","block");this.thumbForward.css("display","block");var a=parseInt(this.thumbInnerContainer.css("left"),10);athis._thumbSpacing&&(a=this._thumbSpacing);this.thumbInnerContainer.css("left",a+"px")}else this.thumbBackward.css("display","none"),this.thumbForward.css("display","none"),this.thumbInnerContainer.css("left",this._getComponentSize("w")/2-this._thumbInnerContainerSize/2-
+this._thumbBackwardSize+"px");else this._thumbInnerContainerSize>this._getComponentSize("h")-this._thumbBackwardSize-this._thumbForwardSize?(this.thumbBackward.css("display","block"),this.thumbForward.css("display","block"),a=parseInt(this.thumbInnerContainer.css("top"),10),athis._thumbSpacing&&(a=this._thumbSpacing),this.thumbInnerContainer.css("top",a+"px")):(this.thumbBackward.css("display","none"),this.thumbForward.css("display","none"),this.thumbInnerContainer.css("top",this._getComponentSize("h")/2-this._thumbInnerContainerSize/2-this._thumbBackwardSize+"px"))},_overPlaylistItem:function(a){if(this._componentInited&&!this._playlistTransitionOn){a||(a=this._window.event);a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&
+a.stopPropagation();var c=d(a.currentTarget);c.attr("data-id");if(a=c.find("div[data-title='titleDiv']"))c=c.height()-a.height()-parseInt(a.css("paddingBottom"),10)-parseInt(a.css("paddingTop"),10),a.stop().animate({top:c+"px"},{duration:300,easing:"easeOutQuart"});return!1}},_outPlaylistItem:function(a){if(this._componentInited&&!this._playlistTransitionOn&&(a||(a=this._window.event),a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&a.stopPropagation(),a=d(a.currentTarget),a.attr("data-id")!=this._playlistManager.getCounter())){var c=
+a.find("div[data-title='titleDiv']");c&&c.stop().animate({top:a.height()+"px"},{duration:300,easing:"easeOutQuart"});return!1}},_clickPlaylistItem:function(a){if(this._componentInited&&!this._playlistTransitionOn&&(a||(a=this._window.event),a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&a.stopPropagation(),a=d(a.currentTarget).attr("data-id"),a!=this._playlistManager.getCounter()))return this._enableActiveItem(),this._playlistManager.processPlaylistRequest(a),this._closePlaylistOnVideoSelect&&
+this._togglePlaylist(),!1},_enableActiveItem:function(){if(-1!=this._playlistManager.getCounter()){var a=d(this._thumbHolderArr[this._playlistManager.getCounter()]);a.css("cursor","pointer");var c=a.find("div[data-title='titleDiv']");c&&c.stop().animate({top:a.height()+"px"},{duration:500,easing:"easeOutQuart"})}},_disableActiveItem:function(){var a=d(this._thumbHolderArr[this._playlistManager.getCounter()]);a.css("cursor","default");var c=a.find("div[data-title='titleDiv']"),a=a.height()-c.height()-
+parseInt(c.css("paddingBottom"),10)-parseInt(c.css("paddingTop"),10);c&&c.stop().animate({top:a+"px"},{duration:500,easing:"easeOutQuart"})},_clickControls:function(a){if(this._componentInited){a||(a=this._window.event);a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&a.stopPropagation();var a=d(a.currentTarget),c=a.attr("class");a.find("img");if("this.controls_prev"==c){if(this._playlistTransitionOn)return;this._enableActiveItem();this._playlistManager.advanceHandler(-1,!0)}else if("controls_playlist_toggle"==
+c){if(this._playlistTransitionOn)return;this._togglePlaylist(!0)}else if("this.controls_next"==c){if(this._playlistTransitionOn)return;this._enableActiveItem();this._playlistManager.advanceHandler(1,!0)}else"this.player_share"==c&&this._toggleShare();return!1}},_overControls:function(a){if(this._componentInited){a||(a=this._window.event);a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&a.stopPropagation();var c=d(a.currentTarget),a=c.attr("class"),c=c.find("img");"this.controls_prev"==a?this._controlsPrevSrc.attr("src",
+$this._iconBackwardOn):"controls_playlist_toggle"==a?this._playlistOpened?this._controlsToggleSrc.attr("src",this._iconCloseOn):this._controlsToggleSrc.attr("src",this._iconOpenOn):"this.controls_next"==a?this._controlsNextSrc.attr("src",$this._iconForwardOn):"this.thumbBackward"==a?this._thumbBackwardSrc.attr("src","horizontal"==this._thumbOrientation?$this._iconThumbBackwardOn:$this._iconThumbBackwardVOn):"this.thumbForward"==a?this._thumbForwardSrc.attr("src","horizontal"==this._thumbOrientation?
+$this._iconThumbForwardOn:$this._iconThumbForwardVOn):"this.player_share"==a&&c.attr("src",$this._iconShareOn);return!1}},_outControls:function(a){if(this._componentInited){a||(a=this._window.event);a.cancelBubble?a.cancelBubble=!0:a.stopPropagation&&a.stopPropagation();var c=d(a.currentTarget),a=c.attr("class"),c=c.find("img");"this.controls_prev"==a?this._controlsPrevSrc.attr("src",$this._iconBackward):"controls_playlist_toggle"==a?this._playlistOpened?this._controlsToggleSrc.attr("src",this._iconClose):
+this._controlsToggleSrc.attr("src",this._iconOpen):"this.controls_next"==a?this._controlsNextSrc.attr("src",$this._iconForward):"this.thumbBackward"==a?this._thumbBackwardSrc.attr("src","horizontal"==this._thumbOrientation?$this._iconThumbBackward:$this._iconThumbBackwardV):"this.thumbForward"==a?this._thumbForwardSrc.attr("src","horizontal"==this._thumbOrientation?$this._iconThumbForward:$this._iconThumbForwardV):"this.player_share"==a&&c.attr("src",$this._iconShare);return!1}},_toggleThumbBg:function(a){var c;
+"horizontal"==this._thumbOrientation?(c=this._thumbInnerContainerStartBuffer+this._finalThumbHeight+this._thumbInnerContainerStartBuffer,a?(this.thumbHolder.stop().animate({height:c+"px"},{duration:500,easing:"easeOutQuart"}),this.thumbBackward.stop().animate({height:c+"px"},{duration:500,easing:"easeOutQuart"}),this.thumbForward.stop().animate({height:c+"px"},{duration:500,easing:"easeOutQuart"})):(this.thumbHolder.stop().animate({height:"0px"},{duration:500,easing:"easeOutQuart"}),this.thumbBackward.stop().animate({height:"0px"},
+{duration:500,easing:"easeOutQuart"}),this.thumbForward.stop().animate({height:"0px"},{duration:500,easing:"easeOutQuart"}))):(c=this._thumbInnerContainerStartBuffer+this._thumbWidth+this._thumbInnerContainerStartBuffer,a?(this.thumbHolder.stop().animate({width:c+"px"},{duration:500,easing:"easeOutQuart"}),this.thumbBackward.stop().animate({width:c+"px"},{duration:500,easing:"easeOutQuart"}),this.thumbForward.stop().animate({width:c+"px"},{duration:500,easing:"easeOutQuart"})):(this.thumbHolder.stop().animate({width:"0px"},
+{duration:500,easing:"easeOutQuart"}),this.thumbBackward.stop().animate({width:"0px"},{duration:500,easing:"easeOutQuart"}),this.thumbForward.stop().animate({width:"0px"},{duration:500,easing:"easeOutQuart"})))},_togglePlaylist:function(a){this._playlistOpened?(this._toggleThumbBg(),this._playlistOpened=!1,a?this._controlsToggleSrc.attr("src",this._iconOpenOn):this._controlsToggleSrc.attr("src",this._iconOpen),this._animateVideoSizeOnPlaylistClose&&("horizontal"==this._thumbOrientation?(this.mediaWrapper.stop().animate({height:this._getComponentSize("h")+
+"px"},{duration:500,easing:"easeOutQuart"}),this.youtubeHolder.stop().animate({height:this._getComponentSize("h")+"px"},{duration:500,easing:"easeOutQuart"}),this.vimeoHolder.stop().animate({height:this._getComponentSize("h")+"px"},{duration:500,easing:"easeOutQuart"})):(this.mediaWrapper.stop().animate({width:this._getComponentSize("w")+"px"},{duration:500,easing:"easeOutQuart"}),this.youtubeHolder.stop().animate({width:this._getComponentSize("w")+"px"},{duration:500,easing:"easeOutQuart"}),this.vimeoHolder.stop().animate({width:this._getComponentSize("w")+
+"px"},{duration:500,easing:"easeOutQuart"})))):(this._toggleThumbBg(!0),this._playlistOpened=!0,a?this._controlsToggleSrc.attr("src",this._iconCloseOn):this._controlsToggleSrc.attr("src",this._iconClose),this._animateVideoSizeOnPlaylistClose&&("horizontal"==this._thumbOrientation?(a=this._playlistOutside?this._getComponentSize("h")-this.settings.playlistOutside.playlistSize:this._getComponentSize("h")-this._finalThumbHeight-2*parseInt(this.thumbInnerContainer.css("top"),10),this.mediaWrapper.stop().animate({height:a+
+"px"},{duration:500,easing:"easeOutQuart"}),this.youtubeHolder.stop().animate({height:a+"px"},{duration:500,easing:"easeOutQuart"}),this.vimeoHolder.stop().animate({height:a+"px"},{duration:500,easing:"easeOutQuart"})):(a=this._playlistOutside?this._getComponentSize("w")-this.settings.playlistOutside.playlistSize:this._getComponentSize("w")-this._thumbWidth-2*parseInt(this.thumbInnerContainer.css("left"),10),this.mediaWrapper.stop().animate({width:a+"px"},{duration:500,easing:"easeOutQuart"}),this.youtubeHolder.stop().animate({width:a+
+"px"},{duration:500,easing:"easeOutQuart"}),this.vimeoHolder.stop().animate({width:a+"px"},{duration:500,easing:"easeOutQuart"}))))},_cleanPlaylist:function(){this.thumbBackward.css("display","none");this.thumbForward.css("display","none");this._cleanMedia();this.thumbInnerContainer.empty();this._thumbHolderArr=[];"horizontal"==this._thumbOrientation?this.thumbInnerContainer.css("left",this._thumbSpacing+"px"):this.thumbInnerContainer.css("top",this._thumbSpacing+"px")},_setPlaylist:function(){this._playlistTransitionOn=
+!0;this.mediaPreloader.css("display","block");this._cleanPlaylist();this._getPlaylist()},_mediaAdvance:function(){this._enableActiveItem();this._playlistManager.advanceHandler(1,!0)},_findMedia:function(){this._cleanMedia();var a=this._thumbHolderArr[this._playlistManager.getCounter()];this._mediaPath=a.attr("data-path");this._mediaType=a.attr("data-type");"vimeo"==this._mediaType?this._initVimeo():"youtube"==this._mediaType?this._initYoutube():alert("Error in this._findMedia!")},_cleanMedia:function(){"vimeo"==
+this._mediaType?this._vimeoPlayer&&this._vimeoPlayer.clean():"youtube"==this._mediaType&&(this._youtubePlayer&&this._youtubePlayer.stop(),this.youtubeHolder.css("left",-this._getComponentSize("w")-5+"px"))},_setVolume:function(a){"vimeo"==this._mediaType?this._vimeoPlayer&&this._vimeoPlayer.setVolume(a):"youtube"==this._mediaType&&this._youtubePlayer&&this._youtubePlayer.setVolume(a)},_initVimeo:function(){var a=this;this._vimeoInited?this._vimeoPlayer.initVideo(this._mediaPath):(this._vimeoPlayer=
+d.vimeoPlayer({autoPlay:this.autoPlay,defaultVolume:this.defaultVolume,mediaPath:this._mediaPath,vimeoHolder:this.vimeoHolder}),d(this._vimeoPlayer).bind("ap_VimeoPlayer.END_PLAY",function(){a._autoAdvanceToNextVideo?a._mediaAdvance():a.autoPlay&&a._vimeoPlayer.api("play")}),this._vimeoInited=!0);this.settings.videoGalleryPlayMedia.call(this)},_initYoutube:function(){if(this._youtubeInited)this.youtubeHolder.css("left","0px"),this._youtubePlayer.initVideo(this._mediaPath),this.settings.videoGalleryPlayMedia.call(this);
+else{var a=this;this._youtubePlayer=d.youtubePlayer({frameId:this._youtubeFrameId,autoPlay:this.autoPlay,defaultVolume:this.defaultVolume,mediaPath:this._mediaPath,youtubeHolder:this.youtubeHolder,youtubeChromeless:this._youtubeChromeless});d(this._youtubePlayer).bind("ap_YoutubePlayer.START_PLAY",function(){a.youtubeHolder.css("left","0px")});d(this._youtubePlayer).bind("ap_YoutubePlayer.END_PLAY",function(){a._autoAdvanceToNextVideo?a._mediaAdvance():a.autoPlay&&a._youtubePlayer.play()});this.settings.videoGalleryPlayMedia.call(this);
+this._youtubeInited=!0}},_toggleShare:function(){this._shareOpened?(this.shareHolder.css("display","none"),this._shareOpened=!1):(this.shareHolder.css("display","block"),this._shareOpened=!0)},_getComponentSize:function(a){return"w"==a?this.componentWrapper.width():this.componentWrapper.height()},_getDocumentWidth:function(){return Math.max(self._window.width(),_doc.documentElement.clientWidth)},_getDocumentHeight:function(){return Math.max(self._window.height(),_doc.documentElement.clientHeight)},
+_stringCounter:function(a){return 9>a?"0"+(a+1):a+1},_preventSelect:function(a){d(a).each(function(){d(this).attr("unselectable","on").css({"-moz-user-select":"none","-webkit-user-select":"none","user-select":"none"}).each(function(){this.onselectstart=function(){return!1}})})},_initScrollBack:function(){if(!this._playlistTransitionOn)return this._thumbScrollIntervalID&&clearInterval(this._thumbScrollIntervalID),this._thumbScrollIntervalID=setInterval(this._scrollThumbsBack,100),!1},_stopScrollBack:function(){this._thumbScrollIntervalID&&
+clearInterval(this._thumbScrollIntervalID);return!1},_scrollThumbsBack:function(){var a;"horizontal"==this._thumbOrientation?(a=parseInt(this.thumbInnerContainer.css("left"),10),a+=this._thumbsScrollValue,a>this._thumbSpacing&&(this._thumbScrollIntervalID&&clearInterval(this._thumbScrollIntervalID),a=this._thumbSpacing),this.thumbInnerContainer.css("left",a+"px")):(a=parseInt(this.thumbInnerContainer.css("top"),10),a+=this._thumbsScrollValue,a>this._thumbSpacing&&(this._thumbScrollIntervalID&&clearInterval(this._thumbScrollIntervalID),
+a=this._thumbSpacing),this.thumbInnerContainer.css("top",a+"px"))},_initScrollForward:function(){if(!this._playlistTransitionOn)return this._thumbScrollIntervalID&&clearInterval(this._thumbScrollIntervalID),this._thumbScrollIntervalID=setInterval(this._scrollThumbsForward,100),!1},_stopScrollForward:function(){this._thumbScrollIntervalID&&clearInterval(this._thumbScrollIntervalID);return!1},_scrollThumbsForward:function(){var a;"horizontal"==this._thumbOrientation?(a=parseInt(this.thumbInnerContainer.css("left"),
+10),a-=this._thumbsScrollValue,aID, 'ghostpool_dedication_url', true);
+
+if (isYoutubeVideo($gp_settings['video'])) {
+ $gp_settings['video_type'] = 'youtube_single';
+ if (strpos($gp_settings['video'], "youtube.com")) {
+ $video = parse_str(parse_url($gp_settings['video'], PHP_URL_QUERY), $my_array_of_vars);
+ $gp_settings['video_id'] = $my_array_of_vars['v'];
+ $gp_settings['video_path'] = 'http://gdata.youtube.com/feeds/api/videos/' . $gp_settings['video_id'] . '?v=2&alt=jsonc';
+ }
+ if (strpos($gp_settings['video'], "youtu.be")) {
+ $gp_settings['video_id'] = substr(parse_url($gp_settings['video'], PHP_URL_PATH), 1);
+ $gp_settings['video_path'] = 'http://gdata.youtube.com/feeds/api/videos/' . $gp_settings['video_id'] . '?v=2&alt=jsonc';
+ }
+}
+if (isVimeoVideo($gp_settings['video'])) {
+ $gp_settings['video_type'] = 'vimeo_single';
+ $gp_settings['video_id'] = substr(parse_url($gp_settings['video'], PHP_URL_PATH), 1);
+ $gp_settings['video_path'] = 'http://vimeo.com/api/v2/video/' . $gp_settings['video_id'] . '.json';
+}
+
$gp_settings['artist'] = get_post_meta($post->ID, 'ghostpool_dedication_artist', true);
$gp_settings['artist_short'] = cutstr($gp_settings['artist'], 47, '...');
$gp_settings['song'] = get_post_meta($post->ID, 'ghostpool_dedication_song', true);
@@ -32,8 +51,6 @@ if ($gp_settings['artist_song_span_short'] != $gp_settings['artist_song_span'])
$gp_settings['artist_song_span_short'] .= '...';
}
-
-
// from user
$gp_settings['from_user_id'] = get_the_author_meta('ID');
$gp_settings['from_user_link'] = ''.bp_core_get_username($gp_settings['from_user_id']).'';
diff --git a/wp-content/themes/score/style-asong2u.css b/wp-content/themes/score/style-asong2u.css
index 6316ce4..00fa60e 100644
--- a/wp-content/themes/score/style-asong2u.css
+++ b/wp-content/themes/score/style-asong2u.css
@@ -1200,8 +1200,12 @@ h3.comments {
}
.home-page #respond textarea {
+ /*cambiamos ancho y alto del css por razones esteticas
height: 90px !important;
- width: 100%;
+ max-width: none;
+ width: 100%;*/
+ height: 30px !important;
+ width: 669px;
max-width: none;
}
@@ -1475,4 +1479,15 @@ color: #325670;
#invite-anyone-group-list li {
height: 100px !important;
list-style: none !important;
+}
+
+/************** CAMBIOS DE ESTILO POR NANDO Y JORGE ***************/
+
+div#comments div div#respond form#commentform.commentform input#submit {
+
+ margin-left: 536px;
+}
+.home-page div#page-wrapper div#content-wrapper div#content div#precontent-wrapper div#dedicationComments_container.columns div#comments div div#respond form#commentform.commentform input#submit {
+ margin-left: 536px;
+
}
\ No newline at end of file
diff --git a/wp-content/themes/score/style-asong2u.min.css b/wp-content/themes/score/style-asong2u.min.css
index afbd522..4206c57 100644
--- a/wp-content/themes/score/style-asong2u.min.css
+++ b/wp-content/themes/score/style-asong2u.min.css
@@ -1,2 +1 @@
-html,body{height:100%;width:100%;margin:0;padding:0;}body{background:#fff url(lib/images/background.png) left -6px repeat-x;font-family:Arial, Helvetica,sans-serif;}h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#2e374a!important;}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{color:#1eadff;}#page-wrapper{padding-top:0;width:940px;text-align:left;}#page-shadow{border-radius:0;box-shadow:none;}#content-wrapper{filter:none;-ms-filter:none;}#content-wrapper,#precontent-wrapper{background:transparent;width:100%;padding:0;}#header{margin-bottom:10px;}#header-bottom{clear:both;background:none;width:100%;overflow:hidden;height:42px;padding:0;}#header-profile{clear:both;background:none;width:100%;overflow:hidden;height:85px;font-size:13px;line-height:110%;padding:0;}#header-profile .user-nicename{font-weight:700;font-size:13px!important;}#content{margin-bottom:20px;padding-right:2%;width:77.25%;}.home-page #content{padding-right:0;width:79.25%;}#content.dedication-profile{width:77.25%;padding-right:0;}#sidebar{width:20.74%;}.sb-right #sidebar{margin-left:0;}#sidebar.dedication-profile{width:22.74%;}ul.navmenu{width:330px;float:right;margin-bottom:10px;}ul.navmenu li{float:left;width:51px;height:90px;margin-left:15px;}ul.navmenu li a{background-color:transparent;display:block;width:51px;height:90px;position:relative;}ul.navmenu li span.sign{background-image:url(lib/images/icons.png);background-position:2px -451px;background-repeat:no-repeat;bottom:4px;color:#FFF;display:inline;font-size:9px;font-weight:700;height:25px;line-height:34px;position:absolute;right:0;text-align:right;width:25px;padding:0 3px 0 0;}ul.navmenu li a.friends{background-image:url(lib/images/icons.png);background-position:0 -270px;background-repeat:no-repeat;}ul.navmenu li a.friends:hover{background-image:url(lib/images/icons.png);background-position:-51px -270px;background-repeat:no-repeat;}ul.navmenu li a.groups{background-image:url(lib/images/icons.png);background-position:0 -180px;background-repeat:no-repeat;}ul.navmenu li a.groups:hover{background-image:url(lib/images/icons.png);background-position:-51px -180px;background-repeat:no-repeat;}ul.navmenu li a.events{background-image:url(lib/images/icons.png);background-position:0 0;background-repeat:no-repeat;}ul.navmenu li a.events:hover{background-image:url(lib/images/icons.png);background-position:-51px 0;background-repeat:no-repeat;}ul.navmenu li a.profile{background-image:url(lib/images/icons.png);background-position:0 -90px;background-repeat:no-repeat;}ul.navmenu li a.profile:hover{background-image:url(lib/images/icons.png);background-position:-51px -90px;background-repeat:no-repeat;}ul.navmenu li a.logout{background-image:url(lib/images/icons.png);background-position:0 -360px;background-repeat:no-repeat;}ul.navmenu li a.logout:hover{background-image:url(lib/images/icons.png);background-position:-53px -360px;background-repeat:no-repeat;}.login-name{color:#fff;width:40%;float:left;margin-top:40px;text-align:center;font-weight:700;}#user-details a{color:#8bafce;}#searchform{float:right;background:url(lib/images/search.png) repeat scroll 0 0 transparent;height:28px;padding-left:4px;width:176px;border-style:none;margin:0;}#search-panel{float:right;padding:5px 0;}#searchbar{background:transparent!important;width:120px;}#searchsubmit{float:right;width:28px;background:transparent!important;height:28px;text-indent:9999px;}#searchsubmit:active{background:transparent!important;box-shadow:none;}#search-icon{border-color:#666;}#search-icon.active,#search-icon:hover{background-color:#181e23;border-color:#161C20 #161C20 #181e23;}#search-box{background-color:#aaa;display:inline;border:none;position:relative;padding:0;}#social-wrapper{background:#2f3b43;border-top:5px solid #161C20;}#scroller a:hover{color:#1EADFF;}#dedicationTitle_container,#dedicationFooter_container{width:100%;height:75px;clear:both;text-align:center;position:relative;margin:0 auto;padding:0;}#dedicationTitle{line-height:65px;color:#2e374a;display:inline-block;white-space:nowrap;margin:0;padding:5px 10px;}#dedication-data-panel{margin-top:8px;font-size:16px;padding:5px;}#dedicationFooter_container .two{width:50%;}#dedicationFooter_container .last{display:inline-block;height:100%;}#dedicationFooter_container .button{float:right;margin-left:5px;margin-top:40px;width:193px;font-size:13px;font-weight:800;line-height:21px;padding:6px 0;}#dedicationFooter_container h3{font-size:24px;white-space:nowrap;margin:10px 0 5px 8px;}#dedicationFooter_container h4{white-space:nowrap;margin:0 0 0 8px;}#slider-wrapper{margin-bottom:15px;border-top:none;height:650px;width:100%;border:1px solid #349bbc;background:#E7E7E7;padding:0;}#slider-wrapper .error{background:#2F3B43;border-color:#161C20;}#slider-inner-bg{background:#325670;}#dedication-data-panel img.dedicationFlag{width:32px;height:32px;vertical-align:middle;margin-top:-8px;}#dedication-data-panel span{font-size:18px;font-weight:700;display:inline-block;margin-right:10px;}#dedicationComments_container{display:inline-block;width:90%!important;}.page-title{border:none;}.wpfp-link{background:#2D5069;}.wpfp-link:hover{background:#273138;}#review-links li a{color:#2d5069;}.site-score{background:#1eadff;}.user-score{background:#698396;}#footer{width:100%;text-align:center;background:#e7e7e7 url(lib/images/footer-column-bg.png) center no-repeat;border:2px solid #349BBC;border-left:none;border-right:none;margin-top:15px;}.footer-third{width:200px;}#footer-widgets{background:transparent;float:none;font-weight:700;color:#2e374a;filter:none;-ms-filter:none;margin:0 auto;padding:10px;}#footer-widgets > div:first-child{margin-left:180px;}#footer-widgets h3{border:0;margin-bottom:0;text-align:left;background:transparent;}#footer-widgets #nav_menu-4 h3{color:#ef54ca!important;}#footer-widgets #nav_menu-5 h3{color:#f0776f!important;}#footer-widgets #nav_menu-6 h3{color:#7dafc6!important;}#footer-widgets .widget li{padding-top:4px;text-align:left;}.footer-widgets-border-right{height:2px;background:#95c3d2;}.footer-widgets-border-left{height:2px;background:#1586ae;}#footer .widget a:hover{color:#4B8CC6;}#footer-bottom{background-color:#273138;border-top:10px solid #161C20;color:#879197;}#footer-bottom a{color:#aab7bf;}.widget h3{text-align:center;width:100%;background:#cce6f5;border:1px solid #2c85c7;color:#7da0b6;display:inline-block;padding:6px 0;}#sidebar-home{width:26.49%!important;}#sidebar-home .widget{width:195px;margin-bottom:30px;text-align:center;}#sidebar-home .widget h3{background:transparent;border:0;margin:0;padding:0;}.widget img{border:1px solid #349BBC;}.widget.top_members{color:#bf2d2d;width:195px;float:left;}.widget.top_members a{color:#bf2d2d;}.widget.top_members h3{color:#bf2d2d!important;font-size:12px;text-transform:uppercase;border:none;background:none;margin:0;padding:0;}.widget.top_members .post-text{text-align:center;font-size:12px;font-weight:700;float:none;heigth:38px;}.widget.top_members a.button{color:#bf2d2d;text-shadow:none;background:#f4d2e3;border:1px solid #eaa5ba;display:inline-block;font-size:14px;line-height:14px;font-weight:700;width:100%;padding:5px 0;}.widget.sidebarposts h3,.widget.sidebarposts .post-loop .post-text{color:#34a089!important;text-align:left;font-size:12px;}.widget.sidebarposts h3{background:transparent;border:0;text-align:center;margin:0;padding:0;}.widget.sidebarposts .post-loop{width:100%!important;min-height:88px;padding-bottom:0;border:none;margin:0;}.widget.sidebarposts .post-loop .post-text{float:left;margin-left:10px;width:100%;overflow:visible;}.widget.sidebarposts .post-loop .post-text img.dedicationFlag{height:16px;vertical-align:middle;width:16px;margin:0;}.widget.sidebarposts .post-loop .post-thumbnail{text-align:center;width:100%;}.widget.sidebarposts a{color:#2E374A!important;}.widget.sidebarposts .post-loop .post-meta{color:#2E374A;white-space:nowrap;line-height:19px;}.widget.sidebarposts a.button{color:#34a089;text-shadow:none;background:#d7edeb;border:1px solid #4da6a2;display:block;font-size:14px;line-height:14px;font-weight:700;}.widget.sidebarposts .post-text .post-artist-song{white-space:nowrap;line-height:19px;}.widget.sidebarposts .we_recommend{margin-top:2px;}.widget.sidebarposts .we_recommend .post-loop .post-text{width:100%;float:left;margin-left:10px;}.widget.sidebarposts .top_10 h3{background:none repeat scroll 0 0 #D7EDEB;border:1px solid #4DA6A2;display:block;font-size:14px;font-weight:700;line-height:14px;text-shadow:none;margin-bottom:5px;color:#34A089!important;text-align:center;cursor:pointer;padding:5px 0;}.widget.top_members img,.widget.sidebarposts img{border:0;margin:5px 0;padding:0;}.widget.top_members .post-loop{width:100%!important;min-height:130px;padding-bottom:0;border:none;margin:0;}.widget.widget_specialrecentposts h4{font-size:13px;line-height:110%;font-family:Georgia, "Times New Roman", Times, serif;}.srp-widget-singlepost{border:none!important;margin:0!important;}.widget.widget_bp_my_groups_widget h3{background:#4e778b!important;color:#9fd7f2!important;border-color:#253b48;}.widget.widget_bp_my_groups_widget .my-groups-list .widget.widget_bp_my_groups_widget .my-groups-list .item-avatar .avatar{height:50px;width:50px;}.widget.widget_bp_my_groups_widget .my-groups-list li{border:none!important;margin:0!important;padding:0 0 10px!important;}.widget.widget_bp_my_groups_widget .my-groups-list .item{margin-left:0;text-transform:uppercase;}.widget.widget_bp_my_groups_widget .my-groups-list .item a{display:block;padding:5px;}.widget.widget_bp_my_groups_widget .my-groups-list .item a:hover{color:#f5b00c;background:#0f3d5f;-moz-box-shadow:inset 0 0 10px #262630;-webkit-box-shadow:inset 0 0 10px #262630;box-shadow:inset 0 0 10px #262630;}div.srp-widget-container{clear:both;display:table;}div.srp-widget-container h3.widget-title{display:table-caption;margin-bottom:10px;}div.srp-widget-singlepost{border-bottom:1px solid #CCC;margin:0 0 10px;padding:0 0 10px;}div.srp-thumbnail-box{display:table-cell;padding-right:10px;vertical-align:top;}div.srp-content-box{display:table-cell;vertical-align:top;}#sidebar #my-friends-big-avatars.widget .avatar-block a{display:inline-block;width:60px;height:65px;}#sidebar #my-friends-big-avatars.widget .avatar-block span.see_more,#sidebar #my-friends-big-avatars.widget .avatar-block a.see_more{display:block;width:100%;height:auto;color:#F5B00C;font-size:14px;font-weight:700;cursor:pointer;}#sidebar #my-friends-big-avatars.widget .avatar-link{background:none repeat scroll 0 0 #CCE6F5;border:1px solid #2C85C7;display:inline-block;text-align:center;width:100%;font-size:14px;font-weight:700;margin-bottom:20px;color:#2e374a;padding:6px 0;}#sidebar #my-friends-big-avatars.widget a.button{background:none repeat scroll 0 0 #CCE6F5;border:1px solid #2C85C7;color:#325670!important;display:inline-block;text-align:center;text-transform:none;width:100%;font-size:14px;font-weight:700;margin-top:10px;border-radius:0;line-height:14px;padding:6px 0;}.wp-pagenavi{margin:10px 0;}.wp-pagenavi span,.wp-pagenavi a,.wp-pagenavi.post-navi a span{margin-left:0;margin-right:10px;text-align:center;font-weight:400;color:#495157;}.wp-pagenavi .pages{margin-right:20px;}.wp-pagenavi.post-navi a,.wp-pagenavi.post-navi a:hover,.wp-pagenavi .current,.wp-pagenavi a:hover,.wp-pagenavi.post-navi span,.wp-pagenavi.post-navi a span:hover{font-weight:700;color:#077dc8;}input[type=submit],input[type=reset],input[type=button],button,#content-wrapper .widget input[type=button],#content-wrapper .widget input[type=submit],#content-wrapper .widget input[type=reset],#content-wrapper .widget input[type=file],#content-wrapper .widget button,#content-wrapper #groups-directory-form h3 a.button,.bp-wrapper #content-wrapper .button,.bp-wrapper #content-wrapper .button.submit,.bp-wrapper #content-wrapper ul.button-nav li a,.bp-wrapper #content-wrapper .generic-button a,.bp-wrapper #content-wrapper .comment-reply-link,.bp-wrapper #content-wrapper #previous-next input,.bp-wrapper #content-wrapper #submit_topic_cancel,.bp-wrapper #content-wrapper .acomment-options a,/.bp-wrapper #content-wrapper .activity-meta a:hover span,*/
-a.button{font-size:13px;font-weight:800;line-height:30px;text-transform:uppercase;text-align:center;cursor:pointer;color:#B0F0F3;background:#203A75;border:1px solid #1E263A;padding:5px 10px;}.bp-wrapper #content-wrapper .activity-meta a.button,.bp-wrapper #content-wrapper .acomment-options a{font-size:12px;font-weight:700;text-transform:none;}.bp-wrapper #content-wrapper .activity-meta a:hover span{font-weight:700;font-size:12px;padding:0 3px;}input[type=submit].signup{background:0 to(#619e41))!important;border:1px outset #517f65!important;}input[type=submit]:hover.signup{background:0 to(#78b146))!important;border:1px outset #b9f788!important;}#signup_form{background:#73c3e8;border-radius:10px;color:#3b71af;padding:20px;}#signup_form h2,#signup_form h3,#signup_form h4{color:#3b71af!important;margin-bottom:5px;}h3.comments{border-bottom:none;}.comment-box{border:none;color:#2e374a;overflow:hidden;margin:0 0 15px;padding:0;}.comment-meta{width:405px;}.comment-author{font-size:16px;}.comment-date{font-size:12px;margin:0;}.comment-text{font-size:14px;padding:0 25px 10px 0;}.comment-text p{line-height:16px;}.more-comments{width:66%;text-align:left;padding-right:34%;}.more-comments a,a.read-more{color:#f5b00c;font-size:14px;font-weight:700;}#respond{padding:0 25px 25px 0;}#respond form{padding:0;}.home-page #respond textarea{height:90px!important;width:100%;max-width:none;}#respond h3{border-bottom:none;margin:0;}.yjl-pager{clear:both;margin:20px 0;}.yjl-pager .currentPager{background:#2e374a;color:#FFF;}.category-dedication.post-loop{text-align:left;max-height:230px;min-height:230px;border-bottom:0;width:32%!important;display:inline-block;overflow:hidden;margin:0;padding:0 1% 0 0;}.category-dedication.post-loop .post-text{width:95%;white-space:nowrap;overflow:hidden;}.home-page .post-loop{width:49%!important;padding-right:1%!important;max-height:250px;min-height:250px;}.home-my-dedications.post-loop,.home-dedicated-2-me.post-loop{border-bottom:0;max-height:230px;min-height:230px;margin:0;padding:0;}.post-text{text-align:left;}.post-text h2{font-weight:400;white-space:nowrap;}.post-text h2 span{font-size:115%;font-weight:700;}.post-text img.dedicationFlag{width:24px;height:24px;vertical-align:middle;}.post-thumbnail{float:none;width:100%;margin:0 0 5px;}.post-thumbnail img{display:inline;border:1px solid #349BBC;background-color:#F5F1F0;padding:5px;}.post-thumbnail a{position:relative;display:inline-block;}.new-label{background-image:url(lib/images/icons.png);background-position:-57px -451px;background-repeat:no-repeat;height:45px;position:absolute;right:0;top:-2px;width:45px;z-index:2;}.bp-wrapper #item-header ul img.avatar,.bp-wrapper #item-header ul.avatars img.avatar{height:50px;width:50px;margin:-10px 10px 50px 0;}.activity-comments .ac-reply-content{margin-left:85px;}.bp-wrapper ul.item-list .item,.bp-wrapper li .admin-links,.bp-wrapper .post-content,.widget ul.item-list .item{margin-left:150px;}.bp-wrapper .item-list .activity-content{margin-left:50px;}.bp-wrapper ul.item-list li div.item-title,.bp-wrapper ul.item-list li h4{font-size:16px;font-weight:700;}.bp-wrapper ul.item-list div.action{margin-left:150px;position:relative;width:auto;}#header-profile #item-header-avatar{width:80px;margin-right:15px;}#header-profile #item-header-avatar .avatar{height:77px;width:77px;}.bp-wrapper .accepted,.bp-wrapper .accepted a,.bp-wrapper .accepted a:hover,.bp-wrapper .pending,.bp-wrapper .pending a,.bp-wrapper .pending a:hover,.bp-wrapper .disabled,.bp-wrapper .disabled a,.bp-wrapper .disabled a:hover{border-radius:0;}#members-list li{width:50%;float:left;}.bp-wrapper #send-invite-form div.action{position:absolute;}.bp-wrapper div.item-list-tabs ul li a,.bp-wrapper div.item-list-tabs ul li span{color:#4B8CC6;padding:10px 7px;}.bp-wrapper div#subnav.item-list-tabs{margin:15px 0 10px;}.bp-wrapper .register-section,.bp-wrapper .create-form{border:none;float:left;width:90%;margin:0;padding:8px 15px;}.bp-wrapper .register-section label,.bp-wrapper .create-form label,.bp-wrapper .register-section span.label{display:inline-block!important;width:35%;text-align:right;margin-right:1%!important;font-weight:700;}.bp-wrapper .register-section .radio div{width:60%;display:inline-block;}.bp-wrapper .register-section .radio div label{display:inline-block;width:auto!important;color:#000;}.bp-wrapper .register-section .textInput,.bp-wrapper .register-section input[type=text],.bp-wrapper .create-form .textInput,.bp-wrapper .create-form input[type=text],.bp-wrapper .register-section #signup_username,.bp-wrapper .register-section #signup_password,.bp-wrapper .register-section #signup_password_confirm{width:60%;}#invite-anyone-group-list li{height:100px!important;list-style:none!important;}a,#dedication-data-panel a,#footer .widget a{color:#2e374a;}a:hover,#share-review-link a:hover,.related-post-title,.profile-box a,.widget a,.posts-widget .post-cats a:hover,REMOVE.forum a,.bbPress #content span.bbp-admin-links a,.bbPress #content .bbp-reply-permalink{color:#325670;}.hidden,ul.navmenu li a span,.dedicationTitle_logo,#dedicationTitle_container #dedicationTitle-data-panel,#dedicationFooter_container{display:none;}#content.fullwidth,.widget.widget_bp_my_groups_widget .my-groups-list .item .item-title,.post-loop{width:100%;}#content.new-dedication,#sidebar.new-dedication{width:49%;}.scroller-bullet,#slider-wrapper .error a{color:#8BAFCE;}#share-review-link a,.jqTransformSelectWrapper div span,#review-links li.tab-active a,.related-post-title:hover,.profile-box a:hover,.widget a:hover,.posts-widget .post-cats,.posts-widget .post-cats a,.forum a:hover,.bbPress #content span.bbp-admin-links a:hover,.bbPress #content .bbp-reply-permalink:hover,.bbPress #content div#item-header .updated{color:#077dc8;}.widget h4,.bp-wrapper div.pagination{font-size:14px;}.widget.sidebarposts a span,.widget.sidebarposts .post-loop .post-meta span a{font-weight:700;}.widget.sidebarposts .we_recommend .post-loop .post-thumbnail,#sidebar #my-friends-big-avatars.widget .avatar-block,#sidebar #my-friends-big-avatars.widget .avatar-link{width:100%;text-align:center;}.widget.top_members .post-loop .post-meta,.widget.sidebarposts .post-loop .post-meta,.widget.top_members .post-loop .post-thumbnail,.widget.sidebarposts .post-loop .post-thumbnail,p.srp-widget-excerpt,#comments,.comment-text p:first-child,#commentform{margin:0;}.widget.top_members .post-loop .post-thumbnail,#signup_form .submit{text-align:center;}#sidebar #my-friends-big-avatars.widget .avatar-block a img.avatar,.activity-comments .avatar,.bp-wrapper #whats-new-avatar .avatar,.bp-wrapper .item-list div.activity-avatar img{width:50px;height:50px;}input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover,button:hover,.bp-wrapper #content-wrapper .button:hover,.bp-wrapper #content-wrapper .button.submit:hover,.bp-wrapper #content-wrapper ul.button-nav li a:hover,.bp-wrapper #content-wrapper .generic-button a:hover,.bp-wrapper #content-wrapper .comment-reply-link:hover,.bp-wrapper #content-wrapper #previous-next input:hover,.bp-wrapper #content-wrapper #submit_topic_cancel:hover,.bp-wrapper #content-wrapper .acomment-options a:hover,.bp-wrapper #content-wrapper div.item-list-tabs ul li a:hover span,.bp-wrapper #content-wrapper .activity-meta a span,a.button:hover,input[type=submit]:active,input[type=reset]:active,input[type=button]:active,button:active,.bp-wrapper #content-wrapper .button:active,.bp-wrapper #content-wrapper .button.submit:active,.bp-wrapper #content-wrapper ul.button-nav li a:active,.bp-wrapper #content-wrapper .generic-button a:active,.bp-wrapper #content-wrapper .comment-reply-link:active,.bp-wrapper #content-wrapper #previous-next input:active,.bp-wrapper #content-wrapper #submit_topic_cancel:active,.bp-wrapper #content-wrapper .acomment-options a:active,.bp-wrapper #content-wrapper div.item-list-tabs ul li a:active span,.bp-wrapper #content-wrapper .activity-meta a span,a.button:active{color:#fff;background:#0059b5;border:1px solid #88c4c2;}.messages.bp-wrapper .avatar,.bp-wrapper .thread-avatar .avatar,.item-list li .avatar,#members-list .item-avatar .avatar,#groups-list .item-avatar .avatar{width:150px;height:150px;}.bp-wrapper ul.item-list .item-desc,.bp-wrapper div.poster-meta,.bp-wrapper .item-list .activity-content .activity-header,.bp-wrapper .item-list .activity-content .comment-header{font-size:12px;}
\ No newline at end of file
+html,body{ height:100%; width:100%; padding:0; margin:0}body{ background:#fff url(lib/images/background.png) left -6px repeat-x; font-family:Arial,Helvetica,sans-serif}a{color:#2e374a}a:hover{color:#325670}h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#2e374a !important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{color:#1eadff}#page-wrapper{ padding-top:0; width:940px; text-align:left}#page-shadow{ border-radius:0; box-shadow:none}#content-wrapper{ filter:none; -ms-filter:none}#content-wrapper,#precontent-wrapper{ padding:0; background:transparent; width:100%}.hidden{ display:none}#header{ margin-bottom:10px}#header-bottom{ clear:both; background:none; padding:0; width:100%; overflow:hidden; height:42px}#header-profile{ clear:both; background:none; padding:0; width:100%; overflow:hidden; height:85px; font-size:13px; line-height:110%}#header-profile .user-nicename{ font-weight:bold; font-size:13px !important}#logo span{}#nav{}#content{ margin-bottom:20px; padding-right:2%; width:77.25%}.home-page #content{ padding-right:0; width:79.25%}#content.fullwidth{ width:100%}#content.new-dedication{ width:49%}#content.dedication-profile{ width:77.25%; padding-right:0}#sidebar{ width:20.74%}.sb-right #sidebar{ margin-left:0}#sidebar.new-dedication{ width:49%}#sidebar.dedication-profile{ width:22.74%}ul.navmenu{ width:330px; float:right; margin-bottom:10px}ul.navmenu li{ float:left; width:51px; height:90px; margin-left:15px}ul.navmenu li a{ background-color:transparent; display:block; width:51px; height:90px; position:relative}ul.navmenu li a span{ display:none}ul.navmenu li span.sign{ background-image:url("lib/images/icons.png"); background-position:2px -451px; background-repeat:no-repeat; bottom:4px; color:#FFF; display:inline; font-size:9px; font-weight:bold; height:25px; line-height:34px; padding:0 3px 0 0; position:absolute; right:0; text-align:right; width:25px}ul.navmenu li a.friends{ background-image:url(lib/images/icons.png); background-position:0px -270px; background-repeat:no-repeat}ul.navmenu li a.friends:hover{ background-image:url(lib/images/icons.png); background-position:-51px -270px; background-repeat:no-repeat}ul.navmenu li a.groups{ background-image:url(lib/images/icons.png); background-position:0px -180px; background-repeat:no-repeat}ul.navmenu li a.groups:hover{ background-image:url(lib/images/icons.png); background-position:-51px -180px; background-repeat:no-repeat}ul.navmenu li a.events{ background-image:url(lib/images/icons.png); background-position:0px 0px; background-repeat:no-repeat}ul.navmenu li a.events:hover{ background-image:url(lib/images/icons.png); background-position:-51px 0px; background-repeat:no-repeat}ul.navmenu li a.profile{ background-image:url(lib/images/icons.png); background-position:0px -90px; background-repeat:no-repeat}ul.navmenu li a.profile:hover{ background-image:url(lib/images/icons.png); background-position:-51px -90px; background-repeat:no-repeat}ul.navmenu li a.logout{ background-image:url(lib/images/icons.png); background-position:0px -360px; background-repeat:no-repeat}ul.navmenu li a.logout:hover{ background-image:url(lib/images/icons.png); background-position:-53px -360px; background-repeat:no-repeat}.login-name{ color:#fff; width:40%; float:left; margin-top:40px; text-align:center; font-weight:bold}#user-details a{color:#8bafce}#searchform{ float:right; background:url("lib/images/search.png") repeat scroll 0 0 transparent; border-style:none; height:28px; padding-left:4px; width:176px; margin:0}#search-panel{ float:right; padding:5px 0px 5px}#searchbar{ background:transparent !important; width:120px}#searchsubmit{ float:right; width:28px; background:transparent !important; height:28px; text-indent:9999px}#searchsubmit:active{ background:transparent !important; box-shadow:none}#search-icon{border-color:#666}#search-icon.active,#search-icon:hover{background-color:#181e23;border-color:#161C20;border-bottom-color:#181e23}#search-box{background-color:#aaa; display:inline; border:none; padding:0; position:relative}#social-wrapper{background:#2f3b43;border-top:5px solid #161C20}#scroller a:hover{color:#1EADFF}.scroller-bullet{color:#8BAFCE}#dedicationTitle_container,#dedicationFooter_container{ width:100%; margin:0 auto; height:75px; clear:both; text-align:center; padding:0px; position:relative}.dedicationTitle_logo{ display:none}#dedicationTitle_container #dedicationTitle-data-panel{ display:none}#dedicationTitle{ line-height:65px; margin:0; color:#2e374a; padding:5px 10px; display:inline-block; white-space:nowrap}#dedication-data-panel{ margin-top:8px; padding:5px; font-size:16px}#dedicationFooter_container{ display:none}#dedicationFooter_container .two{ width:50%}#dedicationFooter_container .last{ display:inline-block; height:100%}#dedicationFooter_container .button{ float:right; margin-left:5px; margin-top:40px; width:193px; font-size:13px; font-weight:800; padding:6px 0; line-height:21px}#dedicationFooter_container h3{ margin:10px 0 5px 8px; font-size:24px; white-space:nowrap}#dedicationFooter_container h4{ margin:0px 0 0 8px; white-space:nowrap}#slider-wrapper{ margin-bottom:15px; border-top:none; padding:0; height:650px; width:100%; border:1px solid #349bbc; background:#E7E7E7}#slider-wrapper .error{background:#2F3B43;border-color:#161C20}#slider-wrapper .error a{color:#8BAFCE}#slider-inner-bg{background:#325670}#dedication-data-panel img.dedicationFlag{ width:32px; height:32px; vertical-align:middle; margin-top:-8px}#dedication-data-panel span{ font-size:18px; font-weight:bold; display:inline-block; margin-right:10px}#dedication-data-panel a{ color:#2e374a}#dedicationComments_container{ display:inline-block; width:90% !important}#dedicationComments_container #comments{ }.page-title{ border:none}#share-review-link a{color:#077dc8}#share-review-link a:hover{color:#325670}.wpfp-link{background:#2D5069}.wpfp-link:hover{background:#273138}.jqTransformSelectWrapper div span{color:#077dc8}#review-links li a{color:#2d5069}#review-links li.tab-active a{color:#077dc8}.site-score{background:#1eadff}.user-score{background:#698396}.related-post-title{color:#325670}.related-post-title:hover{color:#077dc8}.profile-box a{color:#325670}.profile-box a:hover{color:#077dc8}#footer{ width:100%; text-align:center; background:#e7e7e7 url(lib/images/footer-column-bg.png) center no-repeat; border:2px solid #349BBC; border-left:none; border-right:none; margin-top:15px}.footer-third{ width:200px}#footer-widgets{ padding:10px; background:transparent; margin:0 auto; float:none; font-weight:bold; color:#2e374a; filter:none; -ms-filter:none}#footer-widgets >div:first-child{ margin-left:180px}#footer-widgets h3{ border:0px; margin-bottom:0px; text-align:left; background:transparent}#footer-widgets #nav_menu-4 h3{ color:#ef54ca !important}#footer-widgets #nav_menu-5 h3{ color:#f0776f !important}#footer-widgets #nav_menu-6 h3{ color:#7dafc6 !important}#footer-widgets .widget li{ padding-top:4px; text-align:left}.footer-widgets-border-right{ height:2px; background:#95c3d2}.footer-widgets-border-left{ height:2px; background:#1586ae}#footer .widget a{ color:#2e374a}#footer .widget a:hover{ color:#4B8CC6}#footer-bottom{background-color:#273138;border-top:10px solid #161C20;color:#879197}#footer-bottom a{color:#aab7bf}.widget a{color:#325670}.widget a:hover{color:#077dc8}.posts-widget .post-cats{color:#077dc8}.posts-widget .post-cats a{color:#077dc8}.posts-widget .post-cats a:hover{color:#325670}.widget h3{ text-align:center; width:100%; background:#cce6f5; border:1px solid #2c85c7; color:#7da0b6; padding:6px 0; display:inline-block}.widget h4{ font-size:14px}#sidebar-home{ width:26.49% !important}#sidebar-home .widget{ width:195px; margin-bottom:30px; text-align:center}#sidebar-home .widget h3{ background:transparent; border:0px; padding:0; margin:0}.widget img{ border:1px solid #349BBC}.widget.top_members{ color:#bf2d2d; width:195px; float:left}.widget.top_members a{ color:#bf2d2d}.widget.top_members h3{ color:#bf2d2d !important; font-size:12px; text-transform:uppercase; border:none; background:none; margin:0; padding:0}.widget.top_members .post-text{ text-align:center; font-size:12px; font-weight:bold; float:none; heigth:38px}.widget.top_members a.button{ color:#bf2d2d; text-shadow:none; background:#f4d2e3; border:1px solid #eaa5ba; display:inline-block; font-size:14px; line-height:14px; font-weight:bold; padding:5px 0; width:100%}.widget.sidebarposts{}.widget.sidebarposts h3,.widget.sidebarposts .post-loop .post-text{ color:#34a089 !important; text-align:left; font-size:12px}.widget.sidebarposts h3{ background:transparent; border:0px; padding:0; margin:0; text-align:center}.widget.sidebarposts .post-loop{ width:100% !important; min-height:88px; margin:0; padding-bottom:0; border:none}.widget.sidebarposts .post-loop .post-text{ float:left; margin-left:10px; width:100%; overflow:visible}.widget.sidebarposts .post-loop .post-text img.dedicationFlag{ height:16px; vertical-align:middle; width:16px; margin:0}.widget.sidebarposts .post-loop .post-thumbnail{ text-align:center; width:100%}.widget.sidebarposts a{ color:#2E374A !important}.widget.sidebarposts a span{ font-weight:bold}.widget.sidebarposts .post-loop .post-meta{ color:#2E374A; white-space:nowrap; line-height:19px}.widget.sidebarposts .post-loop .post-meta span a{ font-weight:bold}.widget.sidebarposts a.button{ color:#34a089; text-shadow:none; background:#d7edeb; border:1px solid #4da6a2; display:block; font-size:14px; line-height:14px; font-weight:bold}.widget.sidebarposts .post-text .post-artist-song{ white-space:nowrap; line-height:19px}.widget.sidebarposts .we_recommend{ margin-top:2px}.widget.sidebarposts .we_recommend .post-loop .post-thumbnail{ width:100%; text-align:center}.widget.sidebarposts .we_recommend .post-loop .post-text{ width:100%; float:left; margin-left:10px}.widget.sidebarposts .top_10{ }.widget.sidebarposts .top_10 h3{ background:none repeat scroll 0 0 #D7EDEB; border:1px solid #4DA6A2; color:#34A089; display:block; font-size:14px; font-weight:bold; line-height:14px; text-shadow:none; padding:5px 0px; margin-bottom:5px; color:#34A089 !important; text-align:center; cursor:pointer}.widget.top_members img,.widget.sidebarposts img{ padding:0; border:0; margin:5px 0}.widget.top_members .post-loop{ width:100% !important; min-height:130px; margin:0; padding-bottom:0; border:none}.widget.top_members .post-loop .post-meta,.widget.sidebarposts .post-loop .post-meta{ margin:0}.widget.top_members .post-loop .post-thumbnail,.widget.sidebarposts .post-loop .post-thumbnail{ margin:0}.widget.top_members .post-loop .post-thumbnail{ text-align:center}.widget.widget_specialrecentposts{ }.widget.widget_specialrecentposts h4{ font-size:13px; line-height:110%; font-family:Georgia,"Times New Roman",Times,serif}.srp-widget-singlepost{ border:none !important; margin:0 !important}.widget.widget_bp_my_groups_widget h3{ background:#4e778b !important; color:#9fd7f2 !important; border-color:#253b48}.widget.widget_bp_my_groups_widget .my-groups-list .widget.widget_bp_my_groups_widget .my-groups-list .item-avatar .avatar{ height:50px; width:50px}.widget.widget_bp_my_groups_widget .my-groups-list li{ border:none !important; margin:0 !important; padding:0 0 10px 0 !important}.widget.widget_bp_my_groups_widget .my-groups-list .item{ margin-left:0px; text-transform:uppercase}.widget.widget_bp_my_groups_widget .my-groups-list .item .item-title{ width:100%}.widget.widget_bp_my_groups_widget .my-groups-list .item a{ padding:5px 5px; display:block}.widget.widget_bp_my_groups_widget .my-groups-list .item a:hover{ color:#f5b00c; background:#0f3d5f; -moz-box-shadow: inset 0 0 10px #262630; -webkit-box-shadow:inset 0 0 10px #262630; box-shadow: inset 0 0 10px #262630}div.srp-widget-container{ clear:both; display:table}div.srp-widget-container h3.widget-title{ display:table-caption; margin-bottom:10px}div.srp-widget-singlepost{ border-bottom:1px solid #CCC; margin:0 0 10px; padding:0 0 10px}div.srp-thumbnail-box{ display:table-cell; padding-right:10px; vertical-align:top}div.srp-content-box{ display:table-cell; vertical-align:top}p.srp-widget-excerpt{ margin:0}#sidebar #my-friends-big-avatars.widget .avatar-block,#sidebar #my-friends-big-avatars.widget .avatar-link{ width:100%; text-align:center}#sidebar #my-friends-big-avatars.widget .avatar-block a{ display:inline-block; width:60px; height:65px}#sidebar #my-friends-big-avatars.widget .avatar-block span.see_more,#sidebar #my-friends-big-avatars.widget .avatar-block a.see_more{ display:block; width:100%; height:auto; color:#F5B00C; font-size:14px; font-weight:bold; cursor:pointer}#sidebar #my-friends-big-avatars.widget .avatar-link{ background:none repeat scroll 0 0 #CCE6F5; border:1px solid #2C85C7; color:#7DA0B6; display:inline-block; padding:6px 0; text-align:center; width:100%; font-size:14px; font-weight:bold; margin-bottom:20px; color:#2e374a}#sidebar #my-friends-big-avatars.widget .avatar-block a img.avatar{ width:50px; height:50px}#sidebar #my-friends-big-avatars.widget a.button{ background:none repeat scroll 0 0 #CCE6F5; border:1px solid #2C85C7; color:#325670 !important; display:inline-block; padding:6px 0; text-align:center; text-transform:none; width:100%; font-size:14px; font-weight:bold; margin-top:10px; border-radius:0; line-height:14px}.wp-pagenavi{ margin:10px 0}.wp-pagenavi span,.wp-pagenavi a,.wp-pagenavi.post-navi a span{ margin-left:0; margin-right:10px; text-align:center; font-weight:normal}.wp-pagenavi .pages{ margin-right:20px}.wp-pagenavi span,.wp-pagenavi a,.wp-pagenavi.post-navi a span{ color:#495157}.wp-pagenavi.post-navi a,.wp-pagenavi.post-navi a:hover,.wp-pagenavi .current,.wp-pagenavi a:hover,.wp-pagenavi.post-navi span,.wp-pagenavi.post-navi a span:hover{ font-weight:bold; color:#077dc8}input[type="submit"],input[type="reset"],input[type="button"],button,#content-wrapper .widget input[type="button"],#content-wrapper .widget input[type="submit"],#content-wrapper .widget input[type="reset"],#content-wrapper .widget input[type="file"],#content-wrapper .widget button,#content-wrapper #groups-directory-form h3 a.button,.bp-wrapper #content-wrapper .button,.bp-wrapper #content-wrapper .button.submit,.bp-wrapper #content-wrapper ul.button-nav li a,.bp-wrapper #content-wrapper .generic-button a,.bp-wrapper #content-wrapper .comment-reply-link,.bp-wrapper #content-wrapper #previous-next input,.bp-wrapper #content-wrapper #submit_topic_cancel,.bp-wrapper #content-wrapper .acomment-options a,a.button{ font-size:13px; font-weight:800; line-height:30px; text-transform:uppercase; text-align:center; padding:5px 10px; cursor:pointer; color:#B0F0F3; background:#203A75; border:1px solid #1E263A}.bp-wrapper #content-wrapper .activity-meta a.button,.bp-wrapper #content-wrapper .acomment-options a{ font-size:12px; font-weight:bold; text-transform:none}.bp-wrapper #content-wrapper .activity-meta a:hover span{ padding:0 3px; font-weight:bold; font-size:12px}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.bp-wrapper #content-wrapper .button:hover,.bp-wrapper #content-wrapper .button.submit:hover,.bp-wrapper #content-wrapper ul.button-nav li a:hover,.bp-wrapper #content-wrapper .generic-button a:hover,.bp-wrapper #content-wrapper .comment-reply-link:hover,.bp-wrapper #content-wrapper #previous-next input:hover,.bp-wrapper #content-wrapper #submit_topic_cancel:hover,.bp-wrapper #content-wrapper .acomment-options a:hover,.bp-wrapper #content-wrapper div.item-list-tabs ul li a:hover span,.bp-wrapper #content-wrapper .activity-meta a span,a.button:hover{ color:#fff; background:#0059b5; border:1px solid #88c4c2}input[type="submit"]:active,input[type="reset"]:active,input[type="button"]:active,button:active,.bp-wrapper #content-wrapper .button:active,.bp-wrapper #content-wrapper .button.submit:active,.bp-wrapper #content-wrapper ul.button-nav li a:active,.bp-wrapper #content-wrapper .generic-button a:active,.bp-wrapper #content-wrapper .comment-reply-link:active,.bp-wrapper #content-wrapper #previous-next input:active,.bp-wrapper #content-wrapper #submit_topic_cancel:active,.bp-wrapper #content-wrapper .acomment-options a:active,.bp-wrapper #content-wrapper div.item-list-tabs ul li a:active span,.bp-wrapper #content-wrapper .activity-meta a span,a.button:active{ color:#fff; background:#0059b5; border:1px solid #88c4c2}input[type="submit"].signup{ background:-moz-linear-gradient(top,#77c24b 0%,#619e41) !important; background:-webkit-gradient( linear,left top,left bottom, from(#77c24b), to(#619e41)) !important; border:1px outset #517f65 !important}input[type="submit"]:hover.signup{ background:-moz-linear-gradient(top,#b9f788 0%,#78b146) !important; background:-webkit-gradient( linear,left top,left bottom, from(#b9f788), to(#78b146)) !important; border:1px outset #b9f788 !important}#signup_form{ background:#73c3e8; border-radius:10px; padding:20px; color:#3b71af}#signup_form h2,#signup_form h3,#signup_form h4{ color:#3b71af !important; margin-bottom:5px}#signup_form .submit{ text-align:center}#comments{ margin:0}h3.comments{ border-bottom:none}.comment-box{ margin:0 0 15px; padding:0; border:none; color:#2e374a; overflow:hidden}.comment-meta{ width:405px}.comment-author{ font-size:16px}.comment-date{ margin:0; font-size:12px}.comment-text{ padding:0 25px 10px 0; font-size:14px}.comment-text p{ line-height:16px}.comment-text p:first-child{ margin:0}.more-comments{ width:66%; text-align:left; padding-right:34%}.more-comments a,a.read-more{ color:#f5b00c; font-size:14px; font-weight:bold}#commentform{ margin:0}#respond{ padding:0 25px 25px 0}#respond form{ padding:0}.home-page #respond textarea{ height:30px !important; width:669px; max-width:none}#respond h3{ margin:0; border-bottom:none}.yjl-pager{ margin:20px 0; clear:both}.yjl-pager .currentPager{ background:#2e374a; color:white}.post-loop{ width:100%}.category-dedication.post-loop{ text-align:left; max-height:230px; min-height:230px; border-bottom:0; width:32% !important; display:inline-block; margin:0; padding:0; padding-right:1%; overflow:hidden}.category-dedication.post-loop .post-text{ width:95%; white-space:nowrap; overflow:hidden}.home-page .post-loop{ width:49% !important; padding-right:1% !important; max-height:250px; min-height:250px}.home-my-dedications.post-loop,.home-dedicated-2-me.post-loop{ border-bottom:0; max-height:230px; min-height:230px; margin:0; padding:0}.post-text{ text-align:left}.post-text h2{ font-weight:normal; white-space:nowrap}.post-text h2 span{ font-size:115%; font-weight:bold}.post-text img.dedicationFlag{ width:24px; height:24px; vertical-align:middle}.post-thumbnail{ float:none; margin:0; width:100%; margin-bottom:5px}.post-thumbnail img{ display:inline; padding:5px; border:1px solid #349BBC; background-color:#F5F1F0}.post-thumbnail a{ position:relative; display:inline-block}.new-label{ background-image:url("lib/images/icons.png"); background-position:-57px -451px; background-repeat:no-repeat; height:45px; position:absolute; right:0px; top:-2px; width:45px; z-index:2}.messages.bp-wrapper .avatar,.bp-wrapper .thread-avatar .avatar,.item-list li .avatar{ width:150px; height:150px}.activity-comments .avatar,.bp-wrapper #whats-new-avatar .avatar,.bp-wrapper .item-list div.activity-avatar img{ width:50px; height:50px}#members-list .item-avatar .avatar,#groups-list .item-avatar .avatar{ width:150px; height:150px}.bp-wrapper #item-header ul img.avatar,.bp-wrapper #item-header ul.avatars img.avatar{ height:50px; margin:-10px 10px 50px 0; width:50px}.activity-comments .ac-reply-content{ margin-left:85px}.bp-wrapper ul.item-list .item,.bp-wrapper li .admin-links,.bp-wrapper .post-content,.widget ul.item-list .item{ margin-left:150px}.bp-wrapper .item-list .activity-content{ margin-left:50px}.bp-wrapper ul.item-list li div.item-title,.bp-wrapper ul.item-list li h4{ font-size:16px; font-weight:bold}.bp-wrapper ul.item-list div.action{ width:200px}.bp-wrapper ul.item-list .item-desc{ font-size:12px}.bp-wrapper div.poster-meta,.bp-wrapper .item-list .activity-content .activity-header,.bp-wrapper .item-list .activity-content .comment-header{ font-size:12px}#header-profile #item-header-avatar{ width:80px; margin-right:15px}#header-profile #item-header-avatar .avatar{ height:77px; width:77px}REMOVE.forum a,.bbPress #content span.bbp-admin-links a,.bbPress #content .bbp-reply-permalink{color:#325670}.forum a:hover,.bbPress #content span.bbp-admin-links a:hover,.bbPress #content .bbp-reply-permalink:hover,.bbPress #content div#item-header .updated{ color:#077dc8}.bp-wrapper .accepted,.bp-wrapper .accepted a,.bp-wrapper .accepted a:hover,.bp-wrapper .pending,.bp-wrapper .pending a,.bp-wrapper .pending a:hover,.bp-wrapper .disabled,.bp-wrapper .disabled a,.bp-wrapper .disabled a:hover{ border-radius:0}#members-list li{ width:50%; float:left}.bp-wrapper div.pagination{ font-size:14px}.bp-wrapper ul.item-list div.action{ margin-left:150px; position:relative; width:auto}.bp-wrapper #send-invite-form div.action{ position:absolute}.bp-wrapper div.item-list-tabs ul li a,.bp-wrapper div.item-list-tabs ul li span{ padding:10px 7px; color:#4B8CC6}.bp-wrapper div#subnav.item-list-tabs{ margin:15px 0 10px}.bp-wrapper .register-section,.bp-wrapper .create-form{ border:none; margin:0; padding:8px 15px; float:left; width:90%}.bp-wrapper .register-section label,.bp-wrapper .create-form label,.bp-wrapper .register-section span.label{ display:inline-block !important; width:35%; text-align:right; margin-right:1% !important; font-weight:bold}.bp-wrapper .register-section .radio div{ width:60%; display:inline-block}.bp-wrapper .register-section .radio div label{ display:inline-block; width:auto !important; color:#000}.bp-wrapper .register-section .textInput,.bp-wrapper .register-section input[type="text"],.bp-wrapper .create-form .textInput,.bp-wrapper .create-form input[type="text"],.bp-wrapper .register-section #signup_username,.bp-wrapper .register-section #signup_password,.bp-wrapper .register-section #signup_password_confirm { width:60%}#invite-anyone-group-list li{ height:100px !important; list-style:none !important}div#comments div div#respond form#commentform.commentform input#submit{ margin-left:536px}.home-page div#page-wrapper div#content-wrapper div#content div#precontent-wrapper div#dedicationComments_container.columns div#comments div div#respond form#commentform.commentform input#submit{ margin-left:536px}
\ No newline at end of file
diff --git a/wp-content/themes/score/style.css b/wp-content/themes/score/style.css
index 6c6760f..f7dfadb 100644
--- a/wp-content/themes/score/style.css
+++ b/wp-content/themes/score/style.css
@@ -2282,9 +2282,9 @@ padding: 10px 0 30px 0;
margin-left: 10px;
}
#respond textarea {
-width: 544px;
-max-width: 544px;
-height: 150px;
+height:30px;
+max-width:627px;
+width:627px
}
#cancel-comment-reply-link {
float: right;
diff --git a/wp-content/themes/score/style.min.css b/wp-content/themes/score/style.min.css
index a6d4177..84c923b 100644
--- a/wp-content/themes/score/style.min.css
+++ b/wp-content/themes/score/style.min.css
@@ -1,353 +1,353 @@
-/*
-Theme Name: ASong2U
-Version: 1.0
-Description: Author: Author URI: Theme URI: License:
-License URI:
-Tags: buddypress
-*/
-/*************************** General Styling ***************************/
-/* Page Styling */
-body{color:#666;font-family:Arial, Tahoma, "Lucida Sans Unicode", "Lucida Grande";font-size:14px;font-weight:400;margin:0 auto;padding:0;position:relative;text-align:center}
-h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#333;font-weight:700;line-height:1;margin:0 0 20px;padding:0}
-h1{font-size:26px}
-h2{font-size:24px}
-h3{font-size:20px}
-h5{font-size:16px}
-h6{font-size:13px}
-p{line-height:19px;margin-bottom:12px}
-em{font-style:italic}
-.text-left{text-align:left}
-.text-right{text-align:right}
-.text-justify{text-align:justify}
-ol{margin:0;padding:0}
-ol li{line-height:19px;list-style:decimal;margin:0 0 0 20px;padding:0 0 10px}
-ul{list-style-type:none;margin:0;padding:0}
-.gp-list,.widget ul{list-style-type:square;margin:0 0 12px}
-.gp-list li,.widget li{line-height:19px;margin:0 0 0 20px;padding:10px 0 0}
-.gp-list li:first-child,.widget li:first-child{padding:0}
-input[type=text],body input[type=password],textarea,select{-moz-box-shadow:none;-webkit-box-shadow:none;background:#fff;border:1px solid #e5e5e5;box-shadow:none;font-family:Arial;font-size:12px;margin:0 0 5px;padding:7px}
-input[type=text]:focus,body input[type=password]:focus,textarea:focus{background:#fff;border:1px solid #999}
-textarea{resize:none}
-select{padding:3px}
-input[type=submit],input[type=reset],input[type=button],button{border:0;color:#fff;cursor:pointer;font-family:Arial;font-size:12px;font-weight:700;padding:7px 10px;text-align:center}
-input[type=radio],input[type=checkbox]{background:transparent;border:0}
-fieldset{margin:0;padding:20px}
-.gp-table th{border-bottom:1px solid #e5e5e5;font-weight:700;padding:10px}
-.gp-table td{border-bottom:1px solid #e5e5e5;font-size:12px;padding:10px}
-cite{float:right;padding:0 0 5px}
-hr{background:#e5e5e5;border:0;clear:both;height:1px;margin:20px 0;padding:0;position:relative;width:100%}
-pre{background:#f5f5f5;border-color:#e5e5e5;border-style:solid;border-width:0 0 0 3px;font-family:"Courier New";font-size:12px;line-height:19px;margin:12px 0 0;overflow:auto;padding:15px}
-code{background:#f5f5f5;border-color:#e5e5e5;border-style:solid;border-width:0 0 0 3px;clear:both;display:block;font-family:"Courier New";font-size:12px;line-height:19px;margin:12px 0 0;padding:5px 15px}
-.clear{clear:both;content:"";display:block;font-size:0;height:0;line-height:0;margin:0;padding:0;width:100%}
-.align-center,.aligncenter{clear:both;display:block;margin:20px auto;position:relative}
-.align-left,.alignleft{float:left;margin:4px 20px 5px 0;position:relative}
-.align-right,.alignright{float:right;margin:4px 0 5px 20px;position:relative}
-#page-wrapper{margin:0 auto;padding:30px 10px;position:relative;width:980px}
-#page-shadow{-moz-border-radius:5px;-moz-box-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-border-radius:5px;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.5);border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,0.5);position:relative;text-align:left;width:100%}
-#content-wrapper{-ms-filter:"progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#fafafa)";background:#fff;background-image:0 to(#fafafa));filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffffff,endColorstr=#fafafa);float:left;padding:30px;width:920px}
-#content{position:relative;width:590px}
-.fullwidth #content{float:left;width:920px}
-#sidebar{width:300px}
-.sb-right #sidebar{float:right;margin-left:30px}
-.sb-left #sidebar{float:left;margin-right:30px}
-#header{float:left;position:relative;width:100%}
-#header-bottom{background:url(lib/images/stripes-bg.png) no-repeat center top;float:left;padding:30px 30px 0;position:relative;width:920px}
-#logo{display:block;float:left;line-height:0;margin:0;position:relative}
-#logo a{line-height:0}
-#logo span{display:block;height:135px;left:0;position:relative;top:-15px;width:280px}
-#logo img{position:relative}
-#logo div{height:1px;text-indent:-9999px;width:1px}
-#header-content{float:right;text-align:center}
-#nav{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;float:left;padding:0 25px 0 15px;position:relative;width:940px;z-index:100}
-#nav ul,#nav ul ul{float:left;list-style-position:outside;list-style-type:none;position:relative}
-#nav ul:after{clear:both;content:".";display:block;height:0;visibility:hidden}
-#nav ul li{border-style:solid;border-width:1px;display:block;float:left;margin:0;padding:0;position:relative}
-#nav ul a{color:#fff;display:block;font-size:12px;font-weight:700;line-height:12px;padding:15px;text-shadow:1px 1px 0 #000}
-#nav .sub-menu{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;border-style:solid;border-width:0 1px 1px;display:none;left:-1px;margin:0;padding:5px 5px 10px;position:absolute;top:43px;width:200px;z-index:100}
-#nav .sub-menu li{background:none;border:0;height:auto;margin:0;padding:0;position:static}
-#nav .sub-menu a{display:block;float:left;height:auto;line-height:19px;margin:0;padding:5px 10px;width:170px}
-#nav ul .sub-menu li ul{left:180px;top:auto}
-#nav ul .sub-menu.align-right li ul{left:-200px;top:auto}
-#user-details{float:right;margin:15px 0 0}
-#user-details .login-name{color:#e5e5e5;float:left;font-weight:700;margin:1px 0 0;text-shadow:1px 1px 0 #000}
-#user-details a{color:#8bafce;float:left;font-weight:700;line-height:12px;margin:1px 0 0 15px;text-shadow:1px 1px 0 #000}
-#search-icon{background-image:url(lib/images/sprite.png);background-position:10px -108px;background-repeat:no-repeat;border-style:solid;border-width:1px;cursor:pointer;display:block;float:left;height:22px;margin:-15px 0 0 15px;padding:10px;width:13px}
-#search-box{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;border-style:solid;border-width:0 1px 1px;display:none;padding:20px;position:absolute;right:25px;top:44px;width:245px}
-#search-panel input{border:0}
-#social-wrapper{float:left;height:32px;position:relative;width:100%}
-#scroller{color:#fff;float:left;height:16px;line-height:16px;margin:6px 0 0 30px;overflow:hidden;text-shadow:1px 1px 0 #000}
-#scroller-title{color:#fff;float:left;font-weight:700}
-#scroller-marquee{display:none;float:left}
-.scroller-bullet{font-size:14px;margin:0 10px}
-#social-icons{background:url(lib/images/diag-right.png) left top no-repeat;float:right;padding:5px 30px 10px 50px}
-#social-icons a{display:block;float:left;height:17px;margin-left:15px;width:20px}
-.youtube-icon{background:url(lib/images/sprite.png) no-repeat 0 -57px}
-.youtube-icon:hover{background:url(lib/images/sprite.png) no-repeat 0 -87px}
-.facebook-icon{background:url(lib/images/sprite.png) no-repeat -36px -57px}
-.facebook-icon:hover{background:url(lib/images/sprite.png) no-repeat -36px -87px}
-.twitter-icon{background:url(lib/images/sprite.png) no-repeat -72px -57px}
-.twitter-icon:hover{background:url(lib/images/sprite.png) no-repeat -72px -87px}
-.dribbble-icon{background:url(lib/images/sprite.png) no-repeat -112px -57px}
-.dribbble-icon:hover{background:url(lib/images/sprite.png) no-repeat -112px -87px}
-.digg-icon{background:url(lib/images/sprite.png) no-repeat -141px -57px}
-.digg-icon:hover{background:url(lib/images/sprite.png) no-repeat -141px -87px}
-.vimeo-icon{background:url(lib/images/sprite.png) no-repeat -180px -57px}
-.vimeo-icon:hover{background:url(lib/images/sprite.png) no-repeat -180px -87px}
-.delicious-icon{background:url(lib/images/sprite.png) no-repeat -215px -57px}
-.delicious-icon:hover{background:url(lib/images/sprite.png) no-repeat -215px -87px}
-.rss-icon{background:url(lib/images/sprite.png) no-repeat -250px -57px}
-.rss-icon:hover{background:url(lib/images/sprite.png) no-repeat -250px -87px}
-.linkedin-icon{background:url(lib/images/sprite.png) no-repeat -320px -57px}
-.linkedin-icon:hover{background:url(lib/images/sprite.png) no-repeat -320px -87px}
-.googleplus-icon{background:url(lib/images/sprite.png) no-repeat -357px -57px}
-.googleplus-icon:hover{background:url(lib/images/sprite.png) no-repeat -357px -87px}
-#slider-wrapper{float:left;height:270px;overflow:hidden;padding:30px;position:relative;width:920px}
-#slider-wrapper .error{border-style:solid;border-width:1px;color:#fff;line-height:19px;padding:10px}
-.caroufredsel_wrapper{z-index:2}
-#slider{float:left;overflow:hidden;position:relative;z-index:2}
-.no-js #slider{min-width:5000px}
-.slide{float:left;height:220px;line-height:0;margin:40px 30px 0 0;overflow:hidden;position:relative;width:160px}
-.slide.slide-large{height:270px;margin:0 30px 0 0;width:350px}
-#slider-inner-bg{height:250px;position:absolute;right:0;top:40px;width:980px;z-index:1}
-.slide-caption{float:left;height:100%;margin-top:10px;position:relative;width:100%}
-.slide-caption h2,.slide-caption h2 a{color:#fff;display:block;float:left;font-size:12px;height:100%;line-height:19px;margin:0;text-shadow:1px 1px 0 #000;width:111px}
-.slide-caption h2 a{cursor:pointer}
-.slide-caption.hidden h2{width:160px}
-.slide-large .slide-caption{background:url(lib/images/slide-caption-bg.png) repeat;bottom:0;height:auto;left:0;min-height:58px;padding:20px;position:absolute;width:310px}
-.slide-large .slide-caption h2,.slide-large .slide-caption h2 a{font-size:16px;width:220px}
-.slide-large .slide-caption.hidden h2{width:310px}
-.slide-large .post-scores{width:80px}
-.slide-large .post-scores .site-score,.slide-large .post-scores .user-score{line-height:40px}
-.slide-small .post-scores .site-score,.slide-small .post-scores .user-score{font-size:14px;height:15px;line-height:14px;padding:7px 0;width:34px}
-#slider-nav{float:right;position:absolute;right:30px;top:10px}
-#slide-prev{background:url(lib/images/sprite.png) 0 0;cursor:pointer;float:left;height:19px;margin-left:20px;width:17px}
-#slide-prev:hover{background:url(lib/images/sprite.png) 0 -30px}
-#slide-move-outer{float:left;margin-left:20px}
-#slide-move-inner{background:url(lib/images/sprite.png) -35px 0;cursor:pointer;float:left;height:19px;width:12px}
-#slide-move-inner:hover{background:url(lib/images/sprite.png) -35px -30px}
-#slide-move-inner.play{background:url(lib/images/sprite.png) -100px 0}
-#slide-move-inner.play:hover{background:url(lib/images/sprite.png) -100px -30px}
-#slide-next{background:url(lib/images/sprite.png) -64px 0;cursor:pointer;float:left;height:19px;margin-left:20px;width:17px}
-#slide-next:hover{background:url(lib/images/sprite.png) -64px -30px}
-.page-title{border-bottom:1px solid #e5e5e5;display:block;font-size:30px;margin:0 0 30px;padding:0 0 15px}
-.shift-down .post-loop:first-child{margin-top:70px}
-.post-thumbnail{display:block;float:left;line-height:0;margin:0 15px 0 0;overflow:hidden;position:relative}
-.post-thumbnail.thumbnail-no-wrap{margin:0 0 15px}
-.post-thumbnail img{display:block;position:relative}
-.post-text h2{font-size:14px;margin-bottom:5px}
-.post-scores{float:right;width:80px}
-.post-scores .site-score,.post-scores .user-score{font-size:30px;height:40px;margin:0;padding:15px 0;text-align:center;width:80px}
-.post-date{float:left;font-weight:700;margin:5px 0 0 15px;width:80px}
-.post-meta{color:#999;float:left;font-size:11px;margin:0 0 20px;width:100%}
-.post-meta.post-tags{margin:5px 0 0}
-.single-post .post-meta.post-tags{margin:-15px 0 35px}
-ul#share-review-link,#share-review-link li{border:0;display:inline;list-style:none;margin:0;padding:0;position:relative;width:auto}
-ul#share-review{background:#fff;border:1px solid #e5e5e5;display:none;float:left;padding:0 15px 15px;position:absolute;right:0;top:20px;width:100px;z-index:2}
-#share-review li{float:left;list-style:none;margin:15px 0 0;padding:0}
-.wpfp-span{display:block;float:left;margin:0 0 10px;width:100%}
-.wpfp-link{-moz-border-radius:5px;-webkit-border-radius:5px;background:#2D5069;border-radius:5px;color:#fff;float:left;font-weight:700;line-height:13px;padding:5px 10px}
-.wpfp-link:hover{background:#273138;color:#fff}
-.attachment img{height:auto;max-width:100%}
-.attachment p{margin-top:12px}
-#dropdown-filter{border-bottom:1px dotted #e5e5e5;display:none;float:left;left:0;margin:0 0 30px;padding:0 0 15px;position:absolute;top:0;width:100%}
-.jqTransformSelectWrapper{float:left;height:14px;position:relative;width:45px}
-.jqTransformSelectWrapper div span{color:#d14836;cursor:pointer;float:none;font-size:12px;height:14px;overflow:hidden;position:absolute;white-space:nowrap}
-.jqTransformSelectWrapper a.jqTransformSelectOpen{background:url(lib/images/sprite.png) 0 -221px no-repeat;display:block;height:8px;position:absolute;right:25px;top:1px;width:9px}
-#content .jqTransformSelectWrapper ul{background-color:#fff;border:1px solid #e5e5e5;display:none;height:200px;left:0;list-style:none;margin:0;overflow:auto;overflow-y:auto;padding:0;position:absolute;top:20px;width:43px;z-index:10}
-.jqTransformSelectWrapper ul li{list-style:none;margin:0;padding:0}
-.jqTransformSelectWrapper ul a{color:#666;display:block;font-size:12px;padding:10px;text-decoration:none}
-.jqTransformSelectWrapper ul a.selected{color:#666}
-.jqTransformSelectWrapper ul a:hover,.jqTransformSelectWrapper ul a.selected:hover{background:#f5f5f5}
-#review-links{border-bottom:1px solid #e5e5e5;float:left;margin:0 0 30px;padding:0 0 15px;width:100%}
-#review-links ul{float:left;list-style:none;list-style-image:none;list-style-position:outside;margin:0;padding:0;width:100%}
-#review-links li{border-color:#e5e5e5;border-style:solid;border-width:0 0 0 1px;float:left;list-style:none;margin:0 0 0 15px;padding:0 0 0 15px}
-#review-links li:first-child{border:0;margin:0;padding:0}
-#review-left{float:left;margin:0 30px 0 0}
-#review-details{color:#999;float:left;font-size:11px;line-height:19px;width:100%}
-#more-images-link{display:block;float:left;font-size:11px;line-height:12px;margin:-5px 0 15px;text-align:center;width:100%}
-.site-score{color:#fff;float:left;font-size:50px;font-weight:700;height:60px;margin:0 0 15px;padding:20px 0;text-align:center;width:120px}
-.good-bad-panel{background:#f5f5f5;float:left;font-size:11px;height:70px;line-height:13px;margin:0 0 15px;padding:15px}
-.good-point{border-bottom:1px solid #ddd;float:left;height:25px;padding:0 0 10px;width:100%}
-.bad-point{float:left;height:25px;padding:10px 0 0;width:100%}
-.user-score{color:#fff;float:left;font-size:35px;font-weight:700;margin:0 20px 0 0;padding:10px 0;text-align:center;width:120px}
-.user-score .voted,.user-score .inactive{color:#fff!important}
-.user-voting{float:left;margin-top:20px}
-.user-voting-text{float:left;font-weight:700;width:100%}
-.review-image{float:left;margin:0 10px 10px 0}
-.video{background:#000;float:left;margin:0 0 30px}
-.video-icon{background:url(lib/images/video-icon.png) no-repeat;bottom:10px;height:20px;position:absolute;right:10px;width:20px;z-index:2}
-#related-items{float:left;margin:18px 0 12px;width:100%}
-.related-item{float:left;margin:0 0 0 30px;width:125px}
-.related-item .post-thumbnail img{height:auto;max-width:120px}
-.related-post-title{font-size:12px;font-weight:700;line-height:15px;margin:0}
-.related-post-cats,.related-post-cats a{color:#999;font-size:11px;margin-top:3px}
-.profile-avatar{background:#e5e5e5;float:left;padding:15px;text-align:center}
-.profile-avatar .avatar{display:block;margin:0 0 15px}
-.profile-details{background:#f5f5f5;float:left;min-height:87px;padding:15px;width:470px}
-.fullwidth .profile-details{width:800px}
-.edit-profile-link{height:12px}
-#edituser{padding:15px}
-#edituser h3{margin:0 0 20px}
-#edituser label{margin:5px 0 0 10px}
-.profile-box{float:left;margin:18px 0 0;width:590px}
-.profile-box h3{background:#e5e5e5;display:block;font-size:12px!important;margin:0!important;padding:15px}
-.profile-content{background:#f5f5f5;float:left;padding:15px 15px 0;width:560px}
-.fullwidth .profile-content{width:890px}
-.profile-item{float:left;line-height:19px;margin:0 0 10px;width:100%}
-.profile-item .post-thumbnail{margin-bottom:15px}
-.pp_content_container .pp_gallery ul a{height:auto;line-height:0;max-height:30px}
-.html5player{height:100%;width:100%}
-.accordion .panel{margin:0;overflow:hidden;position:relative;width:100%}
-h3.accordion-title{background:url(lib/images/sprite.png) 0 -157px no-repeat;font-size:20px;padding:0 0 0 25px}
-.panel-content{line-height:19px;padding:0 20px 20px 25px}
-.author-info{background:#f7f7f7;border:1px solid #e5e5e5;margin:20px 0;min-height:50px;padding:10px}
-.author-info .avatar{float:left;margin-right:10px}
-.author-info .author-meta{margin-left:60px}
-.author-info .author-name{float:left;font-weight:700;padding-bottom:10px}
-.author-info .author-links{color:#999;float:right;font-size:11px;padding-bottom:10px}
-.author-info .author-desc{font-size:11px;line-height:16px}
-blockquote{clear:both;color:#999;font-family:Georgia, "Times New Roman";font-size:16px;margin:20px 20px 10px;overflow:hidden;padding:5px 0 5px 15px}
-blockquote p{line-height:23px}
-.blockquote-left{float:left;margin:20px 20px 20px 0}
-.blockquote-right{float:right;margin:20px 0 20px 20px}
-.blockquote-right,.blockquote-left{color:#999;font-family:Georgia, "Times New Roman";font-size:16px;line-height:23px;padding:5px 0 5px 15px;width:30%}
-.wp-caption{max-width:100%;padding:0;position:relative}
-.wp-caption-text{font-size:11px;margin:5px 0 0}
-.columns{float:left;line-height:19px;position:relative}
-.blank{margin-right:4%}
-.two{width:48%}
-.three{width:30.66%}
-.four{width:22%}
-.five{width:16.8%}
-.onethird{width:32.64%}
-.twothirds{width:63.36%}
-.onefourth{width:24%}
-.threefourths{width:72%}
-.separate{margin-right:2%}
-.two.separate{width:49%}
-.five.separate{width:18.4%}
-.twothirds.separate{width:66%}
-.threefourths.separate{width:74.5%}
-.two.joint{width:50%}
-.five.joint{width:20%}
-.twothirds.joint{width:66.33%}
-.threefourths.joint{width:75%}
-.last{clear:right;margin-right:0}
-#contact-form{float:left;margin-bottom:12px;width:100%}
-#contact-form .textfield_label{margin:0 0 0 10px}
-#contact-form .contact-verify{float:left;margin-bottom:12px}
-#contact-form textarea{max-width:550px;width:90%}
-input[type=text].input-error,textarea.input-error{border-color:#ca4f4f}
-#contact-form .loader{background:url(lib/images/loader.gif) no-repeat right bottom;display:none;float:left;height:16px;padding:7px 0 0 10px;width:16px}
-.contact-success,.contact-error{display:block;font-weight:700;margin:0 0 20px;text-shadow:none}
-.sc-divider{border-bottom:1px solid #e5e5e5;clear:both;content:"";margin:30px 0;position:relative;width:100%}
-.sc-divider.top a{color:#999;cursor:pointer;float:right;font-size:8px;position:absolute;right:0;text-align:right;top:-15px;width:20px}
-.sc-divider.clear{background:none;border:0;height:10px;margin-bottom:0}
-.sc-divider.small.clear{border:0;margin:0}
-.gallery img{border:0!important;margin:5px 0}
-.gallery-caption{float:left;line-height:14px;margin:10px 0}
-.ui-tabs{padding:0!important;position:relative;top:-4px;zoom:1}
-.ui-tabs .ui-tabs-nav{display:block;margin:0;padding:0}
-.ui-tabs .ui-tabs-nav li{background-image:none;border:0;border-bottom:0!important;float:left;list-style:none!important;margin:0!important;padding:0;position:relative;top:1px;white-space:nowrap;z-index:1}
-.ui-tabs .ui-tabs-nav li a{float:left;font-weight:700;padding:10px;text-decoration:none}
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected{background-color:#fff;border:1px solid #e5e5e5;border-bottom-color:#fff;z-index:3}
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{color:#333;cursor:text}
-.ui-tabs .ui-tabs-nav li.ui-state-hover a{color:#333}
-.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{color:#999;cursor:pointer}
-.ui-tabs-nav .tabhead{cursor:pointer;display:block;font-size:12px!important;margin-bottom:0}
-.sc-tab-panel{background-color:#fff;border:1px solid #e5e5e5;height:inherit;line-height:19px;margin:0 0 10px;overflow:hidden;padding:15px;position:relative;z-index:2}
-.ui-tabs .ui-tabs-hide{display:none!important}
-h3.toggle{background:url(lib/images/sprite.png) 0 -157px no-repeat;cursor:pointer;font-size:20px;margin:0;padding:0 0 0 25px}
-h3.toggle a{display:block;text-decoration:none}
-.toggle-box{clear:both;margin:0 0 10px;overflow:hidden}
-.sc-video,.sc-video object,.sc-video embed,.sc-video iframe,.sc-video div,.sc-video video{max-width:100%}
-.sc-video .sc-video-inner{display:inline-block;margin:0 auto}
-.footer-widgets-border-left{float:left;height:10px;width:260px}
-.footer-widgets-border-right{background:#e5e5e5;float:left;height:10px;width:720px}
-#footer-widgets{-ms-filter:"progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#e5e5e5)";background:#fafafa;background-color:#fff;background-image:0 to(#e5e5e5));filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffffff,endColorstr=#e5e5e5);float:left;padding:30px 30px 0;width:920px}
-.footer-widget-outer{float:left;margin:0 0 0 30px}
-.footer-half{width:445px}
-.footer-third{width:286.6px}
-.footer-fourth{width:207.5px}
-.footer-widget-inner h3{font-size:14px;font-weight:700;margin-bottom:20px}
-.footer-widget-inner .textfield{width:125px}
-.footer-widget-inner textarea{height:75px}
-.footer-widget-inner .verify{width:30px}
-#footer-bottom{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;background:url(lib/images/stripes-bg.png) no-repeat center top;border-radius:0 0 5px 5px;float:left;padding:30px;position:relative;width:920px}
-#footer-bottom p{line-height:17px;margin-bottom:5px}
-#footer-bottom > .columns{font-size:11px;line-height:17px;margin-top:20px}
-#footer-bottom .columns.separate > div,#footer-bottom .columns.joint > div{-moz-border-radius:5px;-webkit-border-radius:5px;background:url(lib/images/footer-column-bg.png) repeat;border:0;border-radius:5px;padding:20px}
-.widget{float:left;margin-bottom:30px;width:100%}
-.widget h3{border-bottom:5px solid #e5e5e5;font-size:14px;font-weight:700;margin-bottom:20px;padding:0 0 10px}
-.textwidget{line-height:19px}
-#searchbar{float:left;margin:0 10px 0 0;width:150px}
-#searchsubmit{float:left;margin:0}
-#wp-calendar{margin:0 auto}
-#wp-calendar th,#wp-calendar td{padding:7px}
-#wp-calendar caption{margin-bottom:10px;text-align:right}
-.posts-widget .post-title{font-weight:700;line-height:15px}
-.posts-widget .site-score,.posts-widget .user-score{float:left;font-size:14px;height:15px;padding:7px 0;width:34px}
-.posts-widget .post-cats{color:#666;font-size:11px;margin-top:5px}
-#comments{float:left;margin:18px 0 0;width:100%}
-#comments .wp-pagenavi{margin-bottom:30px}
-#commentlist,#commentlist ul,#commentlist li{list-style:none;list-style-type:none;margin:0;padding:0}
-.comment-box{border-bottom:1px solid #e5e5e5;margin:0 0 20px;padding:0 0 20px;position:relative}
-.comment-avatar{float:left;margin-right:15px}
-.comment-meta{float:left;min-width:200px}
-.comment-date{color:#999;float:left;font-size:11px;margin:5px 0}
-.reply-link{float:left;font-size:11px;margin:5px 0}
-.comment-text{padding:10px 0 0}
-.comment-text .moderation{font-weight:700;margin:0 0 12px;text-shadow:none}
-.comment-user-score{float:left;position:absolute;right:0;top:0}
-.thumb-rating{margin-top:10px}
-.thumb-rating-text .gdthumbtext{color:#999;font-size:11px}
-.thumb-icons{color:#999;float:right;font-size:11px;margin:2px 0 0}
-.thumb-icons .gdthumb{margin:-3px 0 0}
-.thumb-icons .left{margin:0 10px 0 5px}
-#commentlist .children .comment{background:none;margin-left:20px}
-#commentlist .bypostauthor > .comment-box .post-author{display:block;font-size:11px}
-#commentform{float:left;margin:10px 0 12px;width:100%}
-#respond form{padding:10px 0 30px}
-#respond label{margin-left:10px}
-#respond textarea{height:150px;max-width:544px;width:544px}
-#cancel-comment-reply-link{display:block;float:right;font-size:11px;font-weight:400}
-.comment-score{display:none;float:left;margin:0 0 15px;width:100%}
-.comment-score-title{float:left;font-weight:700;margin:0 15px 0 0}
-.comment-score-stars{float:left;margin:-10px 0 0}
-.wp-pagenavi{float:left;margin:10px 0 0 -10px;width:100%}
-.wp-pagenavi span,.wp-pagenavi a,.wp-pagenavi.post-navi a span{display:block;float:left;font-weight:700;margin:0 10px;text-align:center}
-a,a:hover{text-decoration:none}
-h4,.review-panel h2{font-size:18px}
-p:last-child,#footer-bottom p:last-child{margin-bottom:0}
-p:first-child,.wp-pagenavi.post-navi{margin-bottom:12px}
-.text-center,.sc-video.aligncenter{text-align:center}
-legend,form label,#review-links li a,.profile-content a,#wp-calendar th{font-weight:700}
-.gp-table,.one,.one.separate,.one.joint{width:100%}
-.left,.sb-right #content,#search-panel,.post-text,#review-right,.user-score-stars,#edituser textarea,#contact-form .contact-submit,#searchform,.thumb-rating-text{float:left}
-.right,.sb-left #content{float:right}
-.fullwidth #sidebar,.no-js #scroller,#scroller #scroller-marquee .scroller-bullet:first-child,.hidden .post-scores,.jqTransformHidden,.review-panel,.user-score-stars .ratingtext,#edit-profile.hidden,.author .pp_social,.reply-link.hidden,.comment-text .ratingblock,.comment-text .thumb-rating,#commentlist .post-author,#commentform.hidden{display:none}
-#nav li:hover > .sub-menu,.no-js #search-panel:hover #search-box,.no-js #scroller-marquee,.no-js #share-review-link:hover ul#share-review,.no-js #dropdown-filter,.ie8 .sc-video .sc-video-inner,#commentform .comment-score{display:block}
-#user-details a:hover,#scroller a,.slide-caption h2 a:hover,#footer-bottom a:hover,#footer-bottom h2,#footer-bottom h3,#footer-bottom h4,#footer-bottom h5,#footer-bottom h6{color:#fff}
-#slider-wrapper .error a:hover,#review-links li a:hover{text-decoration:underline}
-.slide-small .post-scores,.posts-widget .post-text .post-scores{margin:0 0 0 15px;width:34px}
-.post-loop,#review-container{border-bottom:1px solid #e5e5e5;float:left;margin:0 0 20px;padding:0 0 20px;position:relative;width:100%}
-.post-loop:last-child,.post-text .post-meta,.profile-item .post-meta,.wp-caption img,.sc-divider.small,.wp-pagenavi.post-navi a span{margin:0}
-.post-meta a,.posts-widget .post-meta a,.reply-link a{color:#999}
-.post-meta a:hover,.related-post-cats a:hover,.posts-widget .post-cats a:hover,.posts-widget .post-meta a:hover,.reply-link a:hover{color:#434343}
-.order-by-text,.order-text,.comment-author{float:left;font-weight:700;margin-right:10px}
-#review-left .post-thumbnail,.related-item .post-thumbnail{margin:0 0 10px}
-#review-right #review-details,#footer-bottom > .columns:first-child{margin-top:0}
-#review-panels,.review-panel,#edituser p,.footer-widget-inner{float:left;width:100%}
-.site-score-title,.user-score-title{font-size:12px}
-.user-votes,.posts-widget .post-meta{font-size:11px;margin:5px 0 0}
-.user-score-stars .ratingblock,.no-js .toggle-box{display:block!important}
-#related-items h3,h3.comments,#respond h3{border-bottom:5px solid #e5e5e5;display:block;font-size:14px;margin:0 0 20px;padding:0 0 15px}
-#related-items div .related-item:first-child,#footer-widgets > div:first-child{margin-left:0}
-.fullwidth .profile-box,.footer-whole{width:920px}
-h3.ui-state-active.accordion-title,h3.toggle-active{background-position:0 -187px}
-.separate > div,.joint > div{border:1px solid #e5e5e5;padding:20px;position:relative}
-.three.separate,.onethird.separate{width:32%}
-.four.separate,.onefourth.separate{width:23.5%}
-.three.joint,.onethird.joint{width:33.33%}
-.four.joint,.onefourth.joint{width:25%}
+/*
+Theme Name: ASong2U
+Version: 1.0
+Description: Author: Author URI: Theme URI: License:
+License URI:
+Tags: buddypress
+*/
+/*************************** General Styling ***************************/
+/* Page Styling */
+body{color:#666;font-family:Arial, Tahoma, "Lucida Sans Unicode", "Lucida Grande";font-size:14px;font-weight:400;margin:0 auto;padding:0;position:relative;text-align:center}
+h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#333;font-weight:700;line-height:1;margin:0 0 20px;padding:0}
+h1{font-size:26px}
+h2{font-size:24px}
+h3{font-size:20px}
+h5{font-size:16px}
+h6{font-size:13px}
+p{line-height:19px;margin-bottom:12px}
+em{font-style:italic}
+.text-left{text-align:left}
+.text-right{text-align:right}
+.text-justify{text-align:justify}
+ol{margin:0;padding:0}
+ol li{line-height:19px;list-style:decimal;margin:0 0 0 20px;padding:0 0 10px}
+ul{list-style-type:none;margin:0;padding:0}
+.gp-list,.widget ul{list-style-type:square;margin:0 0 12px}
+.gp-list li,.widget li{line-height:19px;margin:0 0 0 20px;padding:10px 0 0}
+.gp-list li:first-child,.widget li:first-child{padding:0}
+input[type=text],body input[type=password],textarea,select{-moz-box-shadow:none;-webkit-box-shadow:none;background:#fff;border:1px solid #e5e5e5;box-shadow:none;font-family:Arial;font-size:12px;margin:0 0 5px;padding:7px}
+input[type=text]:focus,body input[type=password]:focus,textarea:focus{background:#fff;border:1px solid #999}
+textarea{resize:none}
+select{padding:3px}
+input[type=submit],input[type=reset],input[type=button],button{border:0;color:#fff;cursor:pointer;font-family:Arial;font-size:12px;font-weight:700;padding:7px 10px;text-align:center}
+input[type=radio],input[type=checkbox]{background:transparent;border:0}
+fieldset{margin:0;padding:20px}
+.gp-table th{border-bottom:1px solid #e5e5e5;font-weight:700;padding:10px}
+.gp-table td{border-bottom:1px solid #e5e5e5;font-size:12px;padding:10px}
+cite{float:right;padding:0 0 5px}
+hr{background:#e5e5e5;border:0;clear:both;height:1px;margin:20px 0;padding:0;position:relative;width:100%}
+pre{background:#f5f5f5;border-color:#e5e5e5;border-style:solid;border-width:0 0 0 3px;font-family:"Courier New";font-size:12px;line-height:19px;margin:12px 0 0;overflow:auto;padding:15px}
+code{background:#f5f5f5;border-color:#e5e5e5;border-style:solid;border-width:0 0 0 3px;clear:both;display:block;font-family:"Courier New";font-size:12px;line-height:19px;margin:12px 0 0;padding:5px 15px}
+.clear{clear:both;content:"";display:block;font-size:0;height:0;line-height:0;margin:0;padding:0;width:100%}
+.align-center,.aligncenter{clear:both;display:block;margin:20px auto;position:relative}
+.align-left,.alignleft{float:left;margin:4px 20px 5px 0;position:relative}
+.align-right,.alignright{float:right;margin:4px 0 5px 20px;position:relative}
+#page-wrapper{margin:0 auto;padding:30px 10px;position:relative;width:980px}
+#page-shadow{-moz-border-radius:5px;-moz-box-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-border-radius:5px;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.5);border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,0.5);position:relative;text-align:left;width:100%}
+#content-wrapper{-ms-filter:"progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#fafafa)";background:#fff;background-image:0 to(#fafafa));filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffffff,endColorstr=#fafafa);float:left;padding:30px;width:920px}
+#content{position:relative;width:590px}
+.fullwidth #content{float:left;width:920px}
+#sidebar{width:300px}
+.sb-right #sidebar{float:right;margin-left:30px}
+.sb-left #sidebar{float:left;margin-right:30px}
+#header{float:left;position:relative;width:100%}
+#header-bottom{background:url(lib/images/stripes-bg.png) no-repeat center top;float:left;padding:30px 30px 0;position:relative;width:920px}
+#logo{display:block;float:left;line-height:0;margin:0;position:relative}
+#logo a{line-height:0}
+#logo span{display:block;height:135px;left:0;position:relative;top:-15px;width:280px}
+#logo img{position:relative}
+#logo div{height:1px;text-indent:-9999px;width:1px}
+#header-content{float:right;text-align:center}
+#nav{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;float:left;padding:0 25px 0 15px;position:relative;width:940px;z-index:100}
+#nav ul,#nav ul ul{float:left;list-style-position:outside;list-style-type:none;position:relative}
+#nav ul:after{clear:both;content:".";display:block;height:0;visibility:hidden}
+#nav ul li{border-style:solid;border-width:1px;display:block;float:left;margin:0;padding:0;position:relative}
+#nav ul a{color:#fff;display:block;font-size:12px;font-weight:700;line-height:12px;padding:15px;text-shadow:1px 1px 0 #000}
+#nav .sub-menu{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;border-style:solid;border-width:0 1px 1px;display:none;left:-1px;margin:0;padding:5px 5px 10px;position:absolute;top:43px;width:200px;z-index:100}
+#nav .sub-menu li{background:none;border:0;height:auto;margin:0;padding:0;position:static}
+#nav .sub-menu a{display:block;float:left;height:auto;line-height:19px;margin:0;padding:5px 10px;width:170px}
+#nav ul .sub-menu li ul{left:180px;top:auto}
+#nav ul .sub-menu.align-right li ul{left:-200px;top:auto}
+#user-details{float:right;margin:15px 0 0}
+#user-details .login-name{color:#e5e5e5;float:left;font-weight:700;margin:1px 0 0;text-shadow:1px 1px 0 #000}
+#user-details a{color:#8bafce;float:left;font-weight:700;line-height:12px;margin:1px 0 0 15px;text-shadow:1px 1px 0 #000}
+#search-icon{background-image:url(lib/images/sprite.png);background-position:10px -108px;background-repeat:no-repeat;border-style:solid;border-width:1px;cursor:pointer;display:block;float:left;height:22px;margin:-15px 0 0 15px;padding:10px;width:13px}
+#search-box{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;border-style:solid;border-width:0 1px 1px;display:none;padding:20px;position:absolute;right:25px;top:44px;width:245px}
+#search-panel input{border:0}
+#social-wrapper{float:left;height:32px;position:relative;width:100%}
+#scroller{color:#fff;float:left;height:16px;line-height:16px;margin:6px 0 0 30px;overflow:hidden;text-shadow:1px 1px 0 #000}
+#scroller-title{color:#fff;float:left;font-weight:700}
+#scroller-marquee{display:none;float:left}
+.scroller-bullet{font-size:14px;margin:0 10px}
+#social-icons{background:url(lib/images/diag-right.png) left top no-repeat;float:right;padding:5px 30px 10px 50px}
+#social-icons a{display:block;float:left;height:17px;margin-left:15px;width:20px}
+.youtube-icon{background:url(lib/images/sprite.png) no-repeat 0 -57px}
+.youtube-icon:hover{background:url(lib/images/sprite.png) no-repeat 0 -87px}
+.facebook-icon{background:url(lib/images/sprite.png) no-repeat -36px -57px}
+.facebook-icon:hover{background:url(lib/images/sprite.png) no-repeat -36px -87px}
+.twitter-icon{background:url(lib/images/sprite.png) no-repeat -72px -57px}
+.twitter-icon:hover{background:url(lib/images/sprite.png) no-repeat -72px -87px}
+.dribbble-icon{background:url(lib/images/sprite.png) no-repeat -112px -57px}
+.dribbble-icon:hover{background:url(lib/images/sprite.png) no-repeat -112px -87px}
+.digg-icon{background:url(lib/images/sprite.png) no-repeat -141px -57px}
+.digg-icon:hover{background:url(lib/images/sprite.png) no-repeat -141px -87px}
+.vimeo-icon{background:url(lib/images/sprite.png) no-repeat -180px -57px}
+.vimeo-icon:hover{background:url(lib/images/sprite.png) no-repeat -180px -87px}
+.delicious-icon{background:url(lib/images/sprite.png) no-repeat -215px -57px}
+.delicious-icon:hover{background:url(lib/images/sprite.png) no-repeat -215px -87px}
+.rss-icon{background:url(lib/images/sprite.png) no-repeat -250px -57px}
+.rss-icon:hover{background:url(lib/images/sprite.png) no-repeat -250px -87px}
+.linkedin-icon{background:url(lib/images/sprite.png) no-repeat -320px -57px}
+.linkedin-icon:hover{background:url(lib/images/sprite.png) no-repeat -320px -87px}
+.googleplus-icon{background:url(lib/images/sprite.png) no-repeat -357px -57px}
+.googleplus-icon:hover{background:url(lib/images/sprite.png) no-repeat -357px -87px}
+#slider-wrapper{float:left;height:270px;overflow:hidden;padding:30px;position:relative;width:920px}
+#slider-wrapper .error{border-style:solid;border-width:1px;color:#fff;line-height:19px;padding:10px}
+.caroufredsel_wrapper{z-index:2}
+#slider{float:left;overflow:hidden;position:relative;z-index:2}
+.no-js #slider{min-width:5000px}
+.slide{float:left;height:220px;line-height:0;margin:40px 30px 0 0;overflow:hidden;position:relative;width:160px}
+.slide.slide-large{height:270px;margin:0 30px 0 0;width:350px}
+#slider-inner-bg{height:250px;position:absolute;right:0;top:40px;width:980px;z-index:1}
+.slide-caption{float:left;height:100%;margin-top:10px;position:relative;width:100%}
+.slide-caption h2,.slide-caption h2 a{color:#fff;display:block;float:left;font-size:12px;height:100%;line-height:19px;margin:0;text-shadow:1px 1px 0 #000;width:111px}
+.slide-caption h2 a{cursor:pointer}
+.slide-caption.hidden h2{width:160px}
+.slide-large .slide-caption{background:url(lib/images/slide-caption-bg.png) repeat;bottom:0;height:auto;left:0;min-height:58px;padding:20px;position:absolute;width:310px}
+.slide-large .slide-caption h2,.slide-large .slide-caption h2 a{font-size:16px;width:220px}
+.slide-large .slide-caption.hidden h2{width:310px}
+.slide-large .post-scores{width:80px}
+.slide-large .post-scores .site-score,.slide-large .post-scores .user-score{line-height:40px}
+.slide-small .post-scores .site-score,.slide-small .post-scores .user-score{font-size:14px;height:15px;line-height:14px;padding:7px 0;width:34px}
+#slider-nav{float:right;position:absolute;right:30px;top:10px}
+#slide-prev{background:url(lib/images/sprite.png) 0 0;cursor:pointer;float:left;height:19px;margin-left:20px;width:17px}
+#slide-prev:hover{background:url(lib/images/sprite.png) 0 -30px}
+#slide-move-outer{float:left;margin-left:20px}
+#slide-move-inner{background:url(lib/images/sprite.png) -35px 0;cursor:pointer;float:left;height:19px;width:12px}
+#slide-move-inner:hover{background:url(lib/images/sprite.png) -35px -30px}
+#slide-move-inner.play{background:url(lib/images/sprite.png) -100px 0}
+#slide-move-inner.play:hover{background:url(lib/images/sprite.png) -100px -30px}
+#slide-next{background:url(lib/images/sprite.png) -64px 0;cursor:pointer;float:left;height:19px;margin-left:20px;width:17px}
+#slide-next:hover{background:url(lib/images/sprite.png) -64px -30px}
+.page-title{border-bottom:1px solid #e5e5e5;display:block;font-size:30px;margin:0 0 30px;padding:0 0 15px}
+.shift-down .post-loop:first-child{margin-top:70px}
+.post-thumbnail{display:block;float:left;line-height:0;margin:0 15px 0 0;overflow:hidden;position:relative}
+.post-thumbnail.thumbnail-no-wrap{margin:0 0 15px}
+.post-thumbnail img{display:block;position:relative}
+.post-text h2{font-size:14px;margin-bottom:5px}
+.post-scores{float:right;width:80px}
+.post-scores .site-score,.post-scores .user-score{font-size:30px;height:40px;margin:0;padding:15px 0;text-align:center;width:80px}
+.post-date{float:left;font-weight:700;margin:5px 0 0 15px;width:80px}
+.post-meta{color:#999;float:left;font-size:11px;margin:0 0 20px;width:100%}
+.post-meta.post-tags{margin:5px 0 0}
+.single-post .post-meta.post-tags{margin:-15px 0 35px}
+ul#share-review-link,#share-review-link li{border:0;display:inline;list-style:none;margin:0;padding:0;position:relative;width:auto}
+ul#share-review{background:#fff;border:1px solid #e5e5e5;display:none;float:left;padding:0 15px 15px;position:absolute;right:0;top:20px;width:100px;z-index:2}
+#share-review li{float:left;list-style:none;margin:15px 0 0;padding:0}
+.wpfp-span{display:block;float:left;margin:0 0 10px;width:100%}
+.wpfp-link{-moz-border-radius:5px;-webkit-border-radius:5px;background:#2D5069;border-radius:5px;color:#fff;float:left;font-weight:700;line-height:13px;padding:5px 10px}
+.wpfp-link:hover{background:#273138;color:#fff}
+.attachment img{height:auto;max-width:100%}
+.attachment p{margin-top:12px}
+#dropdown-filter{border-bottom:1px dotted #e5e5e5;display:none;float:left;left:0;margin:0 0 30px;padding:0 0 15px;position:absolute;top:0;width:100%}
+.jqTransformSelectWrapper{float:left;height:14px;position:relative;width:45px}
+.jqTransformSelectWrapper div span{color:#d14836;cursor:pointer;float:none;font-size:12px;height:14px;overflow:hidden;position:absolute;white-space:nowrap}
+.jqTransformSelectWrapper a.jqTransformSelectOpen{background:url(lib/images/sprite.png) 0 -221px no-repeat;display:block;height:8px;position:absolute;right:25px;top:1px;width:9px}
+#content .jqTransformSelectWrapper ul{background-color:#fff;border:1px solid #e5e5e5;display:none;height:200px;left:0;list-style:none;margin:0;overflow:auto;overflow-y:auto;padding:0;position:absolute;top:20px;width:43px;z-index:10}
+.jqTransformSelectWrapper ul li{list-style:none;margin:0;padding:0}
+.jqTransformSelectWrapper ul a{color:#666;display:block;font-size:12px;padding:10px;text-decoration:none}
+.jqTransformSelectWrapper ul a.selected{color:#666}
+.jqTransformSelectWrapper ul a:hover,.jqTransformSelectWrapper ul a.selected:hover{background:#f5f5f5}
+#review-links{border-bottom:1px solid #e5e5e5;float:left;margin:0 0 30px;padding:0 0 15px;width:100%}
+#review-links ul{float:left;list-style:none;list-style-image:none;list-style-position:outside;margin:0;padding:0;width:100%}
+#review-links li{border-color:#e5e5e5;border-style:solid;border-width:0 0 0 1px;float:left;list-style:none;margin:0 0 0 15px;padding:0 0 0 15px}
+#review-links li:first-child{border:0;margin:0;padding:0}
+#review-left{float:left;margin:0 30px 0 0}
+#review-details{color:#999;float:left;font-size:11px;line-height:19px;width:100%}
+#more-images-link{display:block;float:left;font-size:11px;line-height:12px;margin:-5px 0 15px;text-align:center;width:100%}
+.site-score{color:#fff;float:left;font-size:50px;font-weight:700;height:60px;margin:0 0 15px;padding:20px 0;text-align:center;width:120px}
+.good-bad-panel{background:#f5f5f5;float:left;font-size:11px;height:70px;line-height:13px;margin:0 0 15px;padding:15px}
+.good-point{border-bottom:1px solid #ddd;float:left;height:25px;padding:0 0 10px;width:100%}
+.bad-point{float:left;height:25px;padding:10px 0 0;width:100%}
+.user-score{color:#fff;float:left;font-size:35px;font-weight:700;margin:0 20px 0 0;padding:10px 0;text-align:center;width:120px}
+.user-score .voted,.user-score .inactive{color:#fff!important}
+.user-voting{float:left;margin-top:20px}
+.user-voting-text{float:left;font-weight:700;width:100%}
+.review-image{float:left;margin:0 10px 10px 0}
+.video{background:#000;float:left;margin:0 0 30px}
+.video-icon{background:url(lib/images/video-icon.png) no-repeat;bottom:10px;height:20px;position:absolute;right:10px;width:20px;z-index:2}
+#related-items{float:left;margin:18px 0 12px;width:100%}
+.related-item{float:left;margin:0 0 0 30px;width:125px}
+.related-item .post-thumbnail img{height:auto;max-width:120px}
+.related-post-title{font-size:12px;font-weight:700;line-height:15px;margin:0}
+.related-post-cats,.related-post-cats a{color:#999;font-size:11px;margin-top:3px}
+.profile-avatar{background:#e5e5e5;float:left;padding:15px;text-align:center}
+.profile-avatar .avatar{display:block;margin:0 0 15px}
+.profile-details{background:#f5f5f5;float:left;min-height:87px;padding:15px;width:470px}
+.fullwidth .profile-details{width:800px}
+.edit-profile-link{height:12px}
+#edituser{padding:15px}
+#edituser h3{margin:0 0 20px}
+#edituser label{margin:5px 0 0 10px}
+.profile-box{float:left;margin:18px 0 0;width:590px}
+.profile-box h3{background:#e5e5e5;display:block;font-size:12px!important;margin:0!important;padding:15px}
+.profile-content{background:#f5f5f5;float:left;padding:15px 15px 0;width:560px}
+.fullwidth .profile-content{width:890px}
+.profile-item{float:left;line-height:19px;margin:0 0 10px;width:100%}
+.profile-item .post-thumbnail{margin-bottom:15px}
+.pp_content_container .pp_gallery ul a{height:auto;line-height:0;max-height:30px}
+.html5player{height:100%;width:100%}
+.accordion .panel{margin:0;overflow:hidden;position:relative;width:100%}
+h3.accordion-title{background:url(lib/images/sprite.png) 0 -157px no-repeat;font-size:20px;padding:0 0 0 25px}
+.panel-content{line-height:19px;padding:0 20px 20px 25px}
+.author-info{background:#f7f7f7;border:1px solid #e5e5e5;margin:20px 0;min-height:50px;padding:10px}
+.author-info .avatar{float:left;margin-right:10px}
+.author-info .author-meta{margin-left:60px}
+.author-info .author-name{float:left;font-weight:700;padding-bottom:10px}
+.author-info .author-links{color:#999;float:right;font-size:11px;padding-bottom:10px}
+.author-info .author-desc{font-size:11px;line-height:16px}
+blockquote{clear:both;color:#999;font-family:Georgia, "Times New Roman";font-size:16px;margin:20px 20px 10px;overflow:hidden;padding:5px 0 5px 15px}
+blockquote p{line-height:23px}
+.blockquote-left{float:left;margin:20px 20px 20px 0}
+.blockquote-right{float:right;margin:20px 0 20px 20px}
+.blockquote-right,.blockquote-left{color:#999;font-family:Georgia, "Times New Roman";font-size:16px;line-height:23px;padding:5px 0 5px 15px;width:30%}
+.wp-caption{max-width:100%;padding:0;position:relative}
+.wp-caption-text{font-size:11px;margin:5px 0 0}
+.columns{float:left;line-height:19px;position:relative}
+.blank{margin-right:4%}
+.two{width:48%}
+.three{width:30.66%}
+.four{width:22%}
+.five{width:16.8%}
+.onethird{width:32.64%}
+.twothirds{width:63.36%}
+.onefourth{width:24%}
+.threefourths{width:72%}
+.separate{margin-right:2%}
+.two.separate{width:49%}
+.five.separate{width:18.4%}
+.twothirds.separate{width:66%}
+.threefourths.separate{width:74.5%}
+.two.joint{width:50%}
+.five.joint{width:20%}
+.twothirds.joint{width:66.33%}
+.threefourths.joint{width:75%}
+.last{clear:right;margin-right:0}
+#contact-form{float:left;margin-bottom:12px;width:100%}
+#contact-form .textfield_label{margin:0 0 0 10px}
+#contact-form .contact-verify{float:left;margin-bottom:12px}
+#contact-form textarea{max-width:550px;width:90%}
+input[type=text].input-error,textarea.input-error{border-color:#ca4f4f}
+#contact-form .loader{background:url(lib/images/loader.gif) no-repeat right bottom;display:none;float:left;height:16px;padding:7px 0 0 10px;width:16px}
+.contact-success,.contact-error{display:block;font-weight:700;margin:0 0 20px;text-shadow:none}
+.sc-divider{border-bottom:1px solid #e5e5e5;clear:both;content:"";margin:30px 0;position:relative;width:100%}
+.sc-divider.top a{color:#999;cursor:pointer;float:right;font-size:8px;position:absolute;right:0;text-align:right;top:-15px;width:20px}
+.sc-divider.clear{background:none;border:0;height:10px;margin-bottom:0}
+.sc-divider.small.clear{border:0;margin:0}
+.gallery img{border:0!important;margin:5px 0}
+.gallery-caption{float:left;line-height:14px;margin:10px 0}
+.ui-tabs{padding:0!important;position:relative;top:-4px;zoom:1}
+.ui-tabs .ui-tabs-nav{display:block;margin:0;padding:0}
+.ui-tabs .ui-tabs-nav li{background-image:none;border:0;border-bottom:0!important;float:left;list-style:none!important;margin:0!important;padding:0;position:relative;top:1px;white-space:nowrap;z-index:1}
+.ui-tabs .ui-tabs-nav li a{float:left;font-weight:700;padding:10px;text-decoration:none}
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected{background-color:#fff;border:1px solid #e5e5e5;border-bottom-color:#fff;z-index:3}
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{color:#333;cursor:text}
+.ui-tabs .ui-tabs-nav li.ui-state-hover a{color:#333}
+.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{color:#999;cursor:pointer}
+.ui-tabs-nav .tabhead{cursor:pointer;display:block;font-size:12px!important;margin-bottom:0}
+.sc-tab-panel{background-color:#fff;border:1px solid #e5e5e5;height:inherit;line-height:19px;margin:0 0 10px;overflow:hidden;padding:15px;position:relative;z-index:2}
+.ui-tabs .ui-tabs-hide{display:none!important}
+h3.toggle{background:url(lib/images/sprite.png) 0 -157px no-repeat;cursor:pointer;font-size:20px;margin:0;padding:0 0 0 25px}
+h3.toggle a{display:block;text-decoration:none}
+.toggle-box{clear:both;margin:0 0 10px;overflow:hidden}
+.sc-video,.sc-video object,.sc-video embed,.sc-video iframe,.sc-video div,.sc-video video{max-width:100%}
+.sc-video .sc-video-inner{display:inline-block;margin:0 auto}
+.footer-widgets-border-left{float:left;height:10px;width:260px}
+.footer-widgets-border-right{background:#e5e5e5;float:left;height:10px;width:720px}
+#footer-widgets{-ms-filter:"progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffffff, endColorstr=#e5e5e5)";background:#fafafa;background-color:#fff;background-image:0 to(#e5e5e5));filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffffff,endColorstr=#e5e5e5);float:left;padding:30px 30px 0;width:920px}
+.footer-widget-outer{float:left;margin:0 0 0 30px}
+.footer-half{width:445px}
+.footer-third{width:286.6px}
+.footer-fourth{width:207.5px}
+.footer-widget-inner h3{font-size:14px;font-weight:700;margin-bottom:20px}
+.footer-widget-inner .textfield{width:125px}
+.footer-widget-inner textarea{height:75px}
+.footer-widget-inner .verify{width:30px}
+#footer-bottom{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;background:url(lib/images/stripes-bg.png) no-repeat center top;border-radius:0 0 5px 5px;float:left;padding:30px;position:relative;width:920px}
+#footer-bottom p{line-height:17px;margin-bottom:5px}
+#footer-bottom > .columns{font-size:11px;line-height:17px;margin-top:20px}
+#footer-bottom .columns.separate > div,#footer-bottom .columns.joint > div{-moz-border-radius:5px;-webkit-border-radius:5px;background:url(lib/images/footer-column-bg.png) repeat;border:0;border-radius:5px;padding:20px}
+.widget{float:left;margin-bottom:30px;width:100%}
+.widget h3{border-bottom:5px solid #e5e5e5;font-size:14px;font-weight:700;margin-bottom:20px;padding:0 0 10px}
+.textwidget{line-height:19px}
+#searchbar{float:left;margin:0 10px 0 0;width:150px}
+#searchsubmit{float:left;margin:0}
+#wp-calendar{margin:0 auto}
+#wp-calendar th,#wp-calendar td{padding:7px}
+#wp-calendar caption{margin-bottom:10px;text-align:right}
+.posts-widget .post-title{font-weight:700;line-height:15px}
+.posts-widget .site-score,.posts-widget .user-score{float:left;font-size:14px;height:15px;padding:7px 0;width:34px}
+.posts-widget .post-cats{color:#666;font-size:11px;margin-top:5px}
+#comments{float:left;margin:18px 0 0;width:100%}
+#comments .wp-pagenavi{margin-bottom:30px}
+#commentlist,#commentlist ul,#commentlist li{list-style:none;list-style-type:none;margin:0;padding:0}
+.comment-box{border-bottom:1px solid #e5e5e5;margin:0 0 20px;padding:0 0 20px;position:relative}
+.comment-avatar{float:left;margin-right:15px}
+.comment-meta{float:left;min-width:200px}
+.comment-date{color:#999;float:left;font-size:11px;margin:5px 0}
+.reply-link{float:left;font-size:11px;margin:5px 0}
+.comment-text{padding:10px 0 0}
+.comment-text .moderation{font-weight:700;margin:0 0 12px;text-shadow:none}
+.comment-user-score{float:left;position:absolute;right:0;top:0}
+.thumb-rating{margin-top:10px}
+.thumb-rating-text .gdthumbtext{color:#999;font-size:11px}
+.thumb-icons{color:#999;float:right;font-size:11px;margin:2px 0 0}
+.thumb-icons .gdthumb{margin:-3px 0 0}
+.thumb-icons .left{margin:0 10px 0 5px}
+#commentlist .children .comment{background:none;margin-left:20px}
+#commentlist .bypostauthor > .comment-box .post-author{display:block;font-size:11px}
+#commentform{float:left;margin:10px 0 12px;width:100%}
+#respond form{padding:10px 0 30px}
+#respond label{margin-left:10px}
+#respond textarea{height:30px;max-width:627px;width:627px}
+#cancel-comment-reply-link{display:block;float:right;font-size:11px;font-weight:400}
+.comment-score{display:none;float:left;margin:0 0 15px;width:100%}
+.comment-score-title{float:left;font-weight:700;margin:0 15px 0 0}
+.comment-score-stars{float:left;margin:-10px 0 0}
+.wp-pagenavi{float:left;margin:10px 0 0 -10px;width:100%}
+.wp-pagenavi span,.wp-pagenavi a,.wp-pagenavi.post-navi a span{display:block;float:left;font-weight:700;margin:0 10px;text-align:center}
+a,a:hover{text-decoration:none}
+h4,.review-panel h2{font-size:18px}
+p:last-child,#footer-bottom p:last-child{margin-bottom:0}
+p:first-child,.wp-pagenavi.post-navi{margin-bottom:12px}
+.text-center,.sc-video.aligncenter{text-align:center}
+legend,form label,#review-links li a,.profile-content a,#wp-calendar th{font-weight:700}
+.gp-table,.one,.one.separate,.one.joint{width:100%}
+.left,.sb-right #content,#search-panel,.post-text,#review-right,.user-score-stars,#edituser textarea,#contact-form .contact-submit,#searchform,.thumb-rating-text{float:left}
+.right,.sb-left #content{float:right}
+.fullwidth #sidebar,.no-js #scroller,#scroller #scroller-marquee .scroller-bullet:first-child,.hidden .post-scores,.jqTransformHidden,.review-panel,.user-score-stars .ratingtext,#edit-profile.hidden,.author .pp_social,.reply-link.hidden,.comment-text .ratingblock,.comment-text .thumb-rating,#commentlist .post-author,#commentform.hidden{display:none}
+#nav li:hover > .sub-menu,.no-js #search-panel:hover #search-box,.no-js #scroller-marquee,.no-js #share-review-link:hover ul#share-review,.no-js #dropdown-filter,.ie8 .sc-video .sc-video-inner,#commentform .comment-score{display:block}
+#user-details a:hover,#scroller a,.slide-caption h2 a:hover,#footer-bottom a:hover,#footer-bottom h2,#footer-bottom h3,#footer-bottom h4,#footer-bottom h5,#footer-bottom h6{color:#fff}
+#slider-wrapper .error a:hover,#review-links li a:hover{text-decoration:underline}
+.slide-small .post-scores,.posts-widget .post-text .post-scores{margin:0 0 0 15px;width:34px}
+.post-loop,#review-container{border-bottom:1px solid #e5e5e5;float:left;margin:0 0 20px;padding:0 0 20px;position:relative;width:100%}
+.post-loop:last-child,.post-text .post-meta,.profile-item .post-meta,.wp-caption img,.sc-divider.small,.wp-pagenavi.post-navi a span{margin:0}
+.post-meta a,.posts-widget .post-meta a,.reply-link a{color:#999}
+.post-meta a:hover,.related-post-cats a:hover,.posts-widget .post-cats a:hover,.posts-widget .post-meta a:hover,.reply-link a:hover{color:#434343}
+.order-by-text,.order-text,.comment-author{float:left;font-weight:700;margin-right:10px}
+#review-left .post-thumbnail,.related-item .post-thumbnail{margin:0 0 10px}
+#review-right #review-details,#footer-bottom > .columns:first-child{margin-top:0}
+#review-panels,.review-panel,#edituser p,.footer-widget-inner{float:left;width:100%}
+.site-score-title,.user-score-title{font-size:12px}
+.user-votes,.posts-widget .post-meta{font-size:11px;margin:5px 0 0}
+.user-score-stars .ratingblock,.no-js .toggle-box{display:block!important}
+#related-items h3,h3.comments,#respond h3{border-bottom:5px solid #e5e5e5;display:block;font-size:14px;margin:0 0 20px;padding:0 0 15px}
+#related-items div .related-item:first-child,#footer-widgets > div:first-child{margin-left:0}
+.fullwidth .profile-box,.footer-whole{width:920px}
+h3.ui-state-active.accordion-title,h3.toggle-active{background-position:0 -187px}
+.separate > div,.joint > div{border:1px solid #e5e5e5;padding:20px;position:relative}
+.three.separate,.onethird.separate{width:32%}
+.four.separate,.onefourth.separate{width:23.5%}
+.three.joint,.onethird.joint{width:33.33%}
+.four.joint,.onefourth.joint{width:25%}
.footer-widget-inner li,#footer-bottom li,.widget li{list-style-image:none;list-style-type:none;margin:0}
\ No newline at end of file
diff --git a/wp-content/themes/score/video-slider.bak.php b/wp-content/themes/score/video-slider.bak.php
new file mode 100644
index 0000000..0ea75a5
--- /dev/null
+++ b/wp-content/themes/score/video-slider.bak.php
@@ -0,0 +1,196 @@
+
+
+current_component == BP_DEDICATION_SLUG )) {
+ $posts_per_page = $theme_video_slides;
+
+ $dedication_orderby = "date";
+ $dedication_order = "DESC";
+ $category_name = 'dedication';
+ $post_status = array('publish', 'private');
+
+ $args = array(
+ 'post_type' => array('post'),
+ 'order' => $dedication_order,
+ 'orderby' => $dedication_orderby,
+ 'posts_per_page' => $posts_per_page, //-1,
+ 'post_status' => $post_status,
+ 'category_name' => $category_name,
+ );
+ query_posts($args);
+}
+
+if (is_singular()) {
+ //
+}
+
+if (have_posts()) {
+ $slide_counter = 0;
+ $urls_video = array();
+
+?>
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+ current_component == BP_DEDICATION_SLUG ) {
+ if (($displayed_id != $gp_settings['from_user_id']) && ($displayed_id != $gp_settings['to_user_id'])) {
+ continue; // me salto esta dedicatoria
+ }
+ }
+
+ // Página de inicio / página del video: Usuario actual puede ver la dedicatoria?
+ if ($post->post_status == 'private') {
+ if (($current_user->ID != $gp_settings['from_user_id']) && ($current_user->ID != $gp_settings['to_user_id'])) {
+ continue; // me salto esta dedicatoria
+ }
+ }
+
+ $video = $gp_settings['video'];
+
+ if ($_ishome) {
+ if ($theme_homepage_not_repeat_videos) {
+ // Si la URL del video ya ha salido en una dedicatoria anterior, me la salto
+ if (in_array($video, $urls_video)) {
+ continue;
+ }
+ }
+ }
+
+ $urls_video[] = $video;
+
+ // Video Type
+ $vimeo = strpos($video, "vimeo.com");
+ $yt1 = strpos($video, "youtube.com");
+ $yt2 = strpos($video, "youtu.be");
+
+ if (($vimeo) OR ($yt1) OR ($yt2)) {
+ if ($yt2) { //youtu.be
+ $video_id = substr(parse_url($video, PHP_URL_PATH), 1);
+ $data_type = 'youtube_single';
+ $data_path = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?v=2&alt=jsonc';
+ }
+ if ($yt1) { //youtube.com
+ $video = parse_str(parse_url($video, PHP_URL_QUERY), $my_array_of_vars);
+ $video_id = $my_array_of_vars['v'];
+ $data_type = 'youtube_single';
+ $data_path = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?v=2&alt=jsonc';
+ }
+ if ($vimeo) { //vimeo.com
+ $video_id = substr(parse_url($video, PHP_URL_PATH), 1);
+ $data_type = 'vimeo_single';
+ $data_path = 'http://vimeo.com/api/v2/video/' . $video_id . '.json';
+ }
+ ?>
+ -
+
+
+
+
+
+
+
+
+
+ FROM:
+
+ TO:
+
+
+
+
+
+
+
+ 1) { ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/wp-content/themes/score/video-slider.php b/wp-content/themes/score/video-slider.php
index d0c2bfe..3cf2c52 100644
--- a/wp-content/themes/score/video-slider.php
+++ b/wp-content/themes/score/video-slider.php
@@ -10,19 +10,16 @@ global $current_user, $bp;
get_currentuserinfo();
?>
+
current_component == BP_DEDICATION_SLUG )) {
- $posts_per_page = $theme_video_slides;
-
- $dedication_orderby = "date";
- $dedication_order = "DESC";
+ $dedication_orderby = "rand";
$category_name = 'dedication';
- $post_status = array('publish', 'private');
+ $post_status = array('publish');
$args = array(
'post_type' => array('post'),
- 'order' => $dedication_order,
'orderby' => $dedication_orderby,
'posts_per_page' => -1,
'post_status' => $post_status,
@@ -36,10 +33,9 @@ if (is_singular()) {
}
if (have_posts()) {
- $slide_counter = 0;
- $urls_video = array();
-?>
+?>
+
>
@@ -62,15 +58,9 @@ if (have_posts()) {
-
post_status == 'private') {
- if (($current_user->ID != $gp_settings['from_user_id']) && ($current_user->ID != $gp_settings['to_user_id'])) {
- continue; // me salto esta dedicatoria
- }
- }
-
- $video = $gp_settings['video'];
-
- if ($_ishome) {
- if ($theme_homepage_not_repeat_videos) {
- // Si la URL del video ya ha salido en una dedicatoria anterior, me la salto
- if (in_array($video, $urls_video)) {
- continue;
- }
- }
- }
-
- $urls_video[] = $video;
-
- // Video Type
- $vimeo = strpos($video, "vimeo.com");
- $yt1 = strpos($video, "youtube.com");
- $yt2 = strpos($video, "youtu.be");
-
- if (($vimeo) OR ($yt1) OR ($yt2)) {
- if ($yt2) { //youtu.be
- $video_id = substr(parse_url($video, PHP_URL_PATH), 1);
- $data_type = 'youtube_single';
- $data_path = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?v=2&alt=jsonc';
- }
- if ($yt1) { //youtube.com
- $video = parse_str(parse_url($video, PHP_URL_QUERY), $my_array_of_vars);
- $video_id = $my_array_of_vars['v'];
- $data_type = 'youtube_single';
- $data_path = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?v=2&alt=jsonc';
- }
- if ($vimeo) { //vimeo.com
- $video_id = substr(parse_url($video, PHP_URL_PATH), 1);
- $data_type = 'vimeo_single';
- $data_path = 'http://vimeo.com/api/v2/video/' . $video_id . '.json';
- }
- ?>
- -
-
-
-
-
-
-
-
-
-
- FROM:
-
- TO:
-
-
-
-
+ ?>
+ - ' data-path=''>
+
+
+
+
+
+
+
+
+
+ FROM:
+
+ TO:
+
+
+
- 1) { ?>
-
-
-
+
@@ -176,7 +119,7 @@ if (have_posts()) {
-
+
-