<?php//Using hooks is absolutely the smartest,most bulletproof way to implement things like plugins,//custom design elements,and ads. You can add your hook calls below,and they should take the//following form://add_action('thesis_hook_name','function_name');//The function you name above will run at the location of the specified hook. The example//hook below demonstrates how you can insert Thesis' default recent posts widget above
// the content in Sidebar 1:
// add_action('thesis_hook_before_sidebar_1', 'thesis_widget_recent_posts');
// Delete this line, including the dashes to the left, and add your hooks in its place.
remove_action('thesis_hook_footer', 'thesis_attribution');
function copyright() {
		echo '<p>Copyright &copy;2010 <a href="http://goingwimax.com">GoingWimax.com</a>. all rights reserved.</p>';
}
add_action('thesis_hook_footer', 'copyright', '99');
//Register Menus
add_action( 'init', 'register_my_menu' );
function register_my_menu() {
	register_nav_menus(
		array(
		  'primary' => __('Primary Menu', 'thesis'),
		  'theme-menu' => __( 'Main Navigation Menu', 'thesis' )
		)
	);
}
remove_action('thesis_hook_after_post', 'thesis_comments_link');
/* Image Sizes
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150 );
add_image_size( 'teaser-image', 150, 150, true);
add_action('thesis_hook_before_post','add_thumbnail');
function add_thumbnail() {
if(has_post_thumbnail() && is_single()):
echo '<p>'.get_the_post_thumbnail().'</p>';
elseif(has_post_thumbnail()):
echo '<p><a href="'.get_permalink().'">'.get_the_post_thumbnail().'</a></p>';
endif;
}
add_action('thesis_hook_before_teaser','teaser_thumbnail');
function teaser_thumbnail() {
if(has_post_thumbnail()):
echo '<p><a href="'.get_permalink().'">';	the_post_thumbnail('teaser-image');
echo '</a></p>';
endif;
}
*/
// category navigation
function cat_nav() { ?>
<div id="cat-container"><ul id="cat_tabs" class="cat-menu">
	<ul>	
	<?php //list_cats(); ?>
	<?php //wp_nav_menu( array( 'theme_location' => 'Main Navigation Menu' ) ); ?>
	<?php thesis_theme_menu(); ?>
</ul></div>
<?php }
add_action('thesis_hook_after_header','cat_nav');
// main menu navigation
remove_action('thesis_hook_before_header', 'thesis_nav_menu');
function full_width_nav() { ?>
	<div id="nav_area" class="full_width">
		<div class="page">
			<?php thesis_nav_menu(); ?>
<div class="nav_container">
<?php thesis_search_form(); ?>
			</div>
		</div>
	</div>
<?php }
add_action('thesis_hook_before_html', 'full_width_nav');
// banner ads in header
function top_banner() {
?>
<div id="top_banner"><img src="wp-content/uploads/runcom_ad.png"></div>
<?php
}
add_action('thesis_hook_header', 'top_banner');
//banner ads in sidebar
function sidebar_ad() { 
?>
<div id="sidebar_ads">
<script type='text/javascript'>
GA_googleFillSlot("GoingWimax-140x600-sidebar");
</script>
</div>
<div id="sidebar_ads">
<script type='text/javascript'>
GA_googleFillSlot("LTE_300x250");
</script>
</div>
<div id="sidebar_ads">
<script type='text/javascript'>
GA_googleFillSlot("200x200");
</script>
</div>
<?php
}
add_action('thesis_hook_after_sidebar_1', 'sidebar_ad');
//facebook box
function facebook_box() { 
?>
<div id="facebook_box">
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FGoing-Wimax%2F161221755798&amp;
width=292&amp;
connections=5&amp;
stream=false&amp;
header=false&amp;
height=190" scrolling="no" frameborder="0" style="border:none;
overflow:hidden;
width:292px;
height:190px;"
allowTransparency="true"></iframe>
</div>
<?php
}
add_action('thesis_hook_after_sidebar_1', 'facebook_box');
// featured image
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 180, 180 );
add_action('thesis_hook_before_post','add_thumbnail');
function add_thumbnail() {
if(has_post_thumbnail() && is_single()):
echo '<p>'.get_the_post_thumbnail().'</p>';
elseif(has_post_thumbnail()):
echo '<p><a href="'.get_permalink().'">'.get_the_post_thumbnail().'</a></p>';
endif;
}
// byline
function custom_byline() { ?>
<p class="headline_meta"><?php the_author_posts_link();?> on <abbr class="published" title="<?php echo get_the_time('Y-m-d'); ?>"><?php echo get_the_time(get_option('date_format')); ?></abbr>
 &nbsp; <span><a href="<?php the_permalink(); ?>#comments" rel="nofollow"> 
<?php comments_number(__('', 'thesis'), __('&#124 &nbsp;1 comment', 'thesis'), __('&#124 &nbsp;% comments', 'thesis')); ?></a></span></p>
<?php }
add_action('thesis_hook_before_post', 'custom_byline');
// share widgets
function digg_digg() { ?><?php if (is_home()){?>
<div class="digg">
<?php dd_google1_generate('tall') ?>
</br>
<?php dd_twitter_generate('Normal','twitter_username') ?>
</br>
<?php dd_fbshare_generate('Normal') ?>
</br>
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script> 
</div><?php } ?>
<?php }
add_action('thesis_hook_before_post', 'digg_digg');function digg_digg2() { ?><?php if (is_home()!=1&&is_single()!=1&&is_page()!=1){?><div class="digg"><?php dd_google1_generate('tall') ?></br><?php dd_twitter_generate('Normal','twitter_username') ?></br><?php dd_fbshare_generate('Normal') ?></div><?php } ?><?php }add_action('thesis_hook_before_post', 'digg_digg2');
// page navigation
function numbered_page_nav($prelabel = '', $nxtlabel = '', $pages_to_show = 15, $always_show = false) {
	global $request, $posts_per_page, $wpdb, $paged;
	$custom_range = round($pages_to_show/2);
	if (!is_single()) {
		if(!is_category()) {
			preg_match('#FROM\s(.*)\sORDER BY#siU', $request, $matches);
		}
		else {
			preg_match('#FROM\s(.*)\sGROUP BY#siU', $request, $matches);
		}
		$blog_post_count = $matches[1];
		$numposts = $wpdb->get_var("SELECT COUNT(DISTINCT ID) FROM $blog_post_count");
		$max_page = ceil($numposts /$posts_per_page);
		if(empty($paged)) {
			$paged = 1;
		}
		if($max_page > 1 || $always_show) {
			echo "<div class='page-nav'><div class='page-nav-intro'>Page $paged of $max_page</div>";
			if ($paged >= ($pages_to_show-2)) {
				echo '<div class="page-number"><a href="'.get_pagenum_link().'">1</a></div><div class="elipses">...</div>';
			}
			for($i = $paged - $custom_range; $i <= $paged + $custom_range; $i++) {
				if ($i >= 1 && $i <= $max_page) {
					if($i == $paged) {
						echo "<div class='current-page-number'>$i</div>";
					}
					else {
						echo '<div class="page-number"><a href="'.get_pagenum_link($i).'">'.$i.'</a></div>';
					}
				}
			}
			if (($paged+$custom_range) < ($max_page)) {
				echo '<div class="elipses">...</div><div class="page-number"><a href="'.get_pagenum_link($max_page).'">'.$max_page.'</a></div>';
			}
			echo "</div>";
		}
	}
}
remove_action('thesis_hook_after_content', 'thesis_post_navigation');
add_action('thesis_hook_after_content', 'numbered_page_nav');
/* Custom 404 Page */
function custom_thesis_404_title() {
?>
<?
}
remove_action('thesis_hook_404_title', 'thesis_404_title');
add_action('thesis_hook_404_title', 'custom_thesis_404_title');
function custom_thesis_404_content() {
?>
<img src="http://www.goingwimax.com/goingwimaxsda/lost-wimax.jpg">
<div id="error-header">The page you were looking for appears to have moved, deleted or does not exist.</div>
<div id="error-body">
<p><a href="http://www.goingwimax.com">Return to the home page</a></p>
<p><a href="http://goingwimax.com/contact/">Let us know about this error</a></p>
<p>Search this site: <?php thesis_search_form(); ?></p>
</div>
<?
}
remove_action('thesis_hook_404_content', 'thesis_404_content');
add_action('thesis_hook_404_content', 'custom_thesis_404_content');
/* Author Box */
function post_footer() {
if (is_single())
{
?>
<div class="postauthor">
<?php echo get_avatar( get_the_author_id() , 120 ); ?>
<h4>Article by <?php the_author_posts_link(); ?></h4>
<p><?php the_author_firstname(); ?> has written <strong><?php the_author_posts(); ?></strong> articles for GoingWimax. <br/><br/><?php the_author_description(); ?></p>
</div>
<?php
}
}
add_action('thesis_hook_after_post_box', 'post_footer');
.full_width{width:100%;clear:both}.full_width .page{max-width:1000px;margin:0 auto;padding-right:0;padding-left:0}#header_area .page{padding-top:0}#footer_area .page{padding-bottom:0}#header,#footer{padding-right:1em;padding-left:1em}#content_box{width:100%;background:url(//www.goingwimax.com/wpcontent/themes/thesis_18/custom/../lib/images/dot-ddd.gif) 67.1em 0 repeat-y}.no_sidebars{background:0 0 !important}.no_sidebars #content{width:100%}.post_box,.teasers_box,.full_width #content_box .page{margin:0 2.1em 0 1em}.full_width #content_box .page{width:auto}.no_sidebars .post_box{margin:0 1em}.teasers_box{width:64em}.teaser{width:31em}#archive_intro,.prev_next{padding-right:2.1em;padding-left:1em}#sidebars{width:33.2em;border:0;float:right}.sidebar{width:100%}#sidebar_1{border:0}.sidebar ul.sidebar_list{padding-right:1em;padding-left:1em}.menu ul,.menu ul li{width:15em}.menu ul ul,.menu :hover ul :hover ul{left:14.9em}.menu li:hover ul,.menu a:hover ul{left:-.1em}.menu{border-width:0 0 .1em .1em}#multimedia_box{padding:1em}#image_box img{display:block;padding:.1em;border-width:.1em}#image_box img.square{width:30.8em;height:30.8em}#image_box img.four_by_three{width:30.8em;height:23.1em}#image_box img.three_by_four{width:30.8em;height:41.1em}#image_box img.three_by_two{width:30.8em;height:20.5em}#image_box img.two_by_three{width:30.8em;height:46.2em}#image_box img.five_by_four{width:30.8em;height:24.6em}#image_box img.four_by_five{width:30.8em;height:38.5em}#image_box img.sixteen_by_nine{width:30.8em;height:17.3em;margin:0 auto}#image_box img.nine_by_sixteen{width:30.8em;height:54.8em;margin:0 auto}#image_box img.two_by_one{width:30.8em;height:15.4em}#image_box img.one_by_two{width:30.8em;height:61.6em}#comments{margin-right:2.1em;margin-left:0}.comments_intro,#respond_intro{margin-left:1em}dl#comment_list dt,#trackback_list{padding-right:1em;padding-left:1em}dl#comment_list dd{padding-left:1em}dl#comment_list dd .format_text,dl#comment_list dd #respond{padding-right:1em}dl#comment_list dl dt{padding-left:2em;border-width:0 0 0 .1em}dl#comment_list dl dt.bypostauthor{padding-left:1.9em;border-width:0 0 0 .2em}dl#comment_list dl dd{padding-left:0}dl#comment_list dl dd .format_text{padding-left:1.5em;border-width:0 0 0 .077em}dl#comment_list dl dd.bypostauthor>.format_text{padding-left:1.5em;border-width:0 0 0 .154em}dl#comment_list dl dd dl{padding-left:2em}#commentform{padding-right:2.1em;padding-left:1em}.comments_closed,.login_alert{margin-left:1em}body{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}#header{padding-top:2em;padding-bottom:2em}.post_box{padding-top:2em}.headline_area{margin-bottom:2em}.teasers_box{padding-top:2em;padding-bottom:2em}#multimedia_box{margin-bottom:2em}#footer{padding-top:1em;padding-bottom:1em}#header #logo{font-size:3.6em;line-height:1.167em}#header #tagline{font-size:1.4em;line-height:1.429em}.menu table{bottom:-.1em}.nav,.menu li ul{border-width:0 0 .1em}.menu li{margin-bottom:-.1em}.menu li ul{margin-top:-.1em}.menu ul ul{margin-top:0}.menu a{font-size:1.1em;line-height:1.273em;padding:.636em .818em;border-width:.091em;border-left-width:0}.menu ul a{width:11.818em;border-left-width:.091em}.headline_area h1,.headline_area h2,#archive_intro h1{font-size:2em;line-height:1.4em;font-family:"Droid Serif",Calibri,"Times New Roman",serif}.format_text h2,.format_text h3,.format_text h4,.format_text h5,.format_text h6{font-family:"Droid Serif",Calibri,"Times New Roman",serif}.format_text h2,.format_text h3{font-size:1.308em;line-height:1.176em;margin:1.765em 0 .588em}.format_text h4{font-size:1em}.format_text h5{font-size:.769em}.format_text h6{font-size:.769em}.teaser h2{font-family:"Droid Serif",Calibri,"Times New Roman",serif}.sidebar h3{font-size:1em;line-height:1.385em;margin-bottom:.692em}#archive_intro h1{margin-bottom:1em}.headline_meta{font-size:1em;line-height:1.8em}.headline_meta .pad_left{padding-left:.9em}.headline_area img.alignleft{margin:0 2em 2em 0}.headline_area img.alignright{margin:0 0 2em 2em}.headline_area img.alignnone{margin:0 auto 2em 0}.headline_area img.aligncenter{margin:0 auto 2em auto}.headline_area img.frame{padding:.9em;border-width:.1em}.format_text{font-size:1.3em;line-height:1.538em}.format_text p{margin-bottom:1.538em}.format_text p.note,.format_text p.alert{padding:.538em .769em}.format_text .drop_cap{font-size:3.538em;line-height:.739em;padding:.043em .13em 0 0}.ie6 .format_text .drop_cap{padding-right:.065em}.format_text acronym,.format_text abbr{font-size:.769em}.format_text code,.format_text pre{font-family:Consolas,"Andale Mono",Monaco,Courier,"Courier New",Verdana,sans-serif}.format_text code{font-size:.923em}.format_text pre{font-size:.923em;line-height:1.5em;margin-bottom:1.667em;padding:.583em .833em}.format_text sub,.format_text sup{line-height:.769em}.format_text ul{margin:0 0 1.538em 1.538em}.format_text ol{margin:0 0 1.538em 1.538em}.format_text ul ul,.format_text ul ol,.format_text ol ul,.format_text ol ol{margin:0 0 0 1.538em}.format_text dl{margin-bottom:1.538em}.format_text dd{margin-bottom:1.538em}.format_text blockquote{margin:0 0 1.538em .769em;padding-left:.769em}.format_text blockquote.right,.format_text blockquote.left{width:45%;font-size:1.308em;line-height:1.176em}.format_text blockquote.right{margin:0 0 1.176em 1.176em}.format_text blockquote.left{margin:0 1.176em 1.176em 0}.format_text img.left,.format_text img.alignleft,.wp-caption.alignleft{margin:0 1.538em 1.538em 0}.format_text img.right,.format_text img.alignright,.wp-caption.alignright{margin:0 0 1.538em 1.538em}.format_text img.center,.format_text img.aligncenter,.wp-caption.aligncenter{margin:0 auto 1.538em auto}.format_text img.block,.format_text img.alignnone,.wp-caption.alignnone{margin:0 auto 1.538em 0}.format_text img[align=left]{margin-right:1.538em;margin-bottom:1.538em}.format_text img[align=right]{margin-bottom:1.538em;margin-left:1.538em}.format_text img[align=middle]{margin-bottom:1.538em}.format_text img.frame,.format_text .wp-caption{padding:.692em;border-width:.077em}.format_text img.stack{margin-left:1.538em}.format_text .wp-caption p{font-size:.846em;line-height:1.455em;margin-bottom:0}.format_text .ad{margin-left:1.538em}.format_text .ad_left{margin-right:1.538em}.format_text .to_comments{font-size:.846em;line-height:1.818em;margin-bottom:1.818em}.format_text .to_comments span{font-size:1.818em}.format_text .post_tags{font-size:.846em;line-height:1.818em;margin-bottom:1.818em}#custom_box{font-size:1.3em;line-height:1.538em}#archive_intro{padding-top:2em}.prev_next{padding-top:1em;padding-bottom:1em}.prev_next p{font-size:1em;line-height:2em}.post_nav .previous{margin-bottom:.5em}.post_nav a{font-size:1.3em;line-height:1.538em}#comments{margin-top:4em}.comments_intro{margin-bottom:1em}.comments_intro p{font-size:1.1em;line-height:1.818em}.comments_intro span{font-size:1.818em}#comment_list,#trackback_list{margin-bottom:4em}dl#comment_list dt{padding-top:1.6em}dl#comment_list dt span{font-size:1.1em;line-height:1.818em}dl#comment_list dt .comment_author{font-size:1.5em;line-height:1.333em;padding-right:.667em}.avatar img{margin-left:.909em}.comment_time{padding-right:.909em}.comment_num{padding-left:.909em}.comment_num a{font-size:1em;line-height:1.818em;padding:.091em .273em}dl#comment_list dd{padding-top:1em}dl#comment_list dd p.reply a{font-size:.769em;line-height:1.8em}dl#comment_list dl dd p.reply{margin-bottom:0}dl#comment_list dl dt,dl#comment_list dl dd{padding-top:0}dl#comment_list dl dd .format_text{margin-bottom:1.538em}#trackback_list{padding-top:1em;list-style:none}#trackback_list a{font-size:1.3em;line-height:1.538em}#trackback_list span{font-size:1.1em;line-height:1.818em}#comment_nav_2{margin-top:-4em;margin-bottom:4em}.comments_closed{margin-top:4em;margin-bottom:2em}#respond{margin-bottom:4em}#respond_intro{margin-bottom:1em}#respond_intro p{font-size:1.6em;line-height:1.25em}#cancel-comment-reply-link{font-size:1.1em;line-height:1em;padding:.545em .727em;border-width:.182em}.login_alert{margin-top:4em;margin-bottom:2em;padding:1em}#commentform{padding-top:1em}#commentform p,.login_alert p{font-size:1.3em;line-height:1.538em}#commentform p.comment_box{line-height:.769em}#commentform label{padding-left:.769em}#commentform textarea{height:12.308em;line-height:1.538em}#commentform span.allowed{width:97.3%;padding-top:.538em;padding-bottom:.538em;border-width:0 .077em .077em}#commentform span.allowed span{font-size:.846em;line-height:1.818em;padding:0 .636em}#commentform p.subscribe-to-comments{font-size:1.3em}#commentform p.subscribe-to-comments label{font-size:1em}#column_wrap .sidebar ul.sidebar_list{padding-top:2em}li.widget{font-size:1.3em;line-height:1.385em;margin-bottom:2.769em}li.tag_cloud{line-height:1.692em}li.widget p{margin-bottom:1.385em}li.widget abbr,li.widget acronym{font-size:.846em}li.widget code{font-size:.923em}li.widget ul li{margin-bottom:.692em}li.widget li ul{margin:.692em 0 0 1.385em}li.widget .widget_box{padding:.692em;border-width:.077em}li.thesis_widget_google_cse form input[type=submit]{font-size:1em;margin-top:.462em;padding:.154em .231em}#calendar_wrap a{padding:.077em}#calendar_wrap a:hover{padding:.077em}table#wp-calendar caption{font-size:.846em;line-height:2em}table#wp-calendar th{font-size:.846em;line-height:2em;padding-top:.091em}table#wp-calendar td{line-height:1.692em}table#wp-calendar td#next,table#wp-calendar td#prev{font-size:.846em;line-height:2em}table#wp-calendar td#next{padding-right:.545em}table#wp-calendar td#prev{padding-left:.545em}input,textarea{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}.format_text input,#commentform input,#commentform textarea{width:45%;padding:.231em;border-width:.077em}#commentform textarea{width:96%}.format_text input.form_submit,#commentform .form_submit{font-size:1.154em;padding:.333em .267em}.sidebar .text_input,.sidebar .form_submit{padding:.308em;font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}.sidebar input[type=text],.sidebar input[type=submit]{padding:.308em;font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}#footer p{font-size:1.2em;line-height:1.667em}ul.sidebar_list{padding-top:2em}.teaser h2{font-size:1.6em;line-height:1.375em}.teaser .format_teaser{font-size:1.2em;line-height:1.5em;margin-top:1.5em;margin-bottom:1.5em}.teaser .teaser_author,.teaser .teaser_category,.teaser .teaser_date,.teaser .teaser_comments,.teaser .edit_post{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}.teaser .teaser_author{font-size:1em;line-height:1.6em}.teaser .teaser_category{font-size:1em;line-height:1.6em}.teaser .teaser_date{font-size:1em;line-height:1.6em}.teaser .teaser_comments{font-size:1em;line-height:1.6em}.teaser .teaser_link{font-size:1.2em;line-height:1.5em}.teaser .post_tags{font-size:1.1em;line-height:1.636em}.teaser .edit_post{padding-left:.8em}.teaser .post_image_link img.alignleft{margin-right:1.8em;margin-bottom:1.8em}.teaser .post_image_link img.alignright{margin-left:1.8em;margin-bottom:1.8em}.teaser .post_image_link img.aligncenter{margin-bottom:1.8em}.teaser .post_image_link img.alignnone{margin:0 auto 1.8em 0}.teaser .post_image_link img.frame{padding:.8em;border-width:.1em}.teaser .format_teaser .post_image_link img.alignleft{margin-right:.75em;margin-bottom:0}.teaser .format_teaser .post_image_link img.alignright{margin-left:.75em;margin-bottom:0}.teaser .format_teaser .post_image_link img.aligncenter{margin-bottom:1.5em}.teaser .format_teaser .post_image_link img.frame{padding:.333em;border-width:.083em}body{color:#000;background:#fff}.full_width>.page{background:#fff}a,h2 a:hover,#logo a:hover{color:#2361a1}#logo,#logo a{color:#111}#tagline{color:#888}h1,h2,h2 a{color:#000}.headline_meta,.headline_meta a,.teaser_author,.teaser_date,.teaser .edit_post,.teaser_author a,.teaser_comments,.teaser_category,.teaser .edit_post a{color:#888}.headline_meta a:hover,.teaser_author a:hover,.teaser_comments:hover,.teaser_category:hover,.teaser .edit_post a:hover{color:#000}code,pre{color:#111}.sidebar h3{color:#555}#multimedia_box{color:#111}.image_box{background:#eee}.video_box{background:#000}.custom_box{background:#eee}#footer,#footer a{color:#888}#footer a:hover{color:#000}.menu,.menu a,.menu li ul{border-color:#ddd}.menu .current a,.menu .current-cat a,.menu .current-menu-item a{border-bottom-color:#fff}.menu ul .current a,.menu ul .current-cat a,.menu .current ul a,.menu .current-cat ul a,.menu ul .current-menu-item a{border-bottom-color:#ddd}.menu a,.menu .current ul a,.menu .current-cat ul a,.menu .current-menu-item ul a{color:#111;background:#efefef}.menu a:hover,.menu .current ul a:hover,.menu .current-cat ul a:hover,.menu .current-parent a:hover,.menu .current-menu-item ul a:hover,.menu .current-menu-ancestor a:hover{color:#111;background:#ddd}.menu .current a,.menu .current a:hover,.menu .current-cat a,.menu .current-cat a:hover,.menu .current-menu-item a,.menu .current-menu-item a:hover{color:#111;background:#fff}.menu .current-parent>a,.menu .current-cat-parent>a,.menu .current-menu-ancestor>a{color:#111;background:#f0eec2}#header{border-width:0 0 .3em}.post_box,.teasers_box{border-width:.1em 0 0}#footer{border-width:.3em 0 0}#feature_box,#archive_intro,#comment_nav_2{border-width:0 0 .2em}.prev_next{border-width:.2em 0 0}.image_box,.custom_box{border-width:0 0 .1em}#header{height:10em;padding:0;background-image:url(//www.goingwimax.com/wpcontent/themes/thesis_18/custom/../../../uploads/goingwimax-header.jpg);background-repeat:no-repeat;background-size:45em 10em}#logo a{display:block;width:12.5em;height:2.778em;text-indent:-9999px;outline:none}
.full_width .page{margin:0 auto;padding:0}.post_box,.teasers_box,.full_width #content_box .page{margin:0;padding:0}#content_box{margin:0;background:0 0;padding:0}#content{padding:0;margin:0 20px 0 0}.format_text{text-align:justify;margin-bottom:15px}.teasers_box{width:600px}.teaser{width:300px;border-bottom:1px solid #2a5187;min-height:200px}body{font-size:10px}*{padding:0;margin:0}#header{clear:both;border:none}#column_wrap{float:left}.post_box,.teasers_box{padding:20px 20px 0;border:1px solid #dfdfdf;margin-bottom:20px;clear:both}.teaser{float:left}.teaser_right{float:right}.custom #sidebars{width:312px;float:left;margin:0}#sidebar_1{padding:0}#footer{text-align:right;clear:both}a,a:hover{text-decoration:none}a.post_image_link{outline:none}a img{border:none}blockquote{border-left:1px solid #ddd;color:#666}abbr,acronym{line-height:1em;text-transform:uppercase;letter-spacing:1px;border-bottom:none;cursor:help}code{line-height:1em;background:#eee}pre{background:#eee;border:1px solid #ddd;overflow:auto;clear:both}p.center{text-align:center !important}p.bottom{margin:0 !important}.remove_bottom_margin{margin-bottom:0 !important}input,textarea{font-size:1em;color:#444;background:#eee;border:1px solid #aaa;border-right-color:#ddd;border-bottom-color:#ddd}input:focus,textarea:focus{background:#fff;border-color:#777;border-right-color:#ccc;border-bottom-color:#ccc}.sidebar .text_input{width:95%}#commentform input.form_submit{background-color:#3b4da8;color:#fff}input.form_submit:hover{color:#2a5187}img.alignleft,img.left{float:left}img.alignright,img.right{float:right}img.aligncenter,img.center{display:block;margin-right:auto;margin-left:auto;float:none;clear:both}img.alignnone,img.block{display:block;clear:both}img.frame{background:#eee;border-style:solid;border-color:#ddd}img.stack{clear:none !important}img[align=left]{float:left;clear:left}img[align=right]{float:right;clear:right}img[align=middle]{display:block;margin-right:auto;margin-left:auto;float:none;clear:both}.wp-caption{border-style:solid;border-color:#ddd;background-color:#eee;text-align:center;font-style:italic}.wp-caption.alignleft{float:left}.wp-caption.alignright{float:right}.wp-caption.aligncenter{margin-right:auto;margin-left:auto;float:none;clear:both}.wp-caption.alignnone{clear:both}h1,h2,h3,h6{font-weight:400}h4,h5{font-weight:700}h5,h6{text-transform:uppercase;letter-spacing:1px}.format_text h2{font-weight:700}.format_text h2.top,.format_text h3.top{margin-top:0 !important}.custom .sidebar h3{font-variant:normal;letter-spacing:2px;color:#000;border-bottom:1px solid #cacaca;font-family:Droid Serif;font-size:1.1em}.headline_meta{font-style:italic}.headline_meta span,.headline_meta abbr{font-style:normal;text-transform:uppercase;letter-spacing:1px}.headline_meta a{border-bottom:1px solid #eee}#logo{font-weight:700}#tagline{font-weight:400}.format_text a{text-decoration:none}.format_text a:hover{text-decoration:none}.format_text p.note{background:#f5f5f5;border:1px solid #ddd}.format_text p.alert{background:#ffffa0;border:1px solid #e5e597}.format_text .drop_cap{color:#888;float:left}.format_text ul{list-style:square}.format_text dt{font-weight:700}.format_text blockquote.right,.format_text blockquote.left{border:none}.format_text blockquote.right{float:right}.format_text blockquote.left{float:left}.format_text blockquote.right p,.format_text blockquote.left p{margin:0}.format_text .ad{float:right;clear:right}.format_text .ad_left{float:left;clear:left}.format_text .to_comments{color:#666;clear:both}.format_text .to_comments span{color:#111;line-height:1em}.format_text .to_comments span.bracket{color:#ccc}.format_text .to_comments a{color:#666;text-decoration:none}.format_text .to_comments a:hover{color:#111;text-decoration:underline}.post_tags{color:#666}.post_tags a{text-decoration:none}.post_tags a:hover{text-decoration:underline}.format_text .post_tags{margin-top:10px}#feature_box{background:#fff;border:none;margin:0 0 15px 10px}.teaser a.teaser_link:hover{text-decoration:underline}.teaser .teaser_author{font-style:italic}.teaser .teaser_author .author{font-style:normal;text-transform:uppercase;letter-spacing:1px}.teaser .edit_post{letter-spacing:1px}.teaser .teaser_author a,.teaser a.teaser_comments,.teaser a.teaser_category,.teaser .edit_post a{text-transform:uppercase;letter-spacing:1px;color:#888;border-bottom:1px solid #eee}.teaser .teaser_author a{font-style:normal}.teaser .format_teaser a{text-decoration:underline}.teaser .format_teaser a:hover{text-decoration:none}#archive_intro{border:none}.prev_next{text-transform:uppercase;letter-spacing:2px;color:#666;border:none;clear:both}.prev_next .next{text-align:right}.prev_next .floated{float:left}.prev_next a{text-decoration:none}.prev_next a:hover{text-decoration:underline}.post_nav a{text-transform:none;letter-spacing:normal}#comment_nav_2{border-style:solid;border-color:#ddd}.image_box,.custom_box{border-style:solid;border-color:#ddd}#image_box img{background:#fff;border-style:solid;border-color:#bbb}.sidebar ul.sidebar_list{padding:0}.sidebar a:hover{text-decoration:none}ul.sidebar_list{list-style:none;padding-right:0;padding-left:0}li.widget{width:100%}li.centered{text-align:center}li.widget p a{text-decoration:underline}li.widget p a:hover{text-decoration:none}li.widget ul{list-style:none}li.widget ul li{text-transform:none}li.widget ul li .num_comments{color:#111}li.widget .widget_box{background:#e3f0f2;border-style:solid;border-color:#addde6}li.thesis_widget_google_cse form input[type=text]{width:95%}li.thesis_widget_google_cse form input[type=submit]:hover{color:#090}#calendar_wrap{width:98%;padding:0 1%}#calendar_wrap a{font-weight:700}#calendar_wrap a:hover{background:#ddd;text-decoration:none}table#wp-calendar{width:98%;border-collapse:collapse}table#wp-calendar caption{font-weight:400;text-transform:uppercase;letter-spacing:2px;background:#e5e5e5}table#wp-calendar th{width:14%;background:#f2f2f2;border-bottom:1px solid #ddd;text-align:center}table#wp-calendar td{width:14%;color:#888;text-align:center}table#wp-calendar td#next,table#wp-calendar td#prev{width:45%;text-transform:uppercase;letter-spacing:1px}table#wp-calendar td#next{text-align:right}table#wp-calendar td#prev{text-align:left}.comments_intro p{color:#666}.comments_intro a{text-decoration:underline}.comments_intro a:hover{text-decoration:none}.comments_intro span{color:#111;line-height:1em}.comments_intro span.bracket{color:#ccc}dl#comment_list{border-top:1px dotted #bbb}dl#comment_list dt a:hover{text-decoration:underline}dl#comment_list dt .comment_author{font-weight:700}.avatar img{float:right}.comment_time,.edit_comment{color:#888}.comment_time{white-space:nowrap}.comment_time a,.edit_comment a{color:#888}.comment_time a:hover,.edit_comment a:hover{color:#888}.comment_num{float:right}dl#comment_list .comment_num a{font-weight:700;color:#aaa}dl#comment_list .comment_num a:hover{color:#fff;background:#aaa;text-decoration:none}dl#comment_list .bypostauthor{background:#e7f8fb}dl#comment_list dd{border-bottom:1px dotted #bbb}dl#comment_list dd p.reply a{color:#888;text-transform:uppercase;letter-spacing:1px;text-decoration:none}dl#comment_list dd p.reply a:hover{text-decoration:underline}dl#comment_list dl{border-top:0}dl#comment_list dl dt,dl#comment_list dl dd{background:0 0}dl#comment_list dl dd{border-bottom:0}dl#comment_list dl .bypostauthor{background:0 0}dl#comment_list dl dt,dl#comment_list dl dd .format_text{border-style:solid;border-color:#ddd}dl#comment_list dl dt.bypostauthor,dl#comment_list dl dd.bypostauthor>.format_text{border-color:#bde0e6}a.comment_link{color:#111;text-decoration:none;font-variant:small-caps;border-bottom:1px solid #bbb}a.comment_link:hover{color:#111;border-bottom-color:#111}#trackback_list{border-top:1px dotted #bbb}#trackback_list a{color:#111}#trackback_list a:hover{color:#111;text-decoration:underline}#trackback_list span{color:#888}.comments_closed p{text-transform:uppercase;letter-spacing:1px;color:#888}#respond_intro p{color:#555}#respond_intro p a{font-weight:700}#respond_intro p a:hover{text-decoration:underline}#cancel-comment-reply-link{text-transform:uppercase;letter-spacing:1px;color:#fff;background:#d00;border-style:solid;border-color:#ac0000;border-top-color:#fa5a5a;border-left-color:#fa5a5a;float:right}.login_alert{background:#f5f5f5;border:1px solid #ddd}.login_alert p{font-weight:700}.login_alert p a:hover{text-decoration:underline}.comment_moderated{font-weight:700}#commentform{border-top:1px dotted #bbb}#commentform p{margin-bottom:1em}#commentform p a{text-decoration:underline}#commentform p a:hover{text-decoration:none}#commentform p .required{color:#d00}#commentform span.allowed{display:block;color:#807e70;background:#f9f7e4;border-style:dotted;border-color:#bbb}#commentform span.allowed span{display:block}#commentform p.subscribe-to-comments label{font-size:1em}.custom #footer{text-align:left;background:#000;color:#fff;font-style:italic;border:none}.custom #footer a{color:#fff;text-decoration:none;border-bottom:none}.custom #footer a:hover{color:#3b4da8}.custom #footer_area{background:#000}.menu:after,#content_box:after,#sidebars:after,.format_text:after,.teasers_box:after,.prev_next:after,ul.sidebar_list:after{content:".";display:block;height:0;clear:both;visibility:hidden}#team{width:650px;margin-top:15px}.team-image{float:left;clear:none;valign:bottom;margin:0 0 20px -30px;width:100px;height:100px}.team-text{text-align:justify;float:left;clear:none;valign:bottom;width:525px;margin:0 0 20px 10px;min-height:100px}.custom #header{margin:10px 0}.custom #header #top_banner{float:right;margin-top:-8em;width:468px}.cat-menu{position:relative;list-style:none;z-index:50}.cat-menu li{position:relative;float:left;margin-bottom:0}.cat-menu ul{position:absolute;visibility:visible;list-style:none;z-index:110}.menu ul li{clear:both}.cat-menu a{display:inline}.cat-menu table{position:absolute;left:0;border-collapse:collapse}.cat-menu table table{top:0 !important}.cat-menu ul ul{position:absolute;top:0}.cat-menu li:hover ul,.cat-menu a:hover ul,.cat-menu :hover ul :hover ul,.cat-menu :hover ul :hover ul :hover ul{visibility:visible;color:#3b4da8}.cat-menu :hover ul ul,.cat-menu :hover ul :hover ul ul{visibility:hidden;color:#3b4da8}#cat-container{border-top:1px solid #000;border-bottom:1px solid #000;height:25px;margin:0 0 20px;overflow:visible}.cat-menu,.cat-menu a,.cat-menu li ul{padding:7px;line-height:0}.cat-menu a{text-transform:uppercase;letter-spacing:2px;color:#000;font-size:.9em}.cat-menu .current>a,.cat-menu .current-cat>a,.cat-menu .current-menu-item>a{cursor:default;color:#3b4da8}.cat-menu a:hover{color:#3b4da8;background:#fff}#menu-categories{background:0 0;width:975px}#menu-categories a,li ul{text-transform:uppercase;letter-spacing:2px;color:#000;font-size:.9em;background:0 0}#menu-categories .current>a,#menu-categories .current-cat>a,#menu-categories .current-menu-item>a{cursor:default;color:#3b4da8}#menu-categories a:hover{color:#3b4da8}#menu-categories .sub-menu{background:#fff;color:#3b4da8;margin-top:18px;border-bottom:1px solid #000;border-left:1px solid #000;border-right:1px solid #000}#menu-categories .sub-menu a,li ul{color:#000;line-height:14px}#menu-categories .sub-menu a:hover{color:#3b4da8}.custom #nav_area{background:#000;border-bottom:1px solid #000}.menu{position:relative;list-style:none;z-index:50}.menu li{position:relative;float:left;margin-bottom:0}.menu ul{position:absolute;visibility:hidden;list-style:none;z-index:110}.menu ul li{clear:both}.menu a{display:block}.menu table{position:absolute;left:0;border-collapse:collapse}.menu table table{top:0 !important}.menu ul ul{position:absolute;top:0}.menu li:hover ul,.menu a:hover ul,.menu :hover ul :hover ul,.menu :hover ul :hover ul :hover ul{visibility:visible}.menu :hover ul ul,.menu :hover ul :hover ul ul{visibility:hidden}.custom .menu-pages-container{padding:3px 10px 0 5px;background:#000}.custom .menu-main-menu-container{padding:3px 10px 0 5px;background:#000}.custom .menu,.menu a,.menu li ul{border-style:none;color:#fff}.custom .menu a{font-size:1.2em;text-transform:uppercase;letter-spacing:2px;background:#000;color:#fff;border:none}.custom .menu .current>a,.menu .current-cat>a,.menu .current-menu-item>a{cursor:default;color:#3b4da8;background:0 0;border:none}.custom .menu .current>a,.menu .current-cat>a,.menu .current-menu-item>a:hover{cursor:default;color:#3b4da8;background:0 0;border:none}.custom .menu a:hover{color:#3b4da8;background:#000}.menu .rss{float:right}.menu .rss a:hover{text-decoration:underline}.headline_area{margin-bottom:1em}.wp-post-image{float:left;border:1px solid #c2c2c2;margin:0 15px 20px 0}.custom .headline_meta,.headline_meta span,.custom .headline_meta abbr{text-transform:none;font-style:normal;font-size:1em;letter-spacing:.02em}.custom .headline_meta a{text-decoration:none;border:none}.custom .headline_meta a:hover{color:#3b4da8}.custom span.author{text-transform:none;color:#3b4da8}.custom span.author a{color:#3b4da8}.custom abbr.published{cursor:default;text-transform:none}.custom .format_text p{margin-bottom:1.2em}.digg{float:right;margin:0 0 15px 15px;width:60px}a,a:hover,#logo a:hover{color:#3b4da8}.custom h1,h2,h2 a{color:#000}.custom h1,h2,h2 a:hover{color:#3b4da8}.page-nav{font-size:1.35em;font-weight:700;margin:1em 0;padding:0;overflow:hidden}.page-nav-intro{float:left;padding:.35em .5em;margin:0 1em 1em 0;background:#fff}.page-number{float:left;padding:.3em .5em;margin:0 .2em;background:#fff;border:.1em solid #ccc}.page-number a{color:#000}.page-number a:hover{color:#3b4da8}.current-page-number{float:left;padding:.3em .5em;margin:0 .2em;background:#fff;border:.1em solid #ccc;color:#3b4da8}.elipses{float:left;padding:.3em .2em}</code>.custom search_form{width:60px;float:right;margin-left:77em;margin-top:-3.5em;border:2px solid #ddd;background-color:#fff}.custom div.nav_container form.search_form{float:right;margin-top:-2.9em;z-index:60}.custom div.nav_container #s{font-size:1.3em;padding:.308em;width:15.385em;background-color:#fff}#sidebar_ads{margin:0 0 10px}.format_text #error-header{font-size:1.6em;line-height:1.4em;margin-bottom:.8em;margin-left:70px;text-align:center;width:450px}.format_text #error-body{font-size:1.2em;width:450px;margin-left:70px;text-align:center;line-height:1.6em;text-decoration:underline}.postauthor{background:#efefef;border:1px solid #e1e1e0;overflow:hidden;padding:1.5em}.postauthor img{border:1px solid #e1e1e0;float:right;margin-left:1.5em}.postauthor h4{color:#000;font-size:1.6em;margin-bottom:1px}.postauthor p{color:#000;font-size:11px;margin-bottom:12px;line-height:16px;text-align:justify}.dl-searchpanel{width:320px;font-family:arial;font-size:11pt}.dl-row{margin:-25px 0 0}.dl-Marker{color:red;display:none}.swaplink{margin:0 0 0 11px}.submit{border:none;margin:0;cursor:pointer}.input{width:275px;height:19px;color:#000;font-family:arial;font-size:16px;line-height:17px;margin:10px 0 0;padding:0 0 0 5px}.new{margin:-10px 0 0 11px}.fontt{color:#4f5753;font-family:arial;font-size:16px;line-height:17px;font-weight:700}.fonttt{color:#4f5753;font-family:arial;font-size:14px;line-height:17px;font-weight:700;margin:30px 0 0 11px;position:relative;top:2px}.dl-phone{width:60px;height:19px;color:#000;font-family:arial;font-size:16px;line-height:17px;margin:20px 0 0;padding:0 0 0 3px}.dl-phone-long{width:85px;height:19px;color:#000;font-family:arial;font-size:16px;line-height:17px;margin:20px 0 0;padding:0 0 0 3px}#dl_suffixInput.dl-phone{width:30px}#dl_addressPanel{display:}#dl_submit{text-align:center;margin-top:10px}.dl-submitBtn img{height:40px;width:125px;border:0;margin:-30px 0 0 94px;position:relative;top:-5px;left:25px}