15 Messages
Digest #3899
Messages
Wed Jan 25, 2017 10:54 am (PST) . Posted by:
joshi_mandar
I am trying to get option quote for BRK-B from yahoo. It's not working. I use this formula smfGetOptionQuotes("brkb Mar 17 165 call","c",0,"Y"). I am getting error. I did check on the yahoo site. They do have prices for march 17 expiration. Any idea what I am doing wrong?
Wed Jan 25, 2017 1:51 pm (PST) . Posted by:
jhfrazer@ymail.com
If this is too obvious I apologize. Has the formula been entered into your spreadsheet as an array?
In most cases, this will need to be an array-entered formula. To array-enter a formula in EXCEL, first highlight the range of cells where you would like the returned data to appear -- the number of rows for the range should be AT LEAST the number of ticker symbols you are requesting from the function, while the number of columns for the range should be AT LEAST the number of data items you are requesting for each ticker symbol from the function. Next, enter your formula and then press Ctrl-Shift-Enter.
In most cases, this will need to be an array-entered formula. To array-enter a formula in EXCEL, first highlight the range of cells where you would like the returned data to appear -- the number of rows for the range should be AT LEAST the number of ticker symbols you are requesting from the function, while the number of columns for the range should be AT LEAST the number of data items you are requesting for each ticker symbol from the function. Next, enter your formula and then press Ctrl-Shift-Enter.
Wed Jan 25, 2017 2:18 pm (PST) . Posted by:
"J. Brett Freeze" oi7q2nergrevlnrogdhl4hsxxwp7hxuntbdffqwa
I will try the array. I have a formula for each individual cell. Thank you for the suggestion.
Regards,
Brett
From: smf_addin@yahoogroups.com [mailto:smf_addin@yahoogroups.com]
Sent: Wednesday, January 25, 2017 4:51 PM
To: smf_addin@yahoogroups.com
Subject: [smf_addin] Re: BRK-B quote on yahoo - help
If this is too obvious I apologize. Has the formula been entered into your spreadsheet as an array?
In most cases, this will need to be an array-entered formula. To array-enter a formula in EXCEL, first highlight the range of cells where you would like the returned data to appear -- the number of rows for the range should be AT LEAST the number of ticker symbols you are requesting from the function, while the number of columns for the range should be AT LEAST the number of data items you are requesting for each ticker symbol from the function. Next, enter your formula and then press Ctrl-Shift-Enter.
Regards,
Brett
From: smf_addin@yahoogroups.com [mailto:smf_addin@yahoogroups.com]
Sent: Wednesday, January 25, 2017 4:51 PM
To: smf_addin@yahoogroups.com
Subject: [smf_addin] Re: BRK-B quote on yahoo - help
If this is too obvious I apologize. Has the formula been entered into your spreadsheet as an array?
In most cases, this will need to be an array-entered formula. To array-enter a formula in EXCEL, first highlight the range of cells where you would like the returned data to appear -- the number of rows for the range should be AT LEAST the number of ticker symbols you are requesting from the function, while the number of columns for the range should be AT LEAST the number of data items you are requesting for each ticker symbol from the function. Next, enter your formula and then press Ctrl-Shift-Enter.
Thu Jan 26, 2017 7:35 am (PST) . Posted by:
jhfrazer@ymail.com
Sometimes the stock symbols which contain "-" can be problematic. Can you get the function to work on your spreadsheet with a simple symbol like IBM or SPY? That troubleshooting methodology may be helpful in verifying your formulas structure.
Thu Jan 26, 2017 8:52 am (PST) . Posted by:
"Randy Harmelink" rharmelink
Your formula works for me. I had to make some changes to Yahoo option
quotes extractions when Yahoo did their facelift a few months ago. You
probably just need the new version of the add-in, to pick up those coding
changes...
On Wed, Jan 25, 2017 at 11:54 AM, joshi_mandar@
...wrote:
> I am trying to get option quote for BRK-B from yahoo. It's not working.
> I use this formula smfGetOptionQuotes("brkb Mar 17 165 call","c",0,"Y"). I
> am getting error. I did check on the yahoo site. They do have prices for
> march 17 expiration. Any idea what I am doing wrong?
>
>
quotes extractions when Yahoo did their facelift a few months ago. You
probably just need the new version of the add-in, to pick up those coding
changes...
On Wed, Jan 25, 2017 at 11:54 AM, joshi_mandar@
...wrote:
> I am trying to get option quote for BRK-B from yahoo. It's not working.
> I use this formula smfGetOptionQuotes(
> am getting error. I did check on the yahoo site. They do have prices for
> march 17 expiration. Any idea what I am doing wrong?
>
>
Thu Jan 26, 2017 8:58 am (PST) . Posted by:
garyhartling
This formula works for me, it doesn't have to be array entered. But the "c" in the formula is asking for the "change" in the Call option, which is usually a small number. Is that what you really want? I'm more interested in the bid ("b"), ask("a"), or last price ("l") of an option. The ('l") is a lower-case L.
Gary H.
Gary H.
Wed Jan 25, 2017 10:56 am (PST) . Posted by:
joshi_mandar
Hi Randy. Wish you a speedy recovery. I dont visit this group often. But I use the SMF addin everyday. It's just so stable that I dont need to visit here often. I appreciate all your help.
Thu Jan 26, 2017 8:39 am (PST) . Posted by:
rainerglobal
Has something changed? Is there an alternative way to find the dividend yield? thanks
Thu Jan 26, 2017 9:14 am (PST) . Posted by:
garyhartling
That's an ETF. Try =RCHGetTableCell("http://finance.yahoo.com/q/?s= http://finance.yahoo.com/q/?s=LQDXLE",1,">Yield")
Gary H.
Gary H.
Thu Jan 26, 2017 9:28 am (PST) . Posted by:
"Randy Harmelink" rharmelink
It could be that Yahoo is temporarily not populating that field for ETFs on
their current quotes CSV file. A workaround would be to extract it from the
JSON code on the main quotes page, with something like:
=smfConvertData(smfStrExtr(RCHGetWebData("http://finance.yahoo.com/quote/xle
","""yield"":{""raw"":",50),"raw"":",","))
On Thu, Jan 26, 2017 at 5:20 AM, rainerglobal@
...wrote:
> Has something changed? Is there an alternative way to find the dividend
> yield?
>
their current quotes CSV file. A workaround would be to extract it from the
JSON code on the main quotes page, with something like:
=smfConvertData(smfStrExtr(RCHGetWebData("http://finance.yahoo.com/quote/xle
","
On Thu, Jan 26, 2017 at 5:20 AM, rainerglobal@
...wrote:
> Has something changed? Is there an alternative way to find the dividend
> yield?
>
Thu Jan 26, 2017 10:56 am (PST) . Posted by:
"Omar Jaleel" saanajaleel
Welcome back. Hope you're doing well
On Jan 26, 2017 11:28 AM, "Randy Harmelink rharmelink@gmail.com
[smf_addin]" <smf_addin@yahoogroups.com> wrote:
>
>
> It could be that Yahoo is temporarily not populating that field for ETFs
> on their current quotes CSV file. A workaround would be to extract it from
> the JSON code on the main quotes page, with something like:
>
> =smfConvertData(smfStrExtr(RCHGetWebData("http://finance.
> yahoo.com/quote/xle","""yield"":{""raw"":",50),"raw"":",","))
>
>
>
> On Thu, Jan 26, 2017 at 5:20 AM, rainerglobal@
> ...wrote:
>
>> Has something changed? Is there an alternative way to find the dividend
>> yield?
>>
>
>
>
On Jan 26, 2017 11:28 AM, "Randy Harmelink rharmelink@gmail.com
[smf_addin]" <smf_addin@yahoogroups.com> wrote:
>
>
> It could be that Yahoo is temporarily not populating that field for ETFs
> on their current quotes CSV file. A workaround would be to extract it from
> the JSON code on the main quotes page, with something like:
>
> =smfConvertData(smfStrExtr(RCHGetWebData("http://finance.
> yahoo.com/quote/
>
>
>
> On Thu, Jan 26, 2017 at 5:20 AM, rainerglobal@
> ...wrote:
>
>> Has something changed? Is there an alternative way to find the dividend
>> yield?
>>
>
>
>
Thu Jan 26, 2017 11:36 am (PST) . Posted by:
"Randy Harmelink" rharmelink
Thanks for the heads up. Both annual and quarterly are broken. I see they
have added a new row and column highlight when using the web page. That
change might have something to do with it not working. Unfortunately, I'm
not sure when I'll be able to look at it in detail so I can fix it....
On Mon, Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze' jfreeze3@
...wrote:
>
>
> GuruFocus appears to have changed its logic for annual financial periods.
> The only data that is being retrieved is "TTM". Does anyone know how to
> correct?
>
>
>
>
>
>
>
have added a new row and column highlight when using the web page. That
change might have something to do with it not working. Unfortunately, I'm
not sure when I'll be able to look at it in detail so I can fix it....
On Mon, Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze' jfreeze3@
...wrote:
>
>
> GuruFocus appears to have changed its logic for annual financial periods.
> The only data that is being retrieved is "TTM"
> correct?
>
>
>
>
>
>
>
--------------------------------------------
On Thu, 1/26/17, Randy Harmelink rharmelink@gmail.com [smf_addin] <smf_addin@yahoogroups.com> wrote:
Subject: Re: [smf_addin] smfgetgurufocusitem
To: smf_addin@yahoogroups.com
Date: Thursday, January 26, 2017, 9:36 PM
Thanks for the heads up. Both annual
and quarterly are broken. I see they have added a new row
and column highlight when using the web page. That change
might have something to do with it not working.
Unfortunately, I'm not sure when I'll be able to
look at it in detail so I can fix it....
On Mon,
Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze'
jfreeze3@...wrote:
GuruFocus appears to have
changed its logic for annual financial periods. The only
data that is being retrieved is "TTM"
anyone know how to correct?
#yiv7950118976 #yiv7950118976 --
#yiv7950118976ygrp-
border:1px solid #d8d8d8;font-
0;padding:0 10px;}
#yiv7950118976 #yiv7950118976ygrp-
border:1px solid #d8d8d8;}
#yiv7950118976 #yiv7950118976ygrp-
color:#628c2a;
0;}
#yiv7950118976 #yiv7950118976ygrp-
margin-bottom:
#yiv7950118976 #yiv7950118976ygrp-
padding:0 0;}
#yiv7950118976 #yiv7950118976ygrp-
margin:0;}
#yiv7950118976 #yiv7950118976ygrp-
color:#0000ff;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
margin:10px
0px;font-weight:
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
margin-bottom:
#yiv7950118976 #yiv7950118976actio
font-family:
#yiv7950118976 #yiv7950118976activ
background-color:
#yiv7950118976 #yiv7950118976activ
font-weight:
#yiv7950118976 #yiv7950118976activ
text-transform:
#yiv7950118976 #yiv7950118976activ
color:#5085b6;
#yiv7950118976 #yiv7950118976activ
color:#ff7900;
#yiv7950118976 #yiv7950118976activ
.yiv7950118976under
text-decoration:
#yiv7950118976 .yiv7950118976attac
clear:both;display:
0;width:400px;
#yiv7950118976 .yiv7950118976attac
text-decoration:
#yiv7950118976 .yiv7950118976attac
border:none;
#yiv7950118976 .yiv7950118976attac
display:block;
#yiv7950118976 .yiv7950118976attac
text-decoration:
#yiv7950118976 blockquote {
margin:0 0 0 4px;}
#yiv7950118976 .yiv7950118976bold {
font-family:
#yiv7950118976 .yiv7950118976bold a {
text-decoration:
#yiv7950118976 dd.yiv7950118976las
font-family:
#yiv7950118976 dd.yiv7950118976las
margin-right:
#yiv7950118976 dd.yiv7950118976las
span.yiv7950118976y
margin-right:
#yiv7950118976 div.yiv7950118976at
text-decoration:
#yiv7950118976 div.yiv7950118976at
width:400px;
#yiv7950118976 div.yiv7950118976fi
div.yiv7950118976fi
div.yiv7950118976fi
div.yiv7950118976fi
text-decoration:
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
text-decoration:
#yiv7950118976 div#yiv7950118976yg
#yiv7950118976ygrp-
font-family:
#yiv7950118976 .yiv7950118976green {
color:#628c2a;
#yiv7950118976 .yiv7950118976MsoNo
margin:0 0 0 0;}
#yiv7950118976 o {
font-size:0;
#yiv7950118976 #yiv7950118976photo
float:left;width:
#yiv7950118976 #yiv7950118976photo
border:1px solid
#666666;height:
#yiv7950118976 #yiv7950118976photo
color:#666666;
#yiv7950118976 #yiv7950118976reco-
font-size:77%
#yiv7950118976 #yiv7950118976reco-
font-size:77%
#yiv7950118976 .yiv7950118976replb
margin:4px;}
#yiv7950118976 #yiv7950118976ygrp-
margin-right:
#yiv7950118976 #yiv7950118976ygrp-
font-size:13px;
sans-serif;}
#yiv7950118976 #yiv7950118976ygrp-
font-size:inherit;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976 input, #yiv7950118976 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}
#yiv7950118976 #yiv7950118976ygrp-
code {
font:115% monospace;}
#yiv7950118976 #yiv7950118976ygrp-
line-height:
#yiv7950118976 #yiv7950118976ygrp-
padding-bottom:
#yiv7950118976 #yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
p#yiv7950118976atta
color:#1E66AE;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976reco-
color:#ff7900;
#yiv7950118976 #yiv7950118976ygrp-
margin-bottom:
#yiv7950118976 #yiv7950118976ygrp-
li a {
font-size:130%
#yiv7950118976 #yiv7950118976ygrp-
li {
font-size:77%
#yiv7950118976 #yiv7950118976ygrp-
ul {
margin:0;padding:
#yiv7950118976 #yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
margin:0 0 1em 0;}
#yiv7950118976 #yiv7950118976ygrp-
font-size:120%
#yiv7950118976 #yiv7950118976ygrp-
border-right:
}
#yiv7950118976
1878-1880 1i -infiintarea de noi agentii diplomatice ale Romaniei in strainatate 27-28 febr 11-12 mart - Camerele voteaza motiuni cu privire la oportunitatea revizuirii articolului 7 din Constitutie 30 mart - Legea privind infiintarea Academiei Romane
Thu Jan 26, 2017 11:56 am (PST) . Posted by:
"J. Brett Freeze" oi7q2nergrevlnrogdhl4hsxxwp7hxuntbdffqwa
Thank you for the insight. I will wait patiently. Glad you are back and hope you get well soon!
From: smf_addin@yahoogroups.com [mailto:smf_addin@yahoogroups.com]
Sent: Thursday, January 26, 2017 2:36 PM
To: smf_addin@yahoogroups.com
Subject: Re: [smf_addin] smfgetgurufocusitem
Thanks for the heads up. Both annual and quarterly are broken. I see they have added a new row and column highlight when using the web page. That change might have something to do with it not working. Unfortunately, I'm not sure when I'll be able to look at it in detail so I can fix it....
On Mon, Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze' jfreeze3@
...wrote:
GuruFocus appears to have changed its logic for annual financial periods. The only data that is being retrieved is "TTM". Does anyone know how to correct?
From: smf_addin@yahoogroups.com [mailto:smf_addin@yahoogroups.com]
Sent: Thursday, January 26, 2017 2:36 PM
To: smf_addin@yahoogroups.com
Subject: Re: [smf_addin] smfgetgurufocusitem
Thanks for the heads up. Both annual and quarterly are broken. I see they have added a new row and column highlight when using the web page. That change might have something to do with it not working. Unfortunately, I'm not sure when I'll be able to look at it in detail so I can fix it....
On Mon, Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze' jfreeze3@
...wrote:
GuruFocus appears to have changed its logic for annual financial periods. The only data that is being retrieved is "TTM"
--------------------------------------------
On Thu, 1/26/17, stantonchristopher553@yahoo.com [smf_addin] <smf_addin@yahoogroups.com> wrote:
Subject: Re: [smf_addin] smfgetgurufocusitem
To: smf_addin@yahoogroups.com
Date: Thursday, January 26, 2017, 9:43 PM
--------------------------------------------
On Thu, 1/26/17, Randy Harmelink rharmelink@gmail.com
[smf_addin] <smf_addin@yahoogroups.com> wrote:
Subject: Re: [smf_addin] smfgetgurufocusitem
To: smf_addin@yahoogroups.com
Date: Thursday, January 26, 2017, 9:36 PM
Thanks for the heads up. Both annual
and quarterly are broken. I see they have added a new
row
and column highlight when using the web page. That
change
might have something to do with it not working.
Unfortunately, I'm not sure when I'll be able to
look at it in detail so I can fix it....
On Mon,
Jan 23, 2017 at 7:08 AM, 'J. Brett Freeze'
jfreeze3@...wrote:
GuruFocus appears to have
changed its logic for annual financial periods. The
only
data that is being retrieved is "TTM"
anyone know how to correct?
#yiv7950118976 #yiv7950118976 --
#yiv7950118976ygrp-
border:1px solid #d8d8d8;font-
0;padding:0 10px;}
#yiv7950118976 #yiv7950118976ygrp-
border:1px solid #d8d8d8;}
#yiv7950118976 #yiv7950118976ygrp-
color:#628c2a;
0;}
#yiv7950118976 #yiv7950118976ygrp-
{
margin-bottom:
#yiv7950118976 #yiv7950118976ygrp-
padding:0 0;}
#yiv7950118976 #yiv7950118976ygrp-
{
margin:0;}
#yiv7950118976 #yiv7950118976ygrp-
{
color:#0000ff;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
margin:10px
0px;font-weight:
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ygrp-
margin-bottom:
#yiv7950118976 #yiv7950118976actio
font-family:
#yiv7950118976 #yiv7950118976activ
background-color:
#yiv7950118976 #yiv7950118976activ
font-weight:
#yiv7950118976 #yiv7950118976activ
text-transform:
#yiv7950118976 #yiv7950118976activ
color:#5085b6;
#yiv7950118976 #yiv7950118976activ
color:#ff7900;
#yiv7950118976 #yiv7950118976activ
.yiv7950118976under
text-decoration:
#yiv7950118976 .yiv7950118976attac
clear:both;display:
0;width:400px;
#yiv7950118976 .yiv7950118976attac
text-decoration:
#yiv7950118976 .yiv7950118976attac
border:none;
#yiv7950118976 .yiv7950118976attac
display:block;
#yiv7950118976 .yiv7950118976attac
text-decoration:
#yiv7950118976 blockquote {
margin:0 0 0 4px;}
#yiv7950118976 .yiv7950118976bold {
font-family:
#yiv7950118976 .yiv7950118976bold a {
text-decoration:
#yiv7950118976 dd.yiv7950118976las
font-family:
#yiv7950118976 dd.yiv7950118976las
margin-right:
#yiv7950118976 dd.yiv7950118976las
span.yiv7950118976y
margin-right:
#yiv7950118976 div.yiv7950118976at
text-decoration:
#yiv7950118976 div.yiv7950118976at
width:400px;
#yiv7950118976 div.yiv7950118976fi
#yiv7950118976
div.yiv7950118976fi
div.yiv7950118976fi
div.yiv7950118976fi
text-decoration:
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
#yiv7950118976 div.yiv7950118976ph
text-decoration:
#yiv7950118976 div#yiv7950118976yg
#yiv7950118976ygrp-
{
font-family:
#yiv7950118976 .yiv7950118976green {
color:#628c2a;
#yiv7950118976 .yiv7950118976MsoNo
margin:0 0 0 0;}
#yiv7950118976 o {
font-size:0;
#yiv7950118976 #yiv7950118976photo
float:left;width:
#yiv7950118976 #yiv7950118976photo
border:1px solid
#666666;height:
#yiv7950118976 #yiv7950118976photo
color:#666666;
#yiv7950118976 #yiv7950118976reco-
font-size:77%
#yiv7950118976 #yiv7950118976reco-
font-size:77%
#yiv7950118976 .yiv7950118976replb
margin:4px;}
#yiv7950118976 #yiv7950118976ygrp-
{
margin-right:
#yiv7950118976 #yiv7950118976ygrp-
font-size:13px;
sans-serif;}
#yiv7950118976 #yiv7950118976ygrp-
font-size:inherit;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976 input, #yiv7950118976 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976
code {
font:115% monospace;}
#yiv7950118976 #yiv7950118976ygrp-
line-height:
#yiv7950118976 #yiv7950118976ygrp-
{
padding-bottom:
#yiv7950118976 #yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
p#yiv7950118976atta
color:#1E66AE;
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976reco-
color:#ff7900;
#yiv7950118976 #yiv7950118976ygrp-
margin-bottom:
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ov
li a {
font-size:130%
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ov
li {
font-size:77%
#yiv7950118976 #yiv7950118976ygrp-
#yiv7950118976ov
ul {
margin:0;padding:
#yiv7950118976 #yiv7950118976ygrp-
font-family:
#yiv7950118976 #yiv7950118976ygrp-
margin:0 0 1em 0;}
#yiv7950118976 #yiv7950118976ygrp-
font-size:120%
#yiv7950118976 #yiv7950118976ygrp-
{
border-right:
}
#yiv7950118976
1878-1880 1i -infiintarea de noi agentii diplomatice ale
Romaniei in strainatate 27-28 febr 11-12 mart -
Camerele voteaza motiuni cu privire la oportunitatea
revizuirii articolului 7 din Constitutie 30 mart -
Legea privind infiintarea Academiei Romane
#yiv5652286726 #yiv5652286726 --
#yiv5652286726ygrp-
border:1px solid #d8d8d8;font-
0;padding:0 10px;}
#yiv5652286726 #yiv5652286726ygrp-
border:1px solid #d8d8d8;}
#yiv5652286726 #yiv5652286726ygrp-
color:#628c2a;
0;}
#yiv5652286726 #yiv5652286726ygrp-
margin-bottom:
#yiv5652286726 #yiv5652286726ygrp-
padding:0 0;}
#yiv5652286726 #yiv5652286726ygrp-
margin:0;}
#yiv5652286726 #yiv5652286726ygrp-
color:#0000ff;
#yiv5652286726 #yiv5652286726ygrp-
#yiv5652286726ygrp-
font-family:
#yiv5652286726 #yiv5652286726ygrp-
#yiv5652286726ygrp-
margin:10px
0px;font-weight:
#yiv5652286726 #yiv5652286726ygrp-
#yiv5652286726ygrp-
margin-bottom:
#yiv5652286726 #yiv5652286726actio
font-family:
#yiv5652286726 #yiv5652286726activ
background-color:
#yiv5652286726 #yiv5652286726activ
font-weight:
#yiv5652286726 #yiv5652286726activ
text-transform:
#yiv5652286726 #yiv5652286726activ
color:#5085b6;
#yiv5652286726 #yiv5652286726activ
color:#ff7900;
#yiv5652286726 #yiv5652286726activ
.yiv5652286726under
text-decoration:
#yiv5652286726 .yiv5652286726attac
clear:both;display: