Page 1 of 2

Integration with AWS streaming and S2

PostPosted: January 7th, 2012, 12:57 am
by lostinla
Allow me to ramble a bit...
Been working on this site forever. One of the last pieces of the puzzle is giving the user the exact same content at level 0 and level 1... except for inline videos streamed from AWS Cloudfront. I am using the JW plugin. I get the shortcodes for presenting the player for level 1 vs. something about upgrading to level 1 paypal button otherwise.
My problem is with making the AWS work (apparently). I went through all the configuration per what directions I could find. S2 is telling me they have configured everything correctly with AWS. I can look at the AWS console and see several streaming distros set up by s2. But each time the player is telling me it can't find the file.
Grrr.....

This is occuring on the root site on a multisite installation of wordpress, with bp installed in the root also. Everything's working the way it's supposed to. Now here's my next dilemma: I need to set up the same thing on several sub-sites, using the same membership and users and all from the S2 on the root site. I'm sharing the users so that it working so far, but it's only this inline video content that needs to be managed by membership level via S2 - and for all the sub-sites as well. Am I attempting something absurd here?

Any help would be appreciated. For some reason I'm not finding much luck re: any kind of documentation for the AWS integration other than what's in the plugin itself.

With a grateful heart....
Lost

Re: Integration with AWS streaming and S2

PostPosted: January 15th, 2012, 12:01 am
by Jason Caldwell
Thanks for the heads up on this thread.
~ I apologize for the delayed response.
Your ticket was escalated to me and I fell behind.

the AWS console and see several streaming distros set up by s2. But each time the player is telling me it can't find the file.
Grrr.....
OK. Can I please see the code that you're using to introduce the video? If this is not working for you, we'll need to have a look at the code you've used to implement your JW Player. You mentioned that you were using the JW Player plugin, is that correct? So you're dealing with Shortcodes? Can we see what you've got please?

Re: Integration with AWS streaming and S2

PostPosted: January 15th, 2012, 2:55 pm
by lostinla
ok... i tried it with the code from the S2 module and the player:

<div id="jw-container">JW Player® appears here.</div>
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<?php /* A direct URL to the RTMP source; counting the file against the current User in real-time. */
$cfg = array ("file_download" => "firstpro.mp4", "url_to_storage_source" => true, "count_against_user" => true); ?>

<?php /* API Function `s2member_file_download_url()` returns false if access is denied to the current User. */
if (($mp4 = s2member_file_download_url ($cfg, "get-streamer-array"))) { ?>

<script type="text/javascript">
jwplayer("jw-container").setup({modes: /* JW Player®. */
[
/* First try real-time streaming with Flash® player. */
{type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
config: {streamer: "<?php echo $mp4["rtmp://s2i3dc1ik394g8.cloudfront.net/cfx/st"]; ?>", file: "<?php echo $mp4["firstpro.mp4"]; ?>"}},
;
</script>

<?php } else /* Access is denied to the current User. */ { ?>
Sorry, you do NOT have access to this file.
<?php } ?>

BTW: tried it with firstpro.mov too....

Then I switched to the plugin and tried it with their setup thing just to see if I could get it working....

<div id="container">Loading the player ...</div>

<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "/assets/player.swf",
file: "firstpro.mp4",
height: 270,
provider: "rtmp",
streamer: "rtmp://s2i3dc1ik394g8.cloudfront.net/cfx/st",
width: 480
});
</script>

I tired several permutations and plugins that were supposed to allow and handle the php... None of them came close and some made it worse. Nothing seemed to come closer to actually playing the stream...

I am doing this on the root site in a multisite or network setup, but I'm not married to it. In fact I'm playing with implementing everything in a single site or non-network situation on a test network. Getting the same results.
I'm a network and security geek trying to code. So my first instinct is that I'm doing the code wrong... lol

Lost

btw... the crossdomain.xml on the aws that the s2 created is completely empty. Is it supposed to be like that?

Re: Integration with AWS streaming and S2

PostPosted: January 15th, 2012, 6:46 pm
by Jason Caldwell
This code will not work because protected files require authenticated links produced by s2Member. Hard coding a direct reference to the file as it exists in your CloudFront distribution will result in nothing.
Code: Select all
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "/assets/player.swf",
file: "firstpro.mp4",
height: 270,
provider: "rtmp",
streamer: "rtmp://s2i3dc1ik394g8.cloudfront.net/cfx/st",
width: 480
});
</script>


This code is incorrect. For instance, this is wrong: <?php echo $mp4["rtmp://s2i3dc1ik394g8.cloudfront.net/cfx/st"]; ?>
Code: Select all
<div id="jw-container">JW Player® appears here.</div>
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<?php /* A direct URL to the RTMP source; counting the file against the current User in real-time. */
$cfg = array ("file_download" => "firstpro.mp4", "url_to_storage_source" => true, "count_against_user" => true); ?>

<?php /* API Function `s2member_file_download_url()` returns false if access is denied to the current User. */
if (($mp4 = s2member_file_download_url ($cfg, "get-streamer-array"))) { ?>

<script type="text/javascript">
jwplayer("jw-container").setup({modes: /* JW Player®. */
[
/* First try real-time streaming with Flash® player. */
{type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
config: {streamer: "<?php echo $mp4["rtmp://s2i3dc1ik394g8.cloudfront.net/cfx/st"]; ?>", file: "<?php echo $mp4["firstpro.mp4"]; ?>"}},
;
</script>

<?php } else /* Access is denied to the current User. */ { ?>
Sorry, you do NOT have access to this file.
<?php } ?>



You'll want to have this please. Same as the example code provided by s2Member. In your case, all that should be changed is the location of the video file. Nothing else.
Code: Select all
<div id="jw-container">JW Player® appears here.</div>
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<?php /* A direct URL to the RTMP source; counting the file against the current User in real-time. */
$cfg = array ("file_download" => "firstpro.mp4", "url_to_storage_source" => true, "count_against_user" => true); ?>

<?php /* API Function `s2member_file_download_url()` returns false if access is denied to the current User. */
if (($mp4 = s2member_file_download_url ($cfg, "get-streamer-array"))) { ?>

    <script type="text/javascript">
        jwplayer("jw-container").setup({modes: /* JW Player®. */
        [
            /* First try real-time streaming with Flash® player. */
            {type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
                config: {streamer: "<?php echo $mp4["streamer"]; ?>", file: "<?php echo $mp4["file"]; ?>"}},
        
            /* Else, try an HTML5 video tag. */
            {type: "html5", provider: "video",
                config: {file: "<?php echo $mp4["url"]; ?>"}},
        
            /* Else, this is a safe fallback. */
            {type: "download", /* Download the file. */
                config: {file: "<?php echo $mp4["url"]; ?>"}}
        ],
        /* Set video dimensions. */ width: 480, height: 270
        });
    </script>

<?php } else /* Access is denied to the current User. */ { ?>
    Sorry, you do NOT have access to this file.
<?php } ?>

Re: Integration with AWS streaming and S2

PostPosted: January 15th, 2012, 9:07 pm
by lostinla
Okay... I tried the code just as you advised... I can see where I tried to do too much with my coding idiocy...lol... now I"m getting "Sorry you do not have access to this file"
Any ideas? It IS something different.... progress?

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 8:30 am
by Jason Caldwell
Very welcome.
lostinla wrote:Okay... I tried the code just as you advised... I can see where I tried to do too much with my coding idiocy...lol... now I"m getting "Sorry you do not have access to this file"
Any ideas? It IS something different.... progress?
This would indicate to me that you were testing while not logged-in perhaps? That error indicates that your configuration of s2Member does not allow the current User/Member to view that content.

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 11:23 am
by lostinla
So would it be a problem if I was logged in and testing as an admin, and getting that message?

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 11:28 am
by Jason Caldwell
No, if you're logged in as the admin, you should have no trouble. Here is something else that comes to mind. Have you configured your Basic Download Restrictions for s2Member yet? As a security precaution, s2Member does not allow it's File Download system to function at all if you have not configured any Basic Download Restrictions. See: s2Member -> Download Options -> Basic Download Restrictions.

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 11:56 am
by lostinla
1000 downloads every 1 day for every level.....

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 11:59 am
by Jason Caldwell
If this problem continues, please post the code that is used to replicate this (i.e. the code that you ended up with, which is resulting in this issue). Thanks!

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 12:03 pm
by lostinla
Here's what I'm using....

<div id="jw-container">JW Player® appears here.</div>
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<?php /* A direct URL to the RTMP source; counting the file against the current User in real-time. */
$cfg = array ("file_download" => "firstpro.mp4", "url_to_storage_source" => true, "count_against_user" => true); ?>

<?php /* API Function `s2member_file_download_url()` returns false if access is denied to the current User. */
if (($mp4 = s2member_file_download_url ($cfg, "get-streamer-array"))) { ?>

<script type="text/javascript">
jwplayer("jw-container").setup({modes: /* JW Player®. */
[
/* First try real-time streaming with Flash® player. */
{type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
config: {streamer: "<?php echo $mp4["streamer"]; ?>", file: "<?php echo $mp4["file"]; ?>"}},

/* Else, try an HTML5 video tag. */
{type: "html5", provider: "video",
config: {file: "<?php echo $mp4["url"]; ?>"}},

/* Else, this is a safe fallback. */
{type: "download", /* Download the file. */
config: {file: "<?php echo $mp4["url"]; ?>"}}
],
/* Set video dimensions. */ width: 480, height: 270
});
</script>

<?php } else /* Access is denied to the current User. */ { ?>
Sorry, you do NOT have access to this file.
<?php } ?>

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 12:18 pm
by Jason Caldwell
Thank you. This looks good.

Couple other things I would verify if it's still not working.

1. If this code went into a Post/Page, do you have a PHP Execution plugin installed?
See: http://wordpress.org/extend/plugins/php ... on-plugin/

2. Did you download and upload JW Player to the root of your web site?
Code: Select all
/jwplayer/jwplayer.js
/jwplayer/player.swf

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 12:29 pm
by lostinla
I am using Grimp (http://git.grimp.eu/?p=wpp-php.git) and yes the player is where it should be....
Its a challenge, no? ;)

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 12:47 pm
by Jason Caldwell
I would go with this PHP execution plugin please.
http://wordpress.org/extend/plugins/exec-php/

While Grimp may parse PHP code, it may not retain variables in scope long enough for your PHP code sample to function as required. For example, here there are multiple sets of PHP tags. If variables parsed in each set do not remain "scoped" in the context of your Page, variables could be lost when being passed to s2Member (i.e. $cfg might be undefined).

If all else fails, I would test your PHP code directly inside a Post or Page template for WordPress, just to rule out any possibility of corruption by WordPress itself, or the lack of scope by Grimp. I'm not aware of any issues with this on most WordPress installations, but it never hurts to go back to the basics when something like this causing trouble. * Note: I can confirm that your code works as expected on a clean install of s2Member® v111220, WordPress® v3.3.1 and with the Exec-PHP plugin installed.

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 1:15 pm
by lostinla
So I just happened to have a fresh install on a test network and tried it there. I am currently trying to comprehend the template thing. Not an elegant coder....
http://www.beingfreeinbabylon.org/2/test-video/
I'm not getting the authorization error anymore, but I am just getting the "Player appears here" and that's it, no player. The /jwplayer/ folder and contents are in the /2/ root and the ...org/ root.
Could it be an AWS thing?

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 1:18 pm
by lostinla
an update...
on a lark, I thought I'd try it in a text widget and it appears to work. It's playing sound but no video, which could be a metadata thing or something I did wrong in formatting the file?
Would you know what I"m doing wrong with exec-php that it would work in a widget but not in a page?

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 2:22 pm
by Jason Caldwell
lostinla wrote:an update...
on a lark, I thought I'd try it in a text widget and it appears to work. It's playing sound but no video, which could be a metadata thing or something I did wrong in formatting the file?
Would you know what I"m doing wrong with exec-php that it would work in a widget but not in a page?
It could be getting corrupted by the WP Visual Editor. You might try turning off the Visual Editor completely in your WP Profile and see if that helps you.

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 2:32 pm
by lostinla
Yeah, I got that part. That was part of the exec-php directions. Hmmm.... I'm getting ready to try reformatting the video with HandBreak as I have found some similar errors on the LongTail site which they claim is related to the H.264 formatting.... I'll keep you posted, let me know if you think of anything else. (You get it working ok on your test, right? Video and all....Can't assume any "simple" steps you might have done is something I thought of, you know? Could be something real simple I'm missing here.)

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 2:36 pm
by Jason Caldwell
Gotchya. Yes, that could be a possibility. A video format issue. I would test it with a known working example video from LongTail to confirm this. Your code works fine on my end yes. I didn't test the video file itself though. Your video is secured, and access can only be granted by your installation.

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 2:56 pm
by lostinla
Ok... so I uploaded the simple video.mp4 sample, and changed the name of the file in the post, but when I view the post its still trying to play the old file. I cleared the browser cache... same thing. Is there another setting I'm not getting here?

(I'd like to take this little opportunity to just mention that this level of attention and support is phenomenal. Thank you.)

Re: Integration with AWS streaming and S2

PostPosted: January 16th, 2012, 3:05 pm
by lostinla
lol...

Okay, so I got up and got some coffee... then I went back and tried it again... And this time it played the old (firstpro.mp4) video correctly. Yes, video and audio. However, when I looked at the code it is still pointing to the LongTail sample, video.mp4.

I'm thinking this might be a cloud issue with AWS, and if I wait a bit it just may fix itself? Possible?

Re: Integration with AWS streaming and S2

PostPosted: January 17th, 2012, 3:55 pm
by lostinla
Ok... I'm still having problems here. I deleted the old mp4 on aws. I only have the LongTail sample video.mp4 up there. I referenced the video.mp4 in the post code. But for some bizarre reason everytime I view the page it is still calling the old firstpro.mp4 file. JWPlayer even gives a sharing and embed code when the video is stopped or whatever that references firstpro.mp4, even though it is nowhere in my code!
So is this a caching thing with S2? I even checked the "Allow S2 to configure AWS" box and resaved the options, I'm completely baffled.
I did notice in the console in FF I get this error:
Error: not well-formed
Source File: https://s3-console-us-standard.console. ... eliverHttp
Line: 1, Column: 1
Source Code:
{
Would this have anything to do with it?
I'm really stumped here. Is this a JWPlayer issue?
How come other people get to do this and I can't? What's wrong with me? Am I not good enough for S2? (jk)
:shock:

Re: Integration with AWS streaming and S2

PostPosted: January 19th, 2012, 12:37 pm
by Jason Caldwell
Thanks for the follow-up. I'm looking over this thread again now.

Re: Integration with AWS streaming and S2

PostPosted: January 19th, 2012, 12:42 pm
by Jason Caldwell
Thanks for your patience.

No, s2Member does not employ any caching techniques for videos or the parsing of any PHP code that you implement. However, you might check that your WordPress installation does not have any caching plugins installed/activated during your tests. Also, some installations of PHP are compiled with byte code caches that could possibly cause things like this, although I would consider that to be highly unlikely.

With your test video.mp4 file, you should have this code. If problems persist, please post for me again the complete PHP code that you've implemented, along with the source HTML that results in your browser, which should lead to a JW Player instance that plays: video.mp4.

Code: Select all
<div id="jw-container">JW Player® appears here.</div>
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<?php /* A direct URL to the RTMP source; counting the file against the current User in real-time. */
$cfg = array ("file_download" => "video.mp4", "url_to_storage_source" => true, "count_against_user" => true); ?>

<?php /* API Function `s2member_file_download_url()` returns false if access is denied to the current User. */
if (($mp4 = s2member_file_download_url ($cfg, "get-streamer-array"))) { ?>

    <script type="text/javascript">
        jwplayer("jw-container").setup({modes: /* JW Player®. */
        [
            /* First try real-time streaming with Flash® player. */
            {type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
                config: {streamer: "<?php echo $mp4["streamer"]; ?>", file: "<?php echo $mp4["file"]; ?>"}},
        
            /* Else, try an HTML5 video tag. */
            {type: "html5", provider: "video",
                config: {file: "<?php echo $mp4["url"]; ?>"}},
        
            /* Else, this is a safe fallback. */
            {type: "download", /* Download the file. */
                config: {file: "<?php echo $mp4["url"]; ?>"}}
        ],
        /* Set video dimensions. */ width: 480, height: 270
        });
    </script>

<?php } else /* Access is denied to the current User. */ { ?>
    Sorry, you do NOT have access to this file.
<?php } ?>

Re: Integration with AWS streaming and S2

PostPosted: January 19th, 2012, 12:58 pm
by lostinla
OK, this is on the test site, so there should be no plugin, not even the JW plugin (just the player in the dir), except for S2.
The code I am using is exactly what you've got above.
The resulting source on the page is:

Code: Select all
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
   <head profile="http://gmpg.org/xfn/11">
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      
            
      <title>testvid2 | Free in Babylon</title>
      
      
   <link rel="alternate" type="application/rss+xml" title="Free in Babylon | Site Wide Activity RSS Feed" href="http://www.beingfreeinbabylon.org/2/activity/feed/" />

      <link rel="stylesheet" href="http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/style.css" type="text/css" media="screen" />
      <link rel="pingback" href="http://www.beingfreeinbabylon.org/2/xmlrpc.php" />

      <link rel="alternate" type="application/rss+xml" title="Free in Babylon &raquo; Feed" href="http://www.beingfreeinbabylon.org/2/feed/" />
<link rel="alternate" type="application/rss+xml" title="Free in Babylon &raquo; Comments Feed" href="http://www.beingfreeinbabylon.org/2/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Free in Babylon &raquo; testvid2 Comments Feed" href="http://www.beingfreeinbabylon.org/2/2012/01/testvid2/feed/" />
<link rel='stylesheet' id='bp-admin-bar-css'  href='http://www.beingfreeinbabylon.org/2/wp-content/plugins/buddypress/bp-core/css/buddybar.css?ver=20110723' type='text/css' media='all' />
<link rel='stylesheet' id='bbpress-style-css'  href='http://www.beingfreeinbabylon.org/2/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/css/bbpress.css?ver=20110912' type='text/css' media='screen' />
<link rel='stylesheet' id='A2A_SHARE_SAVE-css'  href='http://www.beingfreeinbabylon.org/2/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.3' type='text/css' media='all' />
<link rel='stylesheet' id='ws-plugin--s2member-css'  href='http://www.beingfreeinbabylon.org/2/wp-content/plugins/s2member/s2member-o.php?ws_plugin__s2member_css=1&#038;qcABC=1&#038;ver=111220-2689733947' type='text/css' media='all' />
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-includes/js/comment-reply.js?ver=20090102'></script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-includes/js/jquery/jquery.js?ver=1.7.1'></script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/_inc/js/reflection.js?ver=3.3.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var BP_DTheme = {"my_favs":"My Favorites","accepted":"Accepted","rejected":"Rejected","show_all_comments":"Show all comments for this thread","show_all":"Show all","comments":"comments","close":"Close","view":"View"};
/* ]]> */
</script>

<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/_inc/global.js?ver=20110830'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var pwsL10n = {"empty":"Strength indicator","short":"Very weak","bad":"Weak","good":"Medium","strong":"Strong","mismatch":"Mismatch"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-admin/js/password-strength-meter.js?ver=20101027'></script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-content/plugins/s2member/s2member-o.php?ws_plugin__s2member_js_w_globals=19c87ca6ecb6c79ef0c00664d6e4a917&#038;qcABC=1&#038;ver=111220-2689733947'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.beingfreeinbabylon.org/2/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.beingfreeinbabylon.org/2/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='test videop' href='http://www.beingfreeinbabylon.org/2/2012/01/test-videop/' />
<meta name="generator" content="WordPress 3.3.1" />
<link rel='canonical' href='http://www.beingfreeinbabylon.org/2/2012/01/testvid2/' />
<link rel='shortlink' href='http://wp.me/s28kH4-testvid2' />

<script type="text/javascript"><!--
var a2a_config=a2a_config||{},wpa2a={done:false,html_done:false,script_ready:false,script_load:function(){var a=document.createElement('script'),s=document.getElementsByTagName('script')[0];a.type='text/javascript';a.async=true;a.src='http://static.addtoany.com/menu/page.js';s.parentNode.insertBefore(a,s);wpa2a.script_load=function(){};},script_onready:function(){if(a2a.type=='page'){wpa2a.script_ready=true;if(wpa2a.html_done)wpa2a.init();}},init:function(){for(var i=0,el,target,targets=wpa2a.targets,length=targets.length;i<length;i++){el=document.getElementById('wpa2a_'+(i+1));target=targets[i];a2a_config.linkname=target.title;a2a_config.linkurl=target.url;if(el)a2a.init('page',{target:el});wpa2a.done=true;}}};a2a_config.tracking_callback=['ready',wpa2a.script_onready];
//--></script>

   <script type="text/javascript">var ajaxurl = "http://www.beingfreeinbabylon.org/2/wp-load.php";</script>

<style type="text/css">body {background: none #333333;color:#888888;font-family:Arial,Tahoma,Verdana,sans-serif;font-size:12px;line-height:170%;margin:0 auto;max-width:100%;min-width:100%;padding-top:0 !important;width:100%;background-position: center top;}body.activity-permalink {min-width: 100%;max-width: 100%;}#outerrim{margin:0 auto;width:100%;}#innerrim {margin:0 auto;max-width:1000px;min-width:1000px;}.v_line {border-right: 1px solid #181818;height: 100%;position: absolute;width: 0;}.v_line_left {margin-left: 223px;}.v_line_right {right: 223px;}h1, h2, h3, h4, h5, h6 {margin: 0 0 12px 0;}h1 { color:#888888; margin-bottom: 25px; line-height: 170%; }h2 { color:#888888;margin-top: -8px; margin-bottom: 25px; line-height: 170%; }h3 { color:#888888; }h1, h1 a, h1 a:hover, h1 a:focus { font-size: 28px; }h2, h2 a, h2 a:hover, h2 a:focus { font-size: 24px; }h3, h3 a, h3 a:hover, h3 a:focus { font-size: 20px; }h4, h4 a, h4 a:hover, h4 a:focus { font-size: 16px; margin-bottom: 15px; }h5, h5 a, h5 a:hover, h5 a:focus { font-size: 14px; margin-bottom: 0; }h6, h6 a, h6 a:hover, h6 a:focus { font-size: 12px; margin-bottom: 0; }a { font-style:normal; color: #ffffff; text-decoration: none; padding: 1px 0; }a:hover, a:active { color: #888888; }a:focus { outline: none; }.padder { padding: 20px; }.clear { clear: left; }h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus { text-decoration: none; background-color: transparent; } p, em {font-size: 13px;margin-bottom: 15px;}em { font-style: italic; } p:last-child { margin-bottom: 0; }sub {line-height: 100%;font-size: 60%;font-family: Arial, Helvetica, sans-serif;vertical-align:bottom;}sup {line-height: 100%;font-size: 60%;font-family: Arial, Helvetica, sans-serif;vertical-align:top;}hr {background-color:#888888;border:0 none;clear:both;height:1px;margin: 20px 0;}blockquote {padding: 10px 20px; background-color: #333333;}blockquote, blockquote p, blockquote a, blockquote a:hover, blockquote a:focus,blockquote h1, blockquote h2, blockquote h3, blockquote h4, blockquote h5, blockquote h6 {font-family: georgia, times, serif; font-size: 16px; font-style:italic; }img.avatar {border:1px solid #333333;float:left;}span.cc_blockquote {width:30%; padding:2%; background-color: #333333;}span.cc_blockquote_left {float: left; }span.cc_blockquote_right {float: right; }span.cc_blockquote, span.cc_blockquote p, span.cc_blockquote a {font-family: times, serif;font-family: times, serif !important; font-size: 19px;font-size: 19px !important; font-style: italic;}body#cc.activity-permalink #wp-admin-bar .padder, body#cc #wp-admin-bar .padder {max-width:100%;min-width:100%;}#wp-admin-bar {font-size:11px;height:25px;left:0;position:fixed;top:0;width:100%;z-index:1000;}#wp-admin-bar a { background-color: transparent; text-decoration: none; }#header {position: relative;color: #888888;-moz-border-radius-bottomleft: 6px;-webkit-border-bottom-left-radius: 6px;border-bottom-left-radius: 6px;-moz-border-radius-bottomright: 6px;-webkit-border-bottom-right-radius: 6px;border-bottom-right-radius: 6px;margin-bottom: 12px;min-height: 50px;height:auto !important;padding-top: 25px; background-repeat: no-repeat; z-index: 999;}#header #search-bar {position: absolute;top: 27px;right: 0;width: 390px;text-align: right;}#logo{position: absolute;}#header div#logo h1, #header div#logo h4 {left: 20px;line-height: 150%;margin: 0 0 -5px;top: 35px;font-size: 28px;}#header #search-bar .padder {padding: 10px 0;}#header #search-bar input[type=text] {-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;border: 1px inset #888;padding: 2px;margin-right: 4px;}#header #search-bar input[type=submit] {font-size: 11px;padding: 1px 4px;margin-left: 4px;}label.accessibly-hidden {display: none;}#header div#logo h1 a, #header div#logo h4 a {color: #888888;font-size: 26px;}ul#nav {background:url("") no-repeat scroll 0 0 transparent;bottom:2px;list-style:none outside none;margin:15px 0 0;max-width:100%;min-width:100%;padding:45px 0 5px 0;position:relative;left: 20px;right: 15px;}ul#nav li {float:left;margin:0;padding:6px 28px 0 0;}ul#nav li a {-moz-background-inline-policy:continuous;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-top-left-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-top-right-radius:3px;background:none repeat scroll 0 0 transparent;color:#888888;display:block;font-size:13px;font-weight:bold;padding:0;}ul#nav li.selected, ul#nav li.selected a, ul#nav li.current_page_item a {background:none repeat scroll 0 0;color: #ffffff;}ul#nav a:focus { outline: none; }#nav-home {float:left;}#nav-community {float:left;}div#container {-moz-border-radius:6px 6px 6px 6px;border-radius:6px;-webkit-border-radius:6px;background-color: #181818;background-image:none; border:none;overflow:hidden;position:relative;width:100%;}body.activity-permalink div#container {background: #181818;border:none;}#sidebar-me, #sidebar-login-form {margin-bottom:20px;}.right-sidebar-padder { padding: 30px 15px 30px 20px; }.left-sidebar-padder { padding:30px 15px 30px 20px; }div#sidebar {-moz-background-clip:border;-moz-background-inline-policy:continuous;-moz-background-origin:padding;-moz-border-radius-topright:6px;-webkit-border-top-right-radius:6px;border-top-right-radius:6px;background:transparent;border-left:none;float:right;margin-left:-224px;margin-top: 0px;width:224px;}div.widgetarea {-moz-background-clip:border;-moz-background-inline-policy:continuous;-moz-background-origin:padding;background:transparent;float:left;width:224px;}div#sidebar div#sidebar-me img.avatar, div.widgetarea div#sidebar-me img.avatar {float: left;margin: 0 10px 15px 0;}div#sidebar div#sidebar-me h4, div.widgetarea div#sidebar-me h4 {font-size: 16px;margin: 0 0 8px 0;font-weight: normal;}div#sidebar ul#bp-nav, div.widgetarea ul#bp-nav {clear: left;margin: 15px -16px;}div#sidebar ul#bp-nav li, div.widgetareaul#bp-nav li {padding: 10px 15px;}div#leftsidebar h3.widgettitle, div#sidebar h3.widgettitle, div.widgetarea h3.widgettitle {-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px 4px 4px 4px;border-radius:4px;background:none repeat scroll 0 0 #333333;clear:left;color:#888888;font-size:12px;margin:0 8px 12px -9px;padding:5px 10px;width:182px;font-family: arial, helvetica, sans-serif; }div#leftsidebar h3.widgettitle a, div#sidebar h3.widgettitle a, div.widgetarea h3.widgettitle a {clear:left;color:#888888;background-color: transparent; text-decoration: none; font-size:12px;font-family: arial, helvetica, sans-serif; }div#leftsidebar h3.widgettitle a:hover, div#leftsidebar h3.widgettitle a:focus,div#sidebar h3.widgettitle a:hover, div#sidebar h3.widgettitle a:focus,div.widgetarea h3.widgettitle a:hover, div.widgetarea h3.widgettitle a:focus {color:#ffffff;background-color: transparent; text-decoration: none; }div#leftsidebar div#item-header-avatar img.avatar, div#sidebar div#item-header-avatar img.avatar { margin-bottom:20px;} div#sidebar h3.widgettitle p, div.widgetarea h3.widgettitle p {padding: 5px 10px;font-size: 12px;color:#888888;clear: left;}div#sidebar .widget_search, div.widgetarea .widget_search {margin-top: 0;}div#sidebar .widget_search input[type=text], div.widgetarea .widget_search input[type=text]{width: 110px;padding: 2px;}div#sidebar ul#recentcomments li, div#sidebar .widget_recent_entries ul li, div.widgetareaul#recentcomments li, div.widgetarea .widget_recent_entries ul li{margin-bottom: 5px;}div#sidebar ul.item-list img.avatar, div.widgetareaul.item-list img.avatar{width: 25px;height: 25px;margin-right: 10px;}div#sidebar div.item-avatar img, div.widgetareadiv.item-avatar img{width: 40px;height: 40px;}div#sidebar .avatar-block, div.widgetarea .avatar-block{ overflow: hidden; } .avatar-block img.avatar { margin-right: 4px; }div#sidebar ul.item-list div.item-title, div.widgetarea ul.item-list div.item-title{font-size:12px;line-height:140%;}div#sidebar div.item-options, div.widgetarea div.item-options{background:none repeat scroll 0 0 transparent;font-size:11px;margin:-12px 0 10px -14px;padding:5px 15px;text-align:left;}div#sidebar div.item-meta, div#sidebar div.item-content, div.widgetarea div.item-meta, div.widgetarea div.item-content{font-size: 11px;}div#sidebar div.tags div#tag-text, div.widgetarea div.tags div#tag-text{font-size: 1.4em;line-height: 140%;padding-top: 10px;}div#sidebar ul , div.widgetarea ul {text-align:left;}.widget li.cat-item {margin-bottom:8px;}.widget li.current-cat a, div.widget ul li.current_page_item a {color:#ffffff;}.widget li.current-cat, div.widget ul li.current_page_item{background:transparent;margin-left:-8px;padding:2px 8px 0 8px;width:100%;}div#leftsidebar {-moz-background-inline-policy:continuous;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;background:transparent;border-left:0 none;border-right:none;float:left;margin-right:-225px;margin-top: 0px;position:relative;width:225px;}.paddersidebar{ padding:30px 15px 30px 20px; }div#sidebar div.item-options a.selected,div#leftsidebar div.item-options a.selected, div.widgetarea {color:#888888;}div#content {-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;float:left;width:100%;}div#content .padder {-moz-border-radius: 0px !important;border-left: none;border-right: none;margin-left: 0px;margin-right: 275px;min-height: 300px;padding-top: 30px;overflow: hidden;}div#content .left-menu {float: left;width: 170px;}div#content .main-column {margin-left: 190px;}div#item-header {overflow: hidden;}div#content div#item-header {margin-top:0;overflow:hidden;}div#item-header div#item-header-content { margin-left: 170px; }div#item-header h2 {font-size: 28px;margin: -5px 0 15px 0;line-height: 120%;}div#item-header h2 a {font-size:28px;}div#item-header img.avatar {float: left;margin: 0 15px 25px 0;}div#item-header h2 { margin-bottom: 5px; }div#item-header span.activity, div#item-header h2 span.highlight {vertical-align: middle;font-size: 13px;font-weight: normal;line-height: 170%;margin-bottom: 7px;color:#888888;}div#item-header h2 span.highlight { font-size: 16px; color:#888888; }div#item-header h2 span.highlight span {position: relative;top: -2px;right: -2px;font-weight: bold;font-size: 11px;background: #ffffff;color: #333333;padding: 1px 4px;margin-bottom: 2px;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;vertical-align: middle;cursor: pointer;display: none;}div#item-header div#item-meta {font-size: 14px;color: #888888;padding-bottom: 25px;overflow: hidden;margin: 15px 0 5px 0;}div#item-header div#item-actions {float: right;width: 20%;margin: 0 0 15px 15px;text-align: right;}div#item-header div#item-actions h3 {font-size: 12px;margin: 0 0 5px 0;}div#item-header ul {overflow: hidden;margin-bottom: 15px;}div#item-header ul h5, div#item-header ul span, div#item-header ul hr {display: none;}div#item-header ul li {float: none;}div#item-header ul img.avatar, div#item-header ul.avatars img.avatar {width: 30px;height: 30px;margin: 2px;}div#item-header div.generic-button, div#item-header a.button {float: left;margin: 10px 5px 0 0;}div#item-header div#message.info {line-height: 80%;}div.widget-title ul.item-list li{background:none;border-bottom:medium none;font-size:12px;margin-bottom:8px;padding:0;}div.widget-title ul.item-list li.selected {background:none;border:none;font-size:12px;color:#ffffff;}div.widget-title ul.item-list li.selected a {color:#888888;}ul.item-list {width: 100%;}ul.item-list li {position: relative;padding: 15px 0 20px 0;border-bottom: 1px solid #333333;}ul.single-line li { border: none; }body.activity-permalink ul.item-list li { padding-top: 0; border-bottom:none; }ul.item-list li img.avatar {float: left;margin: 3px 10px 10px 0;}div.widget ul.item-list li img.avatar {width:25px;height:25px;}ul.item-list li div.item-title, ul.item-list li h4 {float:left;font-size:14px;font-weight:normal;margin:0;width:47%;}div.widget ul.item-list li div.item-title, div.widgetul.item-list li h4 {float:none;width:100%;}ul.item-list li div.item-title span {font-size: 12px;color: #888888;}ul.item-list li div.item-desc {margin: 0 0 0 63px;font-size: 11px;color: #888888;width: 50%;}ul.item-list li div.action {position: absolute;top: 15px;right: 0;text-align: right;width: 34%;}.item-meta{float:left;width:87%;}ul.item-list li div.meta {color:#888888;font-size:11px;margin-top: 4px;}ul.item-list li h5 span.small {font-weight: normal;font-size: 11px;}div.item-list-tabs {background:none repeat scroll 0 0 transparent;border-bottom:4px solid #333333;clear:left;margin: 0px -20px 15px;overflow:hidden;padding-top:15px;}div.item-list-tabs ul {width: 100%;}div.item-list-tabs ul li {float: left;margin: 0px;}div.item-list-tabs ul li.selected {background:none;}div.item-list-tabs#subnav ul li {margin-top: 0;}div.item-list-tabs ul li:first-child {margin-left: 20px;}div.item-list-tabs ul li.last {float: right;margin: 7px 20px 0 0;}div.item-list-tabs#subnav ul li.last {margin-top: -4px;}div.item-list-tabs ul li.last select {max-width: 175px;}div.item-list-tabs ul li a,div.item-list-tabs ul li span {display: block;padding: 4px 8px;}div.item-list-tabs ul li a {text-decoration: none;background-color: transparent; }div.item-list-tabs ul li a:hover,div.item-list-tabs ul li a:focus {color: #888888; }div.item-list-tabs ul li span {color: #888888;}div.item-list-tabs ul li a span {background: none repeat scroll 0 0 #333333;border-radius: 3px 3px 3px 3px;-moz-border-radius: 3px; -webkit-border-radius: 3px;color: inherit;display: inline;font-size: 11px;padding: 2px 4px;}div.item-list-tabs ul li.selected a span {background: none repeat scroll 0 0 #181818;}div.item-list-tabs ul li.selected a, div.item-list-tabs ul li.current a {-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:6px;background-color:#333333;color:#888888 !important;font-weight: normal;margin-top:0;}ul li.loading a {background-image: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/ajax-loader.gif );background-position: 92% 50%;background-repeat: no-repeat;padding-right: 30px !important;z-index: 1000;}form#send_message_form input#send:focus,div.ac-reply-content input.loading,div#whats-new-submit input#aw-whats-new-submit.loading {background-image: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/ajax-loader.gif );background-position: 5% 50%;background-repeat: no-repeat;padding-left: 20px;}div#item-nav ul li.loading a {background-position: 88% 50%;}#item-nav a{color:#ffffff;}#subnav a{color:#888888;}#item-nav a:hover{color:#888888;}#subnav a:hover{color:#ffffff;}div#subnav.item-list-tabs ul li {margin-top:1px;}div.item-list-tabs#object-nav {margin-top: 0;}div#subnav.item-list-tabs{background:none repeat scroll 0 0 #333333;border-bottom:medium none;margin:-20px -20px 15px;min-height:26px;overflow:hidden;}div#subnav.item-list-tabs ul li.selected a, div#subnav.item-list-tabs ul li.current a{background-color:#181818;}div.item-list-tabs ul li.feed a {background: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/_inc/images/rss.png ) center left no-repeat;padding-left: 20px;}.item-body {margin: 20px 0;}.activity{width:100%;}span.activity, div#message p {background:none;border:none;color:#888888;display:inline-block;font-size:11px;font-weight:normal;margin-top:6px;padding:3px 0 3px 0;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;line-height: 120%;width:80%;}div.widget span.activity {-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px;border-radius:3px;background:none repeat scroll 0 0 transparent;border-bottom:1px solid #333333;border-right:medium none;color:#888888;display:inline-block;float:left;font-size:11px;font-weight:normal;margin-bottom:8px;margin-left:0px;margin-top:0;width:100%;padding:3px 0;}#footer div.widget span.activity, #header div.widget span.activity {margin-left:0;}div.dir-search {float: right;margin: -37px 0 0 0;}div.dir-search input[type=text] {padding: 4px;font-size: 12px;}.readmore{float:right;}div.pagination {background:none repeat scroll 0 0 #333333;border-bottom:medium none;color:#888888;font-size:11px;height:16px;margin:-20px -20px 9px;padding:10px 20px;}div.pagination#user-pag, .friends div.pagination,.mygroups div.pagination, .myblogs div.pagination, noscript div.pagination {background: none;border: none;padding: 8px 15px;}div.pagination .pag-count {float: left;}div.pagination .pagination-links {float: right;}div.pagination .pagination-links span,div.pagination .pagination-links a {font-size: 12px;padding: 0 5px;}div.pagination .pagination-links a:hover {font-weight: bold;}div#pag-bottom {background:none repeat scroll 0 0 transparent;margin-top:0;}div#message {margin: 15px 0;}div#message.updated { clear: both; }div#message p {padding: 10px 15px;font-size: 12px;display:block;}div#message.error p {background: #e41717 !important;color: #333333 !important;border-color: #a71a1a;clear: left;}div#message.updated p {background:none;border:none;color:#888888;}form.standard-form#signup_form div div.error {color: #333333;background: #e41717;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;padding: 6px;width: 90%;margin: 0 0 10px 0;}a.comment-edit-link, a.comment-reply-link, a.button, input[type="submit"], input[type="button"], ul.button-nav li a, div.generic-button a {-moz-border-radius: 4px;-webkit-border-radius: 4px;border-radius: 4px;background: none repeat scroll 0 0 #888888;border-bottom: 1px solid #aaaaaa;border-right: 1px solid #aaaaaa;border-top: none;border-left: none;color: #181818;font-family: arial, sans-serif; font-size: 12px;cursor: pointer;font-weight: normal;padding: 3px 5px;text-decoration: none;text-shadow: none; vertical-align: top; margin-top: 0;}a.comment-edit-link:hover, a.comment-edit-link:focus, a.comment-reply-link:hover, a.comment-reply-link:focus, a.button:focus, a.button:hover, input[type="submit"]:hover, input[type="button"]:hover,ul.button-nav li a:hover, div.generic-button a:hover, ul.button-nav li a:focus, div.generic-button a:focus {background:none repeat scroll 0 0 #ffffff;border-color:#aaaaaa;border-style:none solid solid none;border-width:medium 1px 1px medium;color:#181818;cursor:pointer;font-size:12px;font-weight:normal;padding:3px 5px;text-decoration:none;vertical-align: top;outline: none;}div.pending a, a.disabled, a.requested {border-bottom:1px solid #888888;border-right:1px solid #888888;border-top:none;border-left:none;color:#181818;background:none repeat scroll 0 0 #888888;cursor:default;}div.pending a:hover, a.disabled:hover, a.requested:hover {border-bottom:1px solid #888888;border-right:1px solid #888888;border-top:none;border-left:none;color:#181818;background:none repeat scroll 0 0 #888888;cursor:default;}div.accept, div.reject {float: left;margin-left: 10px;}ul.button-nav li {float: left;margin: 0 10px 10px 0;}ul.button-nav li.current a {font-weight: bold;color:#181818;}div#item-buttons div.generic-button {margin: 0 12px 12px 0;}.ajax-loader {background: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/ajax-loader.gif ) center left no-repeat !important;padding: 8px;display: none;z-index: 1000;}a.loading {background-image: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/ajax-loader.gif ) !important;background-position: 95% 50% !important;background-repeat: no-repeat !important;padding-right: 25px !important;z-index: 1000;}form.standard-form {}form.standard-form textarea, form.standard-form input[type=text],form.standard-form select, form.standard-form input[type=password],.dir-search input[type=text] {border: 1px inset #ccc;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;padding: 6px;font: inherit;font-size: 14px;color: #888;}form.standard-form select {padding: 3px;}form.standard-form input[type=password] {margin-bottom: 5px;}form.standard-form label, form.standard-form span.label {display: block;font-weight: bold;margin: 15px 0 5px 0;}form.standard-form div.checkbox label,form.standard-form div.radio label {font-weight: normal;margin: 5px 0 0 0;font-size: 14px;color: #888;}form.standard-form#sidebar-login-form label {margin-top: 5px;}form.standard-form input[type=text] {width: 75%;}form.standard-form#sidebar-login-form input[type=text],form.standard-form#sidebar-login-form input[type=password] {padding: 4px;width: 95%;}form.standard-form #basic-details-section input[type=password],form.standard-form #blog-details-section input#signup_blog_url {width: 35%;}form.standard-form#signup_form input[type=text],form.standard-form#signup_form textarea {width: 90%;}form.standard-form#signup_form div.submit { float: right; }div#signup-avatar img { margin: 0 15px 10px 0; }form.standard-form textarea {width: 75%;height: 120px;}form.standard-form textarea#message_content {height: 200px;}form.standard-form#send-reply textarea {width: 97.5%;}form.standard-form p.description {font-size: 11px;color: #888;margin: 5px 0;}form.standard-form div.submit {padding: 15px 0;clear: both;}form.standard-form div.submit input {margin-right: 15px;}form.standard-form div.radio ul {margin: 10px 0 15px 38px;list-style: disc;}form.standard-form div.radio ul li {margin-bottom: 5px;}form.standard-form a.clear-value {display: block;margin-top: 5px;outline: none;}form.standard-form #basic-details-section, form.standard-form #blog-details-section,form.standard-form #profile-details-section {float: left;width: 48%;}form.standard-form #profile-details-section { float: right; }form.standard-form #blog-details-section {clear: left;}form.standard-form input:focus, form.standard-form textarea:focus, form.standard-form select:focus {background: #fafafa;color: #666666;}form#send-invite-form {margin-top: 20px;}div#invite-list {height: 400px;overflow: scroll;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;padding: 5px;background: #181818;width: 160px;border: 1px solid #333333;margin: 10px 0;}form#signup_form div.register-section select{width:245px !important;}table {width: 100%;margin: 0 0 15px 0;}table thead tr {background: #333333;}table#message-threads {margin: 0 -20px;width: auto;}table.profile-fields { margin-bottom: 20px; }div#sidebar table , div.widgetarea table {margin: 0 0;width: 100%;}table tr td, table tr th {text-align:left;padding: 5px 7px 3px 7px;vertical-align: middle;border-bottom: 1px solid #333333;}table tr td.label {border-right: 1px solid #333333;font-weight: bold;width: 25%;}table tr td.thread-info p { margin: 0; }table tr td.thread-info p.thread-excerpt {color: #888888;font-size: 11px;margin-top: 3px;}div#sidebar table td, table.forum td , div.widgetarea table td, table.forum td { text-align: center; }table tr.alt, table tr th {background: #333333;}table.notification-settings {margin-bottom: 20px;text-align: left;}table.notification-settings th.icon, table.notification-settings td:first-child { display: none; }table.notification-settings th.title { width: 80%; }table.notification-settings .yes, table.notification-settings .no { width: 40px; text-align: center; }table.forum {margin: -1px -20px 20px -20px;width: auto;}table.forum tr:first-child {background: #181818;}table.forum tr.sticky td {background: #bbbbbb;border-top: 1px solid #333333;border-bottom: 1px solid #333333;}table.forum tr.closed td.td-title {padding-left: 35px;background-image: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/_inc/images/closed.png);background-position: 15px 50%;background-repeat: no-repeat;}table.forum td p.topic-text {color: #888888;font-size: 11px;}table.forum tr > td:first-child, table.forum tr > th:first-child {padding-left: 15px;}table.forum tr > td:last-child, table.forum tr > th:last-child {padding-right: 15px;}table.forum tr th#th-title, table.forum tr th#th-poster,table.forum tr th#th-group, table.forum td.td-poster,table.forum td.td-group, table.forum td.td-title { text-align: left; }table.forum td.td-freshness {font-size: 11px;color: #888888;}table.forum td img.avatar {margin-right: 5px;}table.forum td.td-poster, table.forum td.td-group{min-width: 130px;}table.forum th#th-title {width: 40%;}table.forum th#th-postcount {width: 1%;}form#whats-new-form {margin-bottom: 3px;border-bottom: 1px solid #333333;overflow: hidden;padding-bottom: 20px;}#item-body form#whats-new-form {margin-top: 20px;border: none;}.home-page form#whats-new-form {border-bottom: none;padding-bottom: 0;}form#whats-new-form h5 {margin: 0;font-weight: normal;font-size: 12px;color: #888888;margin: -5px 0 0 76px;padding: 0 0 3px 0;}form#whats-new-form #whats-new-avatar {float: left;}form#whats-new-form #whats-new-content {margin-left: 54px;padding-left: 22px;}form#whats-new-form #whats-new-textarea {padding: 8px;border: 1px inset #777777;background: #ffffff;margin-bottom: 10px;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}form#whats-new-form textarea {width: 100%;height: 60px;font-size: 14px;font-family: inherit;color: #555;border: none;margin: 0;padding: 0;}form#whats-new-form #whats-new-options select {max-width: 200px;}form#whats-new-form #whats-new-submit {float: right;margin: 0;}ul.activity-list li {padding: 8px 0 0 0;overflow: hidden;border-top: 1px solid #333333;}ul.activity-list > li:first-child {padding-top: 5px;}ul.activity-list li.has-comments {padding-bottom: 15px;}.activity-list li.mini {position: relative;font-size: 11px;min-height: 35px;padding: 12px 0 0 0;}.activity-list li.mini div.activity-meta {float:left;margin:8px 0;position:relative;}.activity-list li.mini div.activity-meta a {padding: 3px 8px;}.activity-list li.mini .activity-avatar img.avatar,.activity-list li.mini .activity-avatar img.FB_profile_pic {width: 30px;height: 30px;margin-left: 0;}.activity-list li.activity_comment .activity-avatar img.avatar, .activity-list li.activity_comment .activity-avatar img.FB_profile_pic {height:30px;margin-left:0;width:30px;}body.activity-permalink .activity-list li .activity-avatar img.avatar,body.activity-permalink .activity-list li .activity-avatar img.FB_profile_pic {width: 100px;height: 100px;margin-left: 0;}.activity-list li.mini .activity-content {min-height:20px;max-height:20px;height:20px;margin-right:0;padding: 0 0 0 8px;}.activity-list li.mini .activity-content p {margin: 0;float: left;}.activity-list li.mini .activity-meta {position: absolute;right: 0;}body.activity-permalink .activity-list li.mini .activity-meta {position:absolute;right:5px;top:45px;}.activity-list li.mini .activity-comments {clear: left;font-size: 12px;margin-top: 8px;}.activity-list li .activity-inreplyto {display:none;background:none;color:#888888;font-size:11px;margin-bottom:15px;margin-left:80px;padding-left:0;}.activity-list li .activity-inreplyto > p {margin: 0;display: inline;}.activity-list li .activity-inreplyto blockquote,.activity-list li .activity-inreplyto div.activity-inner {background: none;border: none;display: inline;padding: 0;margin: 0;overflow: hidden;}.activity-list .activity-avatar img {width: 60px;height: 60px;}body.activity-permalink .activity-list .activity-avatar img {margin-top:22px;width: 100px;height: 100px;}.activity-list .activity-content {-moz-border-radius:6px 6px 6px 6px;-webkit-border-radius:6px;border-radius:6px;background:none;margin-bottom:8px;margin-left:80px;min-height:15px;padding-bottom:8px;}body.activity-permalink .activity-list li .activity-content {background:none;border:medium none;margin-left:110px;margin-right:0;margin-top:17px;min-height:58px;}body.activity-permalink .activity-list li .activity-header > p {background: none;margin-left: -35px;padding: 0 0 0 38px;height: auto;margin-bottom: 0;}.activity-list .activity-content .activity-header,.activity-list .activity-content .comment-header {font-size: 11px;color: #888888;line-height: 170%;}.activity-list .activity-content .activity-header img.avatar {float: none !important;margin: 0 5px -8px 0 !important;}span.highlight {border:none;color:#ffffff;margin-right:3px;}span.highlight:hover {background:none !important;border:none;color:#888888; color:#888888 !important;}.activity-list .activity-content a:first-child:focus { outline: none; }.activity-list .activity-content span.time-since {color: #888888;}.activity-list .activity-content span.activity-header-meta a {background: none;padding: 0;font-size: 11px;margin: 0;border: none;color: #888888;}.activity-list .activity-content span.activity-header-meta a:hover {color: inherit;}.activity-list .activity-content .activity-inner,.activity-list .activity-content blockquote {margin: 15px 0 15px 5px;overflow: hidden;}body.activity-permalink .activity-content .activity-inner,body.activity-permalink .activity-content blockquote {margin-top: 5px;}.activity-inner > .activity-inner { margin: 0 !important; }.activity-inner > blockquote { margin: 0 !important; }.activity-list .activity-content img.thumbnail {float: left;margin: 0 10px 5px 0;border: 1px solid #333333;}.activity-list li.load-more {-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px;border-radius:4px;background:none repeat scroll 0 0 transparent !important;border-bottom:medium none;border-right:medium none;font-size:1.2em;margin:15px 0 !important;padding:10px 15px !important;text-align:left;}.activity-list li.load-more a {color: #ffffff;}.activity-list .activity-content .activity-inner, .activity-list .activity-content blockquote {-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background:none repeat scroll 0 0 transparent;border-top:1px solid #333333;color:#888888;margin:10px 10px 10px 0;overflow:hidden;padding:4px 0;width:100%;}.activity-list .activity-content .comment-header {color:#888888;line-height:170%;margin: 0;min-height:16px;padding-top:4px;}.activity-header a:hover {color:#888888;}div.activity-meta {clear:left;margin:0 0 3px 3px;}.activity-list div.activity-meta a {-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background:none repeat scroll 0 0 #888888;border-bottom:1px solid #888888;border-right:1px solid #888888;color:#181818;margin-right:3px;padding:4px 8px;font-size:11px;text-decoration: none;font-family: arial, sans-serif;}.activity-list div.activity-meta a:hover,.activity-list div.activity-meta a:focus {background:none repeat scroll 0 0 #ffffff;color:#181818;}.activity-filter-selector {text-align: right;}div.activity-meta {clear:left;margin:0;}div.activity-comments {margin:0 0 0 70px;overflow:hidden;position:relative;width:auto;}body.activity-permalink div.activity-comments {width: auto;margin-left: 100px;background: none;}div.activity-comments > ul {-moz-border-radius:6px;-webkit-border-radius: 6px;border-radius: 6px;background:none;padding: 0 10px 0; }div.activity-comments ul, div.activity-comments ul li {border: none;list-style: none;}div.activity-comments ul {background: none repeat scroll 0 0 #333333;border-radius: 0 0 0 0;clear: left;margin-left: 2%;}div.activity-comments ul li {-moz-border-radius:6px 6px 6px 6px;-webkit-border-radius:6px;border-radius:6px;background:none;margin-bottom:8px;padding:10px 0 10px 0;border-top: 1px solid #333333;margin-left: 1%;}body.activity-permalink div.activity-comments ul li {border-width: 1px;padding: 10px;}div.activity-comments ul li p:last-child {margin-bottom: 0;}div.activity-comments > ul > li:first-child {border-top: none;}div.activity-comments ul li:last-child {margin-bottom: 0;}div.activity-comments ul li > ul {margin-left: 54px;margin-top: 5px;}body.activity-permalink div.activity-comments ul li > ul {margin-top: 15px;}div.acomment-avatar img {border:1px solid #333333 !important;float:left;margin-right:10px;}div.activity-comments div.acomment-content {font-size: 11px;background:none repeat scroll 0 0 transparent;color:#888888;margin:10px 10px 10px 0;overflow:hidden;padding:4px 0;}div.acomment-options {margin-left: 63px;}div.acomment-content .time-since { display: none; }div.acomment-content .activity-delete-link { display: none; }div.acomment-content .comment-header { display: none; }body.activity-permalink div.activity-comments div.acomment-content {font-size: 14px;}div.activity-comments div.acomment-meta {font-size: 13px;color: #888888;}div.activity-comments form.ac-form {display: none;margin: 10px 0 10px 33px;background:none repeat scroll 0 0 #adadad;border:medium none;-moz-border-radius: 4px;-webkit-border-radius: 4px;border-radius: 4px;padding: 8px;width: 80%;}div.activity-comments li form.ac-form {margin-right: 15px;}div.activity-comments form.root {margin-left: 0;}div.activity-comments div#message {margin-top: 15px;margin-bottom: 0;}div.activity-comments form.loading {background-image: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/ajax-loader.gif);background-position: 2% 95%;background-repeat: no-repeat;}div.activity-comments form .ac-textarea {padding: 8px;border: 1px inset #cccccc;background: #ffffff !important;margin-bottom: 10px;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}div.activity-comments form textarea {width: 100%;font-family: inherit;font-size: 11px;color: #888888;height: 60px;border: none;padding: 0;}div.activity-comments form input {margin-top: 5px;}div.activity-comments form div.ac-reply-avatar {float: left;}div.ac-reply-avatar img {border: 1px solid #333333 !important;}div.activity-comments form div.ac-reply-content {margin-left: 44px;padding-left: 15px;color: #888888;font-size: 11px;}div.activity-comments div.acomment-avatar img {border-width:1px !important;float:left;margin-right:10px;}table#message-threads tr.unread td {background: #181818;border-top: 1px solid #333333;border-bottom: 1px solid #333333;font-weight: bold;}table#message-threads tr.unread td span.activity {background: #333333;}li span.unread-count, tr.unread span.unread-count {background: #181818;padding: 2px 8px;color: #888888;font-weight: bold;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}div.item-list-tabs ul li a span.unread-count {padding: 1px 6px;color: #888888;}div.messages-options-nav {font-size: 11px;background: #181818;text-align: right;margin: 0 -20px;padding: 5px 15px;}div#message-thread div.message-box {margin: 0 -20px;padding: 15px;}div#message-thread div.alt {background: #181818;}div#message-thread p#message-recipients {margin: 10px 0 20px 0;}div#message-thread img.avatar {float: left;margin: 0 10px 0 0;vertical-align: middle;}div#message-thread strong {margin: 0;font-size: 16px;}div#message-thread strong span.activity {margin: 4px 0 0 10px;}div#message-thread div.message-metadata {overflow: hidden;}div#message-thread div.message-content {margin-left: 45px;}div#message-thread div.message-options {text-align: right;}ul#topic-post-list {margin: 15px -20px;width: auto;}ul#topic-post-list li {padding: 15px;position: relative;}ul#topic-post-list li.alt {background: #adadad;}ul#topic-post-list li div.poster-meta {margin-bottom: 10px;color: #888888;}ul#topic-post-list li div.post-content {margin-left: 54px;}div.admin-links {position: absolute;top: 15px;right: 25px;color: #888888;font-size: 11px;}div#topic-meta div.admin-links {bottom: 0;margin-top: -52px;right: 0;}div#topic-meta {position: relative;padding: 5px 0;}div#topic-meta h3 {font-size: 20px;}div#new-topic-post {margin: 0;padding: 1px 0 0 0;}div.poster-name a {color:#888888;}div.object-name a {color:#888888;}ul#friend-list li {height: 53px;}ul#friend-list li div.item-meta {width: 70%;}div.post {margin:2px 0 20px 0;overflow: hidden;}div.post h2.pagetitle, div.post h2.posttitle {margin: 0px 0 25px 0;line-height: 120%;}.navigation, .paged-navigation, .comment-navigation {overflow: hidden;font-style:normal;font-weight:normal;font-size: 13px;padding: 5px 0;margin: 5px 0 25px 0;}div.post p { margin: 0 0 20px 0; }div.post ul, div.post ol, div.post dl { margin: 0 0 0 20px; }div.post ul, div.page ul { list-style: circle outside none; margin: 0 0 6px 20px; }div.post ol, div.page ol { list-style: decimal outside none; margin: 0 0 6px 20px; }div.post ol ol { list-style: upper-alpha outside none; }div.post dl { margin-left: 0; }div.post dt {border-bottom:1px solid #333333;font-size:14px;font-weight:bold;overflow:hidden;}div.post dd {-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-border-bottom-left-radius: 6px;-webkit-border-bottom-right-radius: 6px;background:none repeat scroll 0 0 #181818;font-size:11px;line-height:12px;margin:0 0 15px;padding:4px;}div.post pre, div.post code p {padding: 15px;background: #181818;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}div.post code { font-family: "Monaco", courier, sans-serif; }div.post blockquote {quotes: none;font-style:italic;padding:0 3em;font-family: georgia, times, serif;font-size: 16px;line-height: 150%;}div.post table {border-collapse:collapse;border-spacing:0;border: 1px solid #333333;}div.post table th { border-top: 1px solid #333333; text-align: left; }div.post table td { border-top: 1px solid #333333; }div.post div.post-content {margin-left: 94px;}div.post p.date, div.post p.postmetadata, div.comment-meta {color: #888888;font-size: 12px;padding: 3px 0;margin: 10px 0;border-bottom: none;border-top: 1px solid #333333;}div.post p.date a, div.post p.postmetadata a, div.comment-meta a, div.comment-options a {font-size: 12px;}div.post p.date a:hover, div.post p.postmetadata a:hover, div.comment-meta a:hover, div.comment-options a:hover {color: #888888;font-size: 12px;}div.post p.date em {font-style: normal;}div.post p.postmetadata {margin-top: 15px;clear: left;overflow: hidden;}div.post .tags { float: left; }div.post .comments { float: right; }div.post img { margin: 15px 0; border: none; border: none !important; }div.post img.wp-smiley { padding: 0 !important; margin: 0 !important; border: none; float: none !important; clear: none !important; }div.post img.centered, img.aligncenter {display: block;margin-left: auto;margin-right: auto;}div.post img.alignright {padding: 4px;margin: 0 0 2px 7px;display: inline;}div.post img.alignleft {padding: 0 12px 12px 0;margin: 0 7px 2px 0;display: inline;}div.post .aligncenter, div.post div.aligncenter {display: block;margin-left: auto;margin-right: auto;}div.post .wp-caption {border: 1px solid #333333;}div.post .wp-caption img {margin: 0;padding: 0;border: 0 none;}div.post img.size-full { height: auto; max-width: 100%;}div.author-box, div.comment-avatar-box {width:50px; float:left; } div.author-box p, div.author-box a,div.comment-avatar-box p,div.comment-avatar-box a {font-size: 10px;font-style: normal;line-height: 120%;margin: 5px 0 0;text-align: center;width: 50px;}div.post div.author-box img {float: none;border: 1px solid #333333;margin: 0;background:none repeat scroll 0 0 transparent;float: none;padding:0;width:50px;}div#comments nav {height: auto;overflow: auto;padding-bottom: 15px;}div.nav-previous {width: 50%; float: left; text-align: left; }div.nav-next {float: left;width: 50%;text-align: right; }div.comment-avatar-box img {float: none;border: 1px solid #333333;margin: 16px 0 0 4px;background:none repeat scroll 0 0 transparent;float: none;padding:0;}div.comment-content {margin-left: 75px;min-height: 110px;}#trackbacks {margin-top: 30px;}#comments h3, #trackbacks h3, #respond h3 {font-size: 20px;margin: 5px 0 15px 0;font-weight: normal;color: #888888;}#comments span.title, #trackbacks span.title {color: #888888;}div.post ol.commentlist, div.page ol.commentlist { list-style: none outside none; margin-left: 0; }div.post ol.commentlist ul, div.page ol.commentlist ul { list-style: none outside none; margin-left: 20px; padding-bottom: 12px;}ol.commentlist li {margin: 0 0 20px 0;border-top: 1px solid #333333;}.commentlist ul li {padding: 0 12px; background: #252525;}.commentlist ul ul li {padding: 0 12px; background: #181818;}.commentlist ul ul ul li {padding: 0; }div.comment-meta {border-top: none;padding-top: 0;}div.comment-meta h5 {font-weight: normal;}div.comment-meta em {float: right;}div.post .commentlist div.comment-content ol {list-style: decimal outside none;margin-bottom: 0;padding-bottom: 6px;}div.post .commentlist div.comment-content ul {list-style: circle outside none;margin-bottom: 0;padding-bottom: 6px;}div.post .commentlist div.comment-content li {border: none; margin-bottom: 0;}p.form-allowed-tags {display: none;}#comments textarea {width: 98%;}div.comment-author img.avatar {margin: 4px 12px 12px -45px;}div.comment-body div.commentmetadata {margin-top:0;}div.comment-body div.comment-author {padding-top:6px;}div.reply {height: 32px;}div.comment-body {margin-bottom: 12px;margin-left: 45px;}div.post div.commentmetadata a.comment-edit-link { float:right; line-height: 120%;padding: 3px 5px;}ul.children li.comment { margin-left: 26px;}div.post .commentlist div.comment-body ol {list-style: decimal outside none;margin-bottom: 0;padding-bottom: 6px;}div.post .commentlist div.comment-body ul {list-style: circle outside none;margin-bottom: 0;padding-bottom: 6px;}.commentlist div.comment-body li {border:none;margin: 0;}#footer{text-align:left;text-shadow:none; margin-top:8px;-moz-border-radius: 6px;-webkit-border-radius: 6px;border-radius: 6px;margin-bottom: 8px;padding: 8px; }#footer div.credits, #footer a.credits, #footer a.credits:hover, #footer a.credits:focus { text-align: center; text-decoration: none; background-color: transparent; color: #555555; }#footer .cc-widget a.button, #header .cc-widget a.button{color: #181818;}#footer span.credits { text-align: center;}.cc-widget{width:30% !important;float:left;text-align:left !important;margin:20px 2% 20px 0 !important;-moz-border-radius: 6px !important;-webkit-border-radius: 6px !important;border-radius: 6px !important;background-color: #181818 !important;padding:1% !important;overflow: hidden;}.cc-widget-right{margin:20px 0 20px !important;float:right !important;}#footer div.widgetarea h3.widgettitle, #header div.widgetarea h3.widgettitle,#footer div.widgetarea h3.widgettitle a, #header div.widgetarea h3.widgettitle {width:100%;-moz-border-radius:0 !important;-webkit-border-radius:0 !important;border-radius:0 !important;margin:0 0 12px -19px !important;padding:5px 24px 5px 19px !important;}div#content div.widgetarea h3.widgettitle,div#content div.widgetarea h3.widgettitle a {background: none !important;}.widget {margin-bottom: 20px;}div.widget ul li {background:none repeat scroll 0 0 transparent;border-bottom:medium none;min-height:20px;margin-bottom:5px;list-style: none outside none;}div.widget ul#groups-list li{min-height:60px;width:197px;margin-bottom:0 !important;}ul#groups-list li{padding:20px 0; }div.widget ul#members-list li {min-height:64px;width:189px;margin-bottom:0 !important;}div.widget ul li.vcard a {float: left;}li.vcard, div.widget ul#groups-list li {padding:0px !important;}div.widget ul#blog-post-list li{border-bottom:1px solid #333333;}div.widget ul#blog-post-list li,div.widget ul#blog-post-list li p,div.widget ul#blog-post-list li a,div.widget ul#blog-post-list li div {height:auto;background:none;}div.widget ul#blog-post-list li a{font-weight:normal;}div.widget_pages ul li {min-height:20px;height:auto;line-height:150%;padding-top:4px;}div.widget_tag_cloud div {padding:8px 10px 8px 0;}div.widget ul.children, div.widget ul.children ul {margin-left: 12px;margin-top: 4px; }div.widget ul li a {}div.widget ul li a:hover {}div.widget ul li.recentcomments a {font-weight:normal;}div.widget ul li.recentcomments a:hover {font-weight:normal;}select#cat {width:100%;}div.widget ul.item-list li div.item-title {margin-top: 3px;}div.widget ul li a.rsswidget {line-height:17px;}div.widget div.textwidget {padding: 0 10px 0 0;}div.widget table thead tr {background:none repeat scroll 0 0 #181818;}div.widget table tr td, div.widget table tr th {padding: 3px 5px;vertical-align: middle;border:none;}div#sidebar div#calendar_wrap, div.widgetarea div#calendar_wrap{margin-left:5px;}div#header div.menu-top {font-size: 13px;margin-left: 12px;position: absolute;width: 100%;}div.menu-top.menu ul {list-style: none;margin: 0;float: right; }div.menu-top li {float: left;position: relative;list-style:none outside none;margin:4px 4px 0 0;}div.menu-top a {color: #ffffff;display: block;line-height: 30px;padding: 0 15px 2px 15px;text-decoration: none; background-color: transparent;}div.menu-top ul ul {display:none;float:left;left:0;position:absolute;top:27px;width:180px;z-index:1000000;}div.menu-top ul li ul li {min-width: 180px;z-index:1000000;margin-top:0px !important;}div.menu-top ul ul ul {left: 100%;top: 0;}div.menu-top ul ul a {background: #333333;color: #ffffff;line-height: 1em;padding: 10px 15px;width: 160px;height: auto;}div.menu-top li:hover > a,div.menu-top ul ul:hover > a {color: #888888;}div.menu-top ul.children li:hover > a,div.menu-top ul.sub-menu li:hover > a {background: #252525 !important;color: #888888;border-radius:0px;}div.menu-top ul li:hover > ul {display: block;}div.menu-top ul li.current_page_item > a,div.menu-top ul li.current-menu-ancestor > a,div.menu-top ul li.current-menu-item > a,div.menu-top li.selected > a,div.menu-top ul li.current-menu-parent > a,div.menu-top ul li.current_page_item > a:hover,div.menu-top ul li.current-menu-item > a:hover {background:none repeat scroll 0 0 #333333;color:#888888;}* html div.menu-top ul li.current_page_item a,* html div.menu-top ul li.current-menu-ancestor a,* html div.menu-top ul li.current-menu-item a,* html div.menu-top ul li.current-menu-parent a,* html div.menu-top ul li a:hover {color: #888888;}#access {-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;background:#181818;display:block;float:left;margin-top:165px;padding-top:0;width:100%;}#access .menu-header,div.menu {font-size: 13px;margin-left: 12px;width: 100%;}#access .menu-header ul,div.menu ul {list-style: none;margin: 0;}div.menu ul {float:left;}#access .menu-header li,div.menu li {float: left;position: relative;list-style:none outside none;margin:4px 4px 0 0;-moz-border-radius-topleft: 6px;-moz-border-radius-topright: 6px;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:6px;}#access a {color: #888888;display: block;line-height: 30px;padding: 0 15px 2px 15px;-moz-border-radius:6px 6px 0 0;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:6px;text-decoration: none; background-color: transparent;}#access ul ul {-moz-box-shadow:0 3px 3px rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 3px 3px rgba(0, 0, 0, 0.2);box-shadow:0 3px 3px rgba(0, 0, 0, 0.2);display:none;float:left;left:0;position:absolute;top:27px;width:180px;z-index:1000000;}#access ul li ul li {min-width: 180px;z-index:1000000;margin-top:0px !important;}#access ul ul ul {left: 100%;top: 0;}#access ul ul a {-moz-border-radius:0px !important;-webkit-border-radius:0px !important;border-radius:0px !important;background: #333333;color: #888888;line-height: 1em;padding: 10px 15px;width: 160px;height: auto;}#access li:hover > a,#access ul ul :hover > a {background: #333333;color: #888888;}#access ul.children li:hover > a,#access ul.sub-menu li:hover > a {background: #252525 !important;color: #888888;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;}#access ul li:hover > ul {display: block;}#access ul li.current_page_item > a,#access ul li.current-menu-ancestor > a,#access ul li.current-menu-item > a,#access li.selected > a,#access ul li.current-menu-parent > a,#access ul li.current_page_item > a:hover,#access ul li.current-menu-item > a:hover {background:none repeat scroll 0 0 #333333;color:#888888;}* html #access ul li.current_page_item a,* html #access ul li.current-menu-ancestor a,* html #access ul li.current-menu-item a,* html #access ul li.current-menu-parent a,* html #access ul li a:hover {color: #888888;}div#cc_slider-top {-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;background-color:#181818;background-repeat:repeat-y;border:medium none;overflow:hidden;padding:0;margin-bottom: 12px;}div.cc_slider {margin-bottom: 0;overflow: hidden;}div.cc_slider.cc_slider_shortcode {margin-bottom: 12px;}div.cc_slider .featured{width:100%;padding-right:248px;position:relative;height:250px;float: left;background:#181818;margin-bottom: 20px;}div.cc_slider div.featured{margin-bottom: 0px;}div.cc_slider ul.ui-tabs-nav {list-style: none outside none;margin: 0;padding: 1px;position: absolute;right: 0;top: 0;width: 344px;}div.cc_slider ul.ui-tabs-nav li{padding:1px 2px 1px 13px;font-size:12px;color:#888888; height: 60px; background:none transparent; border: none; float:none; margin: 0;}div.cc_slider ul.ui-tabs-nav li img {float:left; margin:2px 5px 2px 0;background:#181818;padding:2px;border:1px solid #333333;}div.cc_slider ul.ui-tabs-nav li span{font-size:13px;line-height:18px;}div.cc_slider li.ui-tabs-nav-item a{display:block;height:60px;color:#888888 !important;background:#181818;font-weight: normal;line-height:20px;padding: 0 2px; width:100%;}div.cc_slider a, div.cc_slider a:hover, div.cc_slider a:focus { text-decoration: none; background-color: transparent; }div.cc_slider li.ui-tabs-nav-item a:hover{background:#252525;}div.cc_slider ul.ui-tabs-nav li.ui-tabs-selected{background:url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/dark/selected-item.png) top left no-repeat transparent;}div.cc_slider ul.ui-tabs-nav li.ui-tabs-selected a{background:#333333;}div.cc_slider .featured .ui-tabs-panel{width: 716px; height: 250px;overflow:hidden; background:#181818; position:relative; padding:0;border: medium none; border-radius: 0 0 0 0;}div#cc_slider-top div.cc_slider .featured .ui-tabs-panel{width: 756px;}div.cc_slider .featured .ui-tabs-panel .info{position:absolute;top:170px; left:0;height:80px;background: url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/slideshow/transparent-bg.png);width:100%;}div.cc_slider .featured .info h2 > a{font-size:18px;color: #ffffff; color: #ffffff !important; overflow:hidden; font-family: arial, sans-serif;}div.cc_slider .featured .info h2 {padding:2px 2px 2px 5px;margin:0;line-height:100%;overflow:hidden;}div.cc_slider .featured .info p{margin:0 5px;font-size:13px;line-height:15px;color:#ffffff;font-family: arial, sans-serif;}div.cc_slider .featured .info a{color:#333333; color:#333333 !important;padding-left:0;}div.cc_slider .featured .info a:hover{}div.cc_slider .featured .ui-tabs-hide{display:none;}div.cc_slider .ui-tabs {padding: 0;position: relative;}div.cc_slider .ui-corner-all {border: medium none;border-radius: 0 0 0 0;}div.cc_slider .ui-widget-header {background: none repeat scroll 0 0 transparent;border: medium none;font-weight: normal;} .listposts {width:100%;}.list-posts-all {width:100%;margin-bottom:25px;}.boxgrid {-moz-background-clip: border;-moz-background-inline-policy: continuous;-moz-background-origin: padding;-moz-border-radius: 6px;-webkit-border-radius: 6px;border-radius: 6px;width: 222px;height: 160px;float: left;background: #161613;border: solid 1px #777;overflow: hidden;position: relative;float:left;margin: 20px 20px 0 0;}#content .boxgrid img {-moz-background-clip: border;-moz-background-inline-policy: continuous;-moz-background-origin: padding;-moz-border-radius: 6px;-webkit-border-radius: 6px;border-radius: 6px;position: absolute;top: 0;left: 0;border: 0;}.boxgrid p, .boxgrid p a {padding: 0 0 0 10px;color: #ffffff;font: 11px Arial, sans-serif;}div.boxgrid h3 > a { color:#ffffff; font:12px Arial, sans-serif; letter-spacing:0; font-weight: bold; padding-left:0px; }.boxgrid h3 { margin: 5px 5px 5px 0px; }.boxcaption {-moz-background-clip: border;-moz-background-inline-policy: continuous;-moz-background-origin: padding;-moz-border-radius:0 0 6px 6px;-webkit-border-bottom-left-radius: 6px;-webkit-border-bottom-right-radius: 6px;border-bottom-left-radius: 6px;border-bottom-right-radius: 6px;float: left;position: absolute;background: #000;height: 80px;width: 100%;opacity: .8;filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";}.captionfull .boxcaption {top: 0;left: 0;}.caption .boxcaption {top: 0;left: 0;}.cover{margin-top:170px;}.boxgrid {border:1px solid #333333 !important;}div.posts-img-left-content-right {padding:20px 0 0 0;}div.posts-img-left-content-right img.wp-post-image {border:1px solid #333333;float:left;margin-bottom:0;margin-right:25px;margin-top:2px;}div.posts-img-left-content-right h3 a {font-size:20px;}div.posts-img-left-content-right a{}div.posts-img-right-content-left {padding:20px 0 0 0;float:right;}div.posts-img-right-content-left img.wp-post-image {float:right;border:1px solid #333333;margin-bottom:0;margin-top:2px;margin-left:25px;}div.posts-img-right-content-left h3 a {font-size:20px;}div.posts-img-right-content-left a{}div.posts-img-over-content {float:left;padding:20px 0 0;width:242px;}div.posts-img-over-content img.wp-post-image {border:1px solid #333333;margin-bottom:12px;margin-right:25px;margin-top:2px;}div.posts-img-over-content h3 a {font-size:20px;}div.posts-img-over-content h3 {width:222px;max-width:222px;padding-top:8px;border-top:1px solid #333333;}div.posts-img-over-content a{}div.posts-img-over-content p{padding-right:20px;width:222px;}div.posts-img-under-content {float:left;padding:20px 0 0;width:242px;}div.posts-img-under-content img.wp-post-image {border:1px solid #333333;margin-bottom:0;margin-right:25px;margin-top:5px;}div.posts-img-under-content h3 a {font-size:20px;}div.posts-img-under-content h3 {width:222px;max-width:222px;padding-top:8px;border-top:1px solid #333333;}div.posts-img-under-content a{}div.posts-img-under-content p {padding-right:0;width:222px;}div.single-img-left-content-right {padding:5px 0 0 0;}div.single-img-left-content-right img.wp-post-image {border:1px solid #333333;float:left;margin-bottom:20px;margin-right:25px;margin-top:5px;}div.single-img-left-content-right h3 a {font-size:20px;}div.single-img-left-content-right a{}div.single-img-right-content-left {padding:20px 0 0 0;float:right;}div.single-img-right-content-left img.wp-post-image {float:right;border:1px solid #333333;margin-bottom:20px;margin-top:5px;margin-left:25px;}div.single-img-right-content-left h3 a {font-size:20px;}div.single-img-right-content-left a{}div.single-img-over-content {padding:20px 0 0 0;}div.single-img-over-content img.wp-post-image {border:1px solid #333333;margin-bottom:20px;margin-right:25px;margin-top:5px;}div.single-img-over-content h3 a {font-size:20px;}div.single-img-over-content a{}div.single-img-under-content {padding:20px 0 0 0;}div.single-img-under-content img.wp-post-image {border:1px solid #333333;margin-bottom:20px;margin-right:25px;margin-top:5px;}div.single-img-under-content h3 a {font-size:20px;}div.single-img-under-content a{}.full_width_col {width:99.6%;margin:0 0.4% 20px 0;}.half_col_left {float:left;margin:0 1.4% 20px 0;padding:0;width:48%;}.half_col_right {float:right;margin:0 0.4% 20px 1.4%;padding:0;width:48%;}.third_col {float:left;margin:0 3.3% 20px 0;padding:0;width:31%;}.third_col_right {float:right;margin:0 0.4% 20px 0;padding:0;width:31%;}.two_third_col {float:left;margin:0 2.6% 20px 0;padding:0;width:64.6%;overflow: hidden;}.two_third_col_right {float:right;margin:0 0.4% 20px 0;padding:0;width:64.6%;}.fourth_col {float:left;margin:0 3.2% 20px 0;padding:0;width:22.5%;overflow: hidden;}.fourth_col_right {float:right;margin:0 0.4% 20px 0;padding:0;width:22.5%;}.three_fourth_col {float:left;margin:0 3.2% 20px 0;padding:0;width:69.8% !important;}.three_fourth_col_right {float:right;margin:0 0.4% 20px 0;padding:0;width:69.8% !important;}div.post img.attachment-slider-full {margin:0;}.accordion {width: 100%;border-bottom: solid 1px #c4c4c4;clear:both;margin-top:20px;}.accordion h3 {background:url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/arrow-square.gif) no-repeat scroll 4px 50% #FFFFFF;border-color:#C4C4C4;border-style:solid solid none;border-width:1px 1px medium;cursor:pointer;margin:0;padding:7px 24px;}.accordion h3:hover {background-color: #333333;}.accordion h3.active {background:url(http://www.beingfreeinbabylon.org/2/wp-content/themes/custom-community/images/arrow-square-on.gif) no-repeat scroll #333333;background-position:4px 50%;}.accordion div {background: #ffffff;margin: 0px !important;padding: 20px;border-left: solid 1px #c4c4c4;border-right: solid 1px #c4c4c4;}.accordion div div {background: #ffffff;margin: 15px 0 0 !important;padding: 0;border-left: none;border-right: none;}.accordion h4{line-height:170%;background-color:#ffffff;color:#888888;border:1px solid #c4c4c4;font-size:21px;padding:2px 5px;}.accordion div p{}.accordion div strong,b{}.accordion br{line-height:0px;}div.announcement {float:right;height:60px;padding:10px;position:absolute;right:354px;text-align:center;top:120px;width:230px;font-size:30px;line-height:170%;}div.announcement a {font-size:30px;line-height:170%;}#content .gallery {margin: 0 auto 18px;}#content .gallery .gallery-item {float: left;margin-top: 0;text-align: center;width: 33%;}#content .gallery img {border: none;margin-top:20px;}#content .gallery .gallery-caption {color: #888888;font-size: 12px;margin: 0 0 20px;}#content .gallery dl {margin: 0;}#content .gallery br+br {display: none;}#content .attachment img { display: block;margin: 0 auto;} body.search div.post div.post-content, body.search div.comment-content {margin-left: 0; }div.search-result { margin-bottom: 30px; } body.search div#message p { padding: 10px 0; } body.search ul.item-list li div.item-title {font-size: 20px; margin-bottom:5px; font-weight: bold;}h2.content-title {border-bottom: 1px solid #181818; }div.search-result {background: none repeat scroll 0 0 #333333;margin-bottom: 22px;padding: 20px;}textarea { resize: vertical; } #innerrim {max-width: 1100px;min-width: 1100px;} div#container, body.activity-permalink div#container { }a, div.post p.date a, div.post p.postmetadata a, div.comment-meta a, div.comment-options a, span.highlight, #item-nav a, div.widget ul li a:hover, body {font-family: Arial, sans-serif;}h1, h2, h1 a, h2 a, h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus {font-family: Arial, sans-serif;font-weight:bold;}h1, h2, h1 a, h2 a {}h3, h4, h5, h6, h3 a, h4 a, h5 a, h6 a {font-family: Arial, sans-serif;font-weight:bold;} body.bubble div.post h2.posttitle {line-height: 120%;margin: 0 0 12px;}div.post span.marker {-moz-transform: rotate(45deg);-webkit-transform: rotate(45deg);-o-transform: rotate(45deg);-ms-transform: rotate(45deg);background: none repeat scroll 0 0 #333333;height: 20px;margin: 17px 0 0 -25px;position: absolute;width: 20px;}body.bubble div.post div.post-content {border-radius: 11px;-moz-border-radius: 11px;-webkit-border-radius: 11px; background: none repeat scroll 0 0 #333333;margin-left: 85px;padding: 15px 5px 5px 15px;margin-bottom:8px;}body.bubble div.post p.date { border-top: 1px solid #181818;border-bottom: 1px solid #181818; }body.bubble div.post p.postmetadata { border-top: 1px solid #181818; }body.bubble div.post div.author-box {margin-top: 20px;display: block;} #header {background-image:url(http://www.beingfreeinbabylon.org/2/wp-content/uploads/2012/01/fibHeader.gif);background-repeat: no-repeat;background-position: center 30px;}#header div#logo h1, #header #desc, #header div#logo h4, div#blog-description { display: none; }#access {}div#sidebar {width: 275px;margin-left: -275px;} div.v_line_right {right: 275px;} div#sidebar h3.widgettitle { width: 234px;} div#leftsidebar h3.widgettitle, div#sidebar h3.widgettitle, div.widgetarea h3.widgettitle {-moz-border-radius:0 0 0 0; -webkit-border-radius:0; border-radius:0; margin: 0 0 12px -20px; padding: 5px 22px 5px 20px;background-repeat: no-repeat;}div#leftsidebar h3.widgettitle, div#leftsidebar h3.widgettitle a {-moz-border-radius:0 0 0 0; -webkit-border-radius:0; border-radius:0; margin:0 0 12px -20px; padding:5px 22px 5px 19px;} div#leftsidebar h3.widgettitle, div#sidebar h3.widgettitle, div.widgetarea h3.widgettitle, div#leftsidebar h3.widgettitle a, div#sidebar h3.widgettitle a, div.widgetarea h3.widgettitle a {font-family: Arial, sans-serif;px; ;} </style><!--[if IE]>
<style type="text/css">
.addtoany_list a img{filter:alpha(opacity=70)}
.addtoany_list a:hover img,.addtoany_list a.addtoany_share_save img{filter:alpha(opacity=100)}
</style>
<![endif]-->

   <script type="text/javascript"> jQuery(document).ready( function() { jQuery("a.confirm").click( function() { if ( confirm( 'Are you sure?' ) ) return true; else return false; }); });</script>

   </head>

   <body class="logged-in single single-post postid-331 single-format-standard" id="cc">

<div id="outerrim">

   <div id="innerrim">   
   <div id="header">   
   
          
            
      
        
                
               <div id="logo">
         <h4><a href="http://www.beingfreeinbabylon.org/2" title="Home">Free in Babylon</a></h4>
         <div id="blog-description">Just another WordPress site</div>
                  </div>
                  
      <div id="access">
          <div class="menu">

   
                     <ul>
                     <li id="nav-home">
               <a href="http://www.beingfreeinbabylon.org/2" title="Home">Home</a>
            </li>
                              </ul>
      
                        <ul id="menu-find-freedom-now" class="menu"><li id="menu-item-291" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-291"><a href="http://www.beingfreeinbabylon.org/login.php">Log in</a>
<ul class="sub-menu">
   <li id="menu-item-302" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-302"><a href="http://www.beingfreeinbabylon.org/2/register-2/">Join Now</a></li>

   <li id="menu-item-303" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-303"><a href="http://www.beingfreeinbabylon.org/2/paid-membership/">Paid Memberships and Donations</a></li>
</ul>
</li>
<li id="menu-item-150" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-150"><a href="http://freeinbabylon.org">Freedom&#8230;</a>
<ul class="sub-menu">
   <li id="menu-item-48" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48"><a href="http://www.beingfreeinbabylon.org/actionbeliefcourage/">Finding God Home</a></li>
   <li id="menu-item-49" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49"><a href="http://www.beingfreeinbabylon.org/loveisnotforwimps/">Love is NOT for Wimps Home</a></li>
   <li id="menu-item-50" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-50"><a href="http://www.beingfreeinbabylon.org/lostinla/">Lost in LA Home</a></li>

   <li id="menu-item-292" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-292"><a href="http://www.beingfreeinbabylon.org/forums/babylon-talk/">Babylon Talk Forum</a></li>
</ul>
</li>
<li id="menu-item-294" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-294"><a href="http://www.beingfreeinbabylon.org/">About us</a>
<ul class="sub-menu">
   <li id="menu-item-295" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-295"><a href="http://www.beingfreeinbabylon.org/2/who-am-i/">Who am I?</a></li>
   <li id="menu-item-296" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-296"><a href="http://www.beingfreeinbabylon.org/2/free-in-babylonx/whats-this-all-about/">What&#039;s this all about?</a></li>
</ul>
</li>

<li id="menu-item-293" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-293"><a href="mailto:beinglostinla@gmail.com">Report a Concern&#8230;</a></li>
</ul>
         </div>
      </div>
      
            
      <div class="clear"></div>
   
   </div><!-- #header -->

         
   
   <div id="container">
   
   <div id="content">
      <div class="padder">

         
         <div class="page" id="blog-single">
               
                           
               <div id="post-331" class="post-331 post type-post status-publish format-standard hentry category-uncategorized">
      
                        
                                       <div class="author-box">
                        <img src="http://www.gravatar.com/avatar/516adeab54d228f6a5fb731fa2ba367a?d=http://www.beingfreeinbabylon.org/2/wp-content/plugins/buddypress/bp-core/images/mystery-man.jpg&amp;s=50" alt="Avatar of admin" class="avatar user-1-avatar" width='50' height='50' title='admin' />                                                   <p>by <a href="http://www.beingfreeinbabylon.org/2/members/admin/" title="admin">admin</a></p>
                                             </div>
                                    
                  <div class="post-content" style="">   
                              
                     <h2 class="posttitle"><a href="http://www.beingfreeinbabylon.org/2/2012/01/testvid2/" rel="bookmark" title="Permanent Link to testvid2">testvid2</a></h2>

                                             <p class="date">January 17, 2012 <em>in <a href="http://www.beingfreeinbabylon.org/2/category/uncategorized/" title="View all posts in Uncategorized" rel="category tag">Uncategorized</a>  by <a href="http://www.beingfreeinbabylon.org/2/members/admin/" title="admin">admin</a></em></p>
                     
         
                     <div class="entry">
                                                <div style="background-repeat: no-repeat;"><div id="jw-container">JW Player® appears here.</div>
<p><script type="text/javascript" src="/jwplayer/jwplayer.js"></script></p>
<p><script type="text/javascript">
jwplayer("jw-container").setup({modes: /* JW Player®. */
[
/* First try real-time streaming with Flash® player. */
{type: "flash", provider: "rtmp", src: "/jwplayer/player.swf",
config: {streamer: "rtmp://sx2kg2pfwt7yi.cloudfront.net/cfx/st", file: "video.mp4?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoidmlkZW8ubXA0IiwiQ29uZGl0aW9uIjp7IklwQWRkcmVzcyI6eyJBV1M6U291cmNlSXAiOiIxNjYuMjUwLjY1LjM3LzMyIn0sIkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxMzI3MDgyMTc1fX19XX0_&#038;Signature=mZZ5WQ54xFQExuuqL8~wX7tZqU33cZ9tUwdEmj4b7eRySZtBBEEK0evAvCorodsEizdG0Q6S3L1nd4YeD19XK5Ipe2u~UbQcEMUxpw5CkZ5V-VtH85P0a4UCPwnBo0vP2xM-n7KugIUrsRwFQp9MGIIuFVP3dfbUaIlvme02-d8_&#038;Key-Pair-Id=APKAIJSTEXVC4PFGE2NA"}},</p>
<p>/* Else, try an HTML5 video tag. */
{type: "html5", provider: "video",
config: {file: "http://d15q0sklvx3bb5.cloudfront.net/video.mp4?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cDovL2QxNXEwc2tsdngzYmI1LmNsb3VkZnJvbnQubmV0L3ZpZGVvLm1wNCIsIkNvbmRpdGlvbiI6eyJJcEFkZHJlc3MiOnsiQVdTOlNvdXJjZUlwIjoiMTY2LjI1MC42NS4zNy8zMiJ9LCJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTMyNzA4MjE3NX19fV19&#038;Signature=qO68Ey2uNcHGMCofqbS6Pe24lLYvPsGkU5YZXq~CFfRYCC5Wr0Kv2LzeUFxopuvEo8X8Plsmvl59UJNfd93Azhowl5fJZ8esg-f-pNJTdQ~H19M-3J3ES4nKHaKQbluLsApigSZ5tymkPtDUtKs1iS~FgMq0x9DXrYyqUV5NG-M_&#038;Key-Pair-Id=APKAIJSTEXVC4PFGE2NA"}},</p>
<p>/* Else, this is a safe fallback. */
{type: "download", /* Download the file. */
config: {file: "http://d15q0sklvx3bb5.cloudfront.net/video.mp4?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cDovL2QxNXEwc2tsdngzYmI1LmNsb3VkZnJvbnQubmV0L3ZpZGVvLm1wNCIsIkNvbmRpdGlvbiI6eyJJcEFkZHJlc3MiOnsiQVdTOlNvdXJjZUlwIjoiMTY2LjI1MC42NS4zNy8zMiJ9LCJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTMyNzA4MjE3NX19fV19&#038;Signature=qO68Ey2uNcHGMCofqbS6Pe24lLYvPsGkU5YZXq~CFfRYCC5Wr0Kv2LzeUFxopuvEo8X8Plsmvl59UJNfd93Azhowl5fJZ8esg-f-pNJTdQ~H19M-3J3ES4nKHaKQbluLsApigSZ5tymkPtDUtKs1iS~FgMq0x9DXrYyqUV5NG-M_&#038;Key-Pair-Id=APKAIJSTEXVC4PFGE2NA"}}
],
/* Set video dimensions. */ width: 640, height: 480
});
</script></p>

</div><div class="addtoany_share_save_container"><div class="a2a_kit a2a_target addtoany_list" id="wpa2a_1"><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.beingfreeinbabylon.org/2/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></div>
<script type="text/javascript"><!--
wpa2a.script_load();
//--></script>
</div>                              
                        <div class="clear"></div>
                                             </div>
                        
                     <div class="clear"></div>
         
                                             
                        
                     
                                             <p class="postmetadata"><span class="comments"><a href="http://www.beingfreeinbabylon.org/2/2012/01/testvid2/#respond" title="Comment on testvid2">No Comments &#187;</a></span></p>
                                                
                        
            
                     <div class="alignleft"><a href="http://www.beingfreeinbabylon.org/2/2012/01/test-videop/" rel="prev"><span class="meta-nav">&larr;</span> test videop</a></div>
                     <div class="alignright"></div>

                  </div>
               </div>
   
               <p><a class="post-edit-link" href="http://www.beingfreeinbabylon.org/2/wp-admin/post.php?post=331&amp;action=edit" title="Edit Post">Edit this entry.</a></p>   
                  <div id="comments">
   
   
   
                           <div id="respond">
            <h3 id="reply-title">Leave a reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2/2012/01/testvid2/#respond" style="display:none;">Cancel reply</a></small></h3>
                           <form action="http://www.beingfreeinbabylon.org/2/wp-comments-post.php" method="post" id="commentform">
                                                                                                                  <p class="form-textarea"><textarea name="comment" id="comment" cols="60" rows="10" aria-required="true"></textarea></p>                  <p class="form-allowed-tags">You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:  <code>&lt;a href=&quot;&quot; title=&quot;&quot;&gt; &lt;abbr title=&quot;&quot;&gt; &lt;acronym title=&quot;&quot;&gt; &lt;b&gt; &lt;blockquote cite=&quot;&quot;&gt; &lt;cite&gt; &lt;code&gt; &lt;del datetime=&quot;&quot;&gt; &lt;em&gt; &lt;i&gt; &lt;q cite=&quot;&quot;&gt; &lt;strike&gt; &lt;strong&gt; </code></p>                  <p class="form-submit">

                     <input name="submit" type="submit" id="submit" value="Post Comment" />
                     <input type='hidden' name='comment_post_ID' value='331' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
                  </p>
                  <input type="hidden" id="_wp_unfiltered_html_comment" name="_wp_unfiltered_html_comment" value="899f8b1ecb" /><p class="comment-subscription-form"><input type="checkbox" name="subscribe_comments" id="subscribe_comments" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;" /> <label class="subscribe-label" id="subscribe-label" for="subscribe_comments">Notify me of follow-up comments by email.</label></p><p class="comment-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;" /> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog">Notify me of new posts by email.</label></p>               </form>
                     </div><!-- #respond -->
                  

</div><!-- #comments -->
      
                        </div>

         
      </div><!-- .padder -->
   </div><!-- #content -->

      <div class="v_line v_line_right"></div>
<div id="sidebar" class="widgetarea">
   <div class="right-sidebar-padder">

      <div id="blog_subscription-2" class="widget jetpack_subscription_widget"><h3 class="widgettitle"><label for="subscribe-field">Subscribe to Blog via Email</label></h3>

      <a name="subscribe-blog"></a>
      <form action="" method="post" accept-charset="utf-8" id="subscribe-blog">
         <p></p>
         <p><input type="text" name="email" style="width: 95%; padding: 1px 2px" value="joseph.brodnax@gmail.com" id="subscribe-field" onclick="if ( this.value == 'Email Address' ) { this.value = ''; }" onblur="if ( this.value == '' ) { this.value = 'Email Address'; }" /></p>

         <p>
            <input type="hidden" name="action" value="subscribe" />
            <input type="hidden" name="source" value="http://www.beingfreeinbabylon.org/2/2012/01/testvid2/" />
            <input type="hidden" name="sub-type" value="widget" />

            <input type="hidden" name="redirect_fragment" value="blog_subscription-2" />
            <input type="hidden" id="_wpnonce" name="_wpnonce" value="b57974ff42" />            <input type="submit" value="Subscribe" name="jetpack_subscriptions_widget" />
         </p>
      </form>

      
</div><div class="clear"></div><div id="twitter-2" class="widget widget_twitter"><h3 class="widgettitle"><a href='http://twitter.com/freeinbabylon'>Twitter Updates</a></h3><ul class="tweets">
<li>&quot;Do you have any idea what birds DO in a nest?&quot; Soup and God, <a href="http://t.co/zzgtWsSb" rel="nofollow">http://t.co/zzgtWsSb</a> Share.if.you.dare//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/160044557252308992" class="timesince">53&nbsp;minutes&nbsp;ago</a></li>

<li>Good stuff....The Threat of Heresy in the Organic Church by Neil Cole | CMA Resources <a href="http://t.co/HYPp5VFG" rel="nofollow">http://t.co/HYPp5VFG</a>//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/159826696063827968" class="timesince">15&nbsp;hours&nbsp;ago</a></li>
<li>&quot;&#039;shakabuku&#039; (The swift spiritual kick to the head that alters your reality forever)&quot; : <a href="http://t.co/7JIDs7QZ" rel="nofollow">http://t.co/7JIDs7QZ</a> Share.if.you.dare//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/157884484346322946" class="timesince">5&nbsp;days&nbsp;ago</a></li>

<li>&quot;God and Christianity is about freedom.&quot; No Fear?, <a href="http://t.co/TK4UZ5Ar" rel="nofollow">http://t.co/TK4UZ5Ar</a> Share.if.you.dare//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/157879024855691265" class="timesince">6&nbsp;days&nbsp;ago</a></li>
<li>&quot;If you have a gift from God and reject it by looking back you become inorganic.&quot; Delivered, <a href="http://t.co/750lcglH" rel="nofollow">http://t.co/750lcglH</a> Share.if.you.dare//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/157189342530502657" class="timesince">1&nbsp;week&nbsp;ago</a></li>

<li>&quot;Accusers come in many shapes an sizes.&quot; I&#039;m not alone... : <a href="http://t.co/HOgxVrw6" rel="nofollow">http://t.co/HOgxVrw6</a> Share.if.you.dare//Share.If.You.Dare.<a href="http://twitter.com/freeinbabylon/statuses/155399110533464066" class="timesince">1&nbsp;week&nbsp;ago</a></li>
</ul>
</div><div class="clear"></div>   
   
   
   </div><!-- .padder -->
</div><!-- #sidebar -->


      
      </div> <!-- #container -->      

            
            
      <div id="footer">
         <!-- Footer Credits

            If you appreciate our work, please leave the footer credits.
            If you still want to delete or change them, you can find the concerning code in core/includes/theme-generator/theme-generator.php
         -->
            
         
           
             
             
        <div class="clear"></div>
        <br />
      <br />
      <div class="credits">Free in Babylon is proudly powered by <a class="credits" href="http://wordpress.org">WordPress</a> and <a class="credits" href="http://buddypress.org">BuddyPress</a>.       Just another <a class="credits" href="http://themekraft.com/all-themes/" target="_blank" title="Wordpress Theme" alt="WordPress Theme">WordPress Theme</a> developed by Themekraft.</div>

         </div><!-- #footer -->

      </div><!-- #innerrim -->
   </div><!-- #outerrim -->

   <div id="wp-admin-bar"><div class="padder"><a href="http://www.beingfreeinbabylon.org/2" id="admin-bar-logo">Free in Babylon</a><ul class="main-nav"><li id="bp-adminbar-account-menu"><a href="http://www.beingfreeinbabylon.org/2/members/admin/">My Account</a><ul><li class="alt"><a id="bp-admin-activity" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/">Activity</a><ul><li class="alt"><a id="bp-admin-just-me" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/just-me/">Personal</a></li><li><a id="bp-admin-activity-mentions" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/mentions/">Mentions</a></li><li class="alt"><a id="bp-admin-activity-favs" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/favorites/">Favorites</a></li><li><a id="bp-admin-activity-friends" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/friends/">Friends</a></li><li class="alt"><a id="bp-admin-activity-groups" href="http://www.beingfreeinbabylon.org/2/members/admin/activity/groups/">Groups</a></li></ul></li><li><a id="bp-admin-xprofile" href="http://www.beingfreeinbabylon.org/2/members/admin/profile/">Profile</a><ul><li class="alt"><a id="bp-admin-public" href="http://www.beingfreeinbabylon.org/2/members/admin/profile/public/">Public</a></li><li><a id="bp-admin-edit" href="http://www.beingfreeinbabylon.org/2/members/admin/profile/edit/">Edit</a></li><li class="alt"><a id="bp-admin-change-avatar" href="http://www.beingfreeinbabylon.org/2/members/admin/profile/change-avatar/">Change Avatar</a></li></ul></li><li class="alt"><a id="bp-admin-messages" href="http://www.beingfreeinbabylon.org/2/members/admin/messages/">Messages <span>0</span></a><ul><li class="alt"><a id="bp-admin-inbox" href="http://www.beingfreeinbabylon.org/2/members/admin/messages/inbox/">Inbox</a></li><li><a id="bp-admin-sentbox" href="http://www.beingfreeinbabylon.org/2/members/admin/messages/sentbox/">Sent</a></li><li class="alt"><a id="bp-admin-compose" href="http://www.beingfreeinbabylon.org/2/members/admin/messages/compose/">Compose</a></li><li><a id="bp-admin-notices" href="http://www.beingfreeinbabylon.org/2/members/admin/messages/notices/">Notices</a></li></ul></li><li><a id="bp-admin-friends" href="http://www.beingfreeinbabylon.org/2/members/admin/friends/">Friends <span>0</span></a><ul><li class="alt"><a id="bp-admin-friends-my-friends" href="http://www.beingfreeinbabylon.org/2/members/admin/friends/my-friends/">Friendships</a></li><li><a id="bp-admin-requests" href="http://www.beingfreeinbabylon.org/2/members/admin/friends/requests/">Requests</a></li></ul></li><li class="alt"><a id="bp-admin-groups" href="http://www.beingfreeinbabylon.org/2/members/admin/groups/">Groups <span>0</span></a><ul><li class="alt"><a id="bp-admin-groups-my-groups" href="http://www.beingfreeinbabylon.org/2/members/admin/groups/my-groups/">Memberships</a></li><li><a id="bp-admin-invites" href="http://www.beingfreeinbabylon.org/2/members/admin/groups/invites/">Invitations</a></li></ul></li><li><a id="bp-admin-settings" href="http://www.beingfreeinbabylon.org/2/members/admin/settings/">Settings</a><ul><li class="alt"><a id="bp-admin-general" href="http://www.beingfreeinbabylon.org/2/members/admin/settings/general/">General</a></li><li><a id="bp-admin-notifications" href="http://www.beingfreeinbabylon.org/2/members/admin/settings/notifications/">Notifications</a></li></ul></li><li class="alt"><a id="bp-admin-logout" class="logout" href="http://www.beingfreeinbabylon.org/2/wp-login.php?action=logout&amp;redirect_to=http%3A%2F%2Fwww.beingfreeinbabylon.org%2F2&amp;_wpnonce=ca304b9ec7">Log Out</a></li></ul></li><li id="bp-adminbar-thisblog-menu"><a href="http://www.beingfreeinbabylon.org/2/wp-admin/">Dashboard</a><ul><li class="alt"><a href="http://www.beingfreeinbabylon.org/2/wp-admin/post-new.php">New Post</a></li><li><a href="http://www.beingfreeinbabylon.org/2/wp-admin/edit.php">Manage Posts</a></li><li class="alt"><a href="http://www.beingfreeinbabylon.org/2/wp-admin/edit-comments.php">Manage Comments</a></li></ul></li><li id="bp-adminbar-notifications-menu"><a href="http://www.beingfreeinbabylon.org/2/members/admin/">Notifications</a><ul>

      <li><a href="http://www.beingfreeinbabylon.org/2/members/admin/">No new notifications.</a></li>

   </ul></li>
   <li class="align-right" id="bp-adminbar-visitrandom-menu">
      <a href="#">Visit</a>
      <ul class="random-list">
         <li><a href="http://www.beingfreeinbabylon.org/2/members/?random-member" rel="nofollow">Random Member</a></li>

         
            <li class="alt"><a href="http://www.beingfreeinbabylon.org/2/groups/?random-group"  rel="nofollow">Random Group</a></li>

         
         
         
      </ul>
   </li>

   </ul></div></div><!-- #wp-admin-bar -->


<script type="text/javascript"><!--
wpa2a.targets=[
{title:'testvid2',url:'http://www.beingfreeinbabylon.org/2/2012/01/testvid2/'}];
wpa2a.html_done=true;if(wpa2a.script_ready&&!wpa2a.done)wpa2a.init();wpa2a.script_load();
//--></script>

<!-- Generated in 0.607 seconds. (66 q) -->

   <div class="ws-plugin--s2member-s-badge">
<a href="http://www.s2member.com/" onclick="window.open('http://www.s2member.com/s-badges/s-details.php?v=2&amp;site_url=http%3A%2F%2Fwww.beingfreeinbabylon.org%2F2', '_popup', 'width=752,height=702,left='+((screen.width/2)-(752/2))+',screenX='+((screen.width/2)-(752/2))+',top='+((screen.height/2)-(702/2))+',screenY='+((screen.height/2)-(702/2))+',location=0,menubar=0,toolbar=0,scrollbars=0,resizable=1'); return false;" title="s2Member&reg;"><img src="//www.s2member.com/s-badges/s-badge.php?v=2&amp;site_url=http%3A%2F%2Fwww.beingfreeinbabylon.org%2F2" style="border:0;" alt="s2Member&reg;" title="s2Member&reg; ( Security for WordPress&reg; )" /></a>
</div><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?aa&#038;ver=3.3.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WPGroHo = {"my_hash":"516adeab54d228f6a5fb731fa2ba367a"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-content/plugins/jetpack/modules/wpgroho.js?ver=3.3.1'></script>
   <div style="display:none">
   <div class="grofile-hash-map-516adeab54d228f6a5fb731fa2ba367a">
   </div>
   </div>

<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.8.16'></script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.8.16'></script>
<script type='text/javascript' src='http://www.beingfreeinbabylon.org/2/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js?ver=1.8.16'></script>

   </body>

</html