Minggu, 15 Januari 2017

[smf_addin] Digest Number 3890

9 Messages

Digest #3890

Messages

Sat Jan 14, 2017 6:52 am (PST) . Posted by:

tnmc77

Sorry, I just posted a question not knowing that Randy was having health issues. I wish Randy the very best and speedy and full recovery.

Sat Jan 14, 2017 7:11 am (PST) . Posted by:

tnmc77

I am sorry to bother you but I have started having a new problem. I have used the smf addin for years without problem. Now, I have started having a problem where the add-In does not load automatically. I have gone through all the troubleshooting including asking excel to trust the folder where the add-in is. The add-in shows the check mark in the list but does not load automatically and work like other add-ins I use. In order to make it work, I have to uncheck the add-in, go to browse and reload/re-enable it before it works.

I am using windows 10 and the version RCH_Stock_Market_Functions-2. 1.2016.09.02

Thanks

Sat Jan 14, 2017 8:08 am (PST) . Posted by:

"Alain Bigio" alain@bigio.net.br

Yep me too. I get this problem and cannot figure it out. I think it is a bug in Excel
Alain

Sat Jan 14, 2017 10:41 am (PST) . Posted by:

I saw reply from someone on a M* forum... Check unblock status of the RCH file .xla
You can unblock access for individual files you know are safe. To do this:
Right-click the file RCH_Stock_Market_Functions in "SMF Add In" folder, and choose Properties.
On the General tab, click Unblock.
Click OK

What this 'unblocking' does is to allow the add-in to load when you open excel.

Sat Jan 14, 2017 8:08 am (PST) . Posted by:

"Bill Missell" bmissell_thornhill

Sorry to hear that you are having health issues Randy. You and your family are in my thoughts and prayers. I hope everything goes well for you.

From: smf_addin@yahoogroups.com [mailto:smf_addin@yahoogroups.com]
Sent: Sunday, January 08, 2017 5:15 PM
To: smf_addin@yahoogroups.com
Subject: [smf_addin] Update -

Had to go to the ER yesterday. I'll be back online when I am able to.

Sat Jan 14, 2017 12:47 pm (PST) . Posted by:

"Randy Randall" randyr_cds

Sorry for the delay in responding...

You have to look at the html of the web page. I use Firefox. For me
the easier way to do it is to:
1) Select the part of the web page that contains what you to extract.
2) Right Click -->> View Select Source
Something like the following should open in another window. Yours
will vary, depending on what you have selected.

(Hopefully this will appear has the html code and not be interpreted...)
<div>
<table class="abut_top">
<tbody>
<tr>
<td class="alpha"><a
href="https://www.zacks.com/stocks/industry-rank/sector/retail-wholesale-3">Retail-Wholesale</a> » <a
href="https://www.zacks.com/stocks/industry-rank/industry/retail-supermarkets-167">Retail
- Supermarkets</a></td>
</tr>
</tbody>
</table>
<p class="footer_acronyms"><span>*BMO = Before Market Open</span>
<span>*AMC = After Market Close</span></p>
</div>

This shows the selection is a table (<table class="abut_top">)
<tbody> is the body of the table (Sometimes there might be a header)
<tr> is a table row
<td> are table cells.
</td> marks the end of a cell
</tr> marks the end of the row

=RCHGetTableCell("https://www.zacks.com/stock/quote/kr",1,"abut_top")

The "abut_top" places the function to the the string "abut_top". The
"1" says recturn the first table cell.

http://ogres-crypt.com/SMF/Documentation/viewer.php?name=RCHGetTableCell-Function.html
has the documentation for RCHGetTableCell.

On Wed, Jan 11, 2017 at 9:24 PM, sjagers@yahoo.com [smf_addin]
<smf_addin@yahoogroups.com> wrote:
>
>
> Randy... Those work PERFECTLY. Thank you so much. I really appreciate your
> help.
>
> For my education, please tell me how those parameters work? I understand
> the website address, but what else is the function looking for? (strong, 1,
>>) (1, abut_top) ??
>
> Thanks again. You're a life saver.
>
>

Sat Jan 14, 2017 12:51 pm (PST) . Posted by:


--------------------------------------------
On Sat, 1/14/17, Randy Randall positive.theta@gmail.com [smf_addin] <smf_addin@yahoogroups.com> wrote:

Subject: Re: [smf_addin] GetElementNumber 850 (Zacks Industry classification)?
To: smf_addin@yahoogroups.com
Date: Saturday, January 14, 2017, 10:41 PM


 









Sorry for the delay in responding...



You have to look at the html of the web page. I use
Firefox. For me

the easier way to do it is to:

1) Select the part of the web page that contains what you
to extract.

2) Right Click -->> View Select Source

Something like the following should open in another
window. Yours

will vary, depending on what you have selected.



(Hopefully this will appear has the html code and not be
interpreted...)

<div>

<table class="abut_top">

<tbody>

<tr>

<td class="alpha"><a

href="https://www.zacks.com/stocks/industry-rank/sector/retail-wholesale-3">Retail-Wholesale</a> » <a

href="https://www.zacks.com/stocks/industry-rank/industry/retail-supermarkets-167">Retail

- Supermarkets</a></td>

</tr>

</tbody>

</table>

<p
class="footer_acronyms"><span>*BMO =
Before Market Open</span>

<span>*AMC = After Market
Close</span></p>

</div>



This shows the selection is a table (<table
class="abut_top">)

<tbody> is the body of the table (Sometimes there
might be a header)

<tr> is a table row

<td> are table cells.

</td> marks the end of a cell

</tr> marks the end of the row



=RCHGetTableCell("https://www.zacks.com/stock/quote/kr",1,"abut_top")



The "abut_top" places the function to the the
string "abut_top". The

"1" says recturn the first table cell.



http://ogres-crypt.com/SMF/Documentation/viewer.php?name=RCHGetTableCell-Function.html

has the documentation for RCHGetTableCell.



On Wed, Jan 11, 2017 at 9:24 PM, sjagers@yahoo.com
[smf_addin]

<smf_addin@yahoogroups.com> wrote:

>

>

> Randy... Those work PERFECTLY. Thank you so much. I
really appreciate your

> help.

>

> For my education, please tell me how those parameters
work? I understand

> the website address, but what else is the function
looking for? (strong, 1,

>>) (1, abut_top) ??

>

> Thanks again. You're a life saver.

>

>











#yiv0844139955 #yiv0844139955 --
#yiv0844139955ygrp-mkp {
border:1px solid #d8d8d8;font-family:Arial;margin:10px
0;padding:0 10px;}

#yiv0844139955 #yiv0844139955ygrp-mkp hr {
border:1px solid #d8d8d8;}

#yiv0844139955 #yiv0844139955ygrp-mkp #yiv0844139955hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px
0;}

#yiv0844139955 #yiv0844139955ygrp-mkp #yiv0844139955ads {
margin-bottom:10px;}

#yiv0844139955 #yiv0844139955ygrp-mkp .yiv0844139955ad {
padding:0 0;}

#yiv0844139955 #yiv0844139955ygrp-mkp .yiv0844139955ad p {
margin:0;}

#yiv0844139955 #yiv0844139955ygrp-mkp .yiv0844139955ad a {
color:#0000ff;text-decoration:none;}
#yiv0844139955 #yiv0844139955ygrp-sponsor
#yiv0844139955ygrp-lc {
font-family:Arial;}

#yiv0844139955 #yiv0844139955ygrp-sponsor
#yiv0844139955ygrp-lc #yiv0844139955hd {
margin:10px
0px;font-weight:700;font-size:78%;line-height:122%;}

#yiv0844139955 #yiv0844139955ygrp-sponsor
#yiv0844139955ygrp-lc .yiv0844139955ad {
margin-bottom:10px;padding:0 0;}

#yiv0844139955 #yiv0844139955actions {
font-family:Verdana;font-size:11px;padding:10px 0;}

#yiv0844139955 #yiv0844139955activity {
background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}

#yiv0844139955 #yiv0844139955activity span {
font-weight:700;}

#yiv0844139955 #yiv0844139955activity span:first-child {
text-transform:uppercase;}

#yiv0844139955 #yiv0844139955activity span a {
color:#5085b6;text-decoration:none;}

#yiv0844139955 #yiv0844139955activity span span {
color:#ff7900;}

#yiv0844139955 #yiv0844139955activity span
.yiv0844139955underline {
text-decoration:underline;}

#yiv0844139955 .yiv0844139955attach {
clear:both;display:table;font-family:Arial;font-size:12px;padding:10px
0;width:400px;}

#yiv0844139955 .yiv0844139955attach div a {
text-decoration:none;}

#yiv0844139955 .yiv0844139955attach img {
border:none;padding-right:5px;}

#yiv0844139955 .yiv0844139955attach label {
display:block;margin-bottom:5px;}

#yiv0844139955 .yiv0844139955attach label a {
text-decoration:none;}

#yiv0844139955 blockquote {
margin:0 0 0 4px;}

#yiv0844139955 .yiv0844139955bold {
font-family:Arial;font-size:13px;font-weight:700;}

#yiv0844139955 .yiv0844139955bold a {
text-decoration:none;}

#yiv0844139955 dd.yiv0844139955last p a {
font-family:Verdana;font-weight:700;}

#yiv0844139955 dd.yiv0844139955last p span {
margin-right:10px;font-family:Verdana;font-weight:700;}

#yiv0844139955 dd.yiv0844139955last p
span.yiv0844139955yshortcuts {
margin-right:0;}

#yiv0844139955 div.yiv0844139955attach-table div div a {
text-decoration:none;}

#yiv0844139955 div.yiv0844139955attach-table {
width:400px;}

#yiv0844139955 div.yiv0844139955file-title a, #yiv0844139955
div.yiv0844139955file-title a:active, #yiv0844139955
div.yiv0844139955file-title a:hover, #yiv0844139955
div.yiv0844139955file-title a:visited {
text-decoration:none;}

#yiv0844139955 div.yiv0844139955photo-title a,
#yiv0844139955 div.yiv0844139955photo-title a:active,
#yiv0844139955 div.yiv0844139955photo-title a:hover,
#yiv0844139955 div.yiv0844139955photo-title a:visited {
text-decoration:none;}

#yiv0844139955 div#yiv0844139955ygrp-mlmsg
#yiv0844139955ygrp-msg p a span.yiv0844139955yshortcuts {
font-family:Verdana;font-size:10px;font-weight:normal;}

#yiv0844139955 .yiv0844139955green {
color:#628c2a;}

#yiv0844139955 .yiv0844139955MsoNormal {
margin:0 0 0 0;}

#yiv0844139955 o {
font-size:0;}

#yiv0844139955 #yiv0844139955photos div {
float:left;width:72px;}

#yiv0844139955 #yiv0844139955photos div div {
border:1px solid
#666666;height:62px;overflow:hidden;width:62px;}

#yiv0844139955 #yiv0844139955photos div label {
color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}

#yiv0844139955 #yiv0844139955reco-category {
font-size:77%;}

#yiv0844139955 #yiv0844139955reco-desc {
font-size:77%;}

#yiv0844139955 .yiv0844139955replbq {
margin:4px;}

#yiv0844139955 #yiv0844139955ygrp-actbar div a:first-child {
margin-right:2px;padding-right:5px;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg {
font-size:13px;font-family:Arial, helvetica, clean,
sans-serif;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg table {
font-size:inherit;font:100%;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg select,
#yiv0844139955 input, #yiv0844139955 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg pre, #yiv0844139955
code {
font:115% monospace;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg * {
line-height:1.22em;}

#yiv0844139955 #yiv0844139955ygrp-mlmsg #yiv0844139955logo {
padding-bottom:10px;}


#yiv0844139955 #yiv0844139955ygrp-msg p a {
font-family:Verdana;}

#yiv0844139955 #yiv0844139955ygrp-msg
p#yiv0844139955attach-count span {
color:#1E66AE;font-weight:700;}

#yiv0844139955 #yiv0844139955ygrp-reco
#yiv0844139955reco-head {
color:#ff7900;font-weight:700;}

#yiv0844139955 #yiv0844139955ygrp-reco {
margin-bottom:20px;padding:0px;}

#yiv0844139955 #yiv0844139955ygrp-sponsor #yiv0844139955ov
li a {
font-size:130%;text-decoration:none;}

#yiv0844139955 #yiv0844139955ygrp-sponsor #yiv0844139955ov
li {
font-size:77%;list-style-type:square;padding:6px 0;}

#yiv0844139955 #yiv0844139955ygrp-sponsor #yiv0844139955ov
ul {
margin:0;padding:0 0 0 8px;}

#yiv0844139955 #yiv0844139955ygrp-text {
font-family:Georgia;}

#yiv0844139955 #yiv0844139955ygrp-text p {
margin:0 0 1em 0;}

#yiv0844139955 #yiv0844139955ygrp-text tt {
font-size:120%;}

#yiv0844139955 #yiv0844139955ygrp-vital ul li:last-child {
border-right:none !important;
}
#yiv0844139955
56Trupele romane intrand in Cluj la 11 octombrie 1944

Sat Jan 14, 2017 12:52 pm (PST) . Posted by:

"Randy Randall" randyr_cds

For the other one, the html looks like the following:

<p>Industry : <strong>Retail - Supermarkets</strong></p>

=smfGetTagContent("https://www.zacks.com/stock/research/kr/industry-comparison","strong",1,">Industry
:")

The ">Industry :" positions it to that string in the web page. The
"strong" says extract the content between the <strong> and </strong>
tags. The "1" tells it to extract from the first "<strong>" tag. If
there were more, you could increase the number to the select the 2nd,
3rd, etc.

http://ogres-crypt.com/SMF/Documentation/viewer.php?name=smfGetTagContent-Function.html
has the documentation.

Hope this helps.

Randy

On Sat, Jan 14, 2017 at 3:41 PM, Randy Randall <positive.theta@gmail.com> wrote:
> Sorry for the delay in responding...
>
> You have to look at the html of the web page. I use Firefox. For me
> the easier way to do it is to:
> 1) Select the part of the web page that contains what you to extract.
> 2) Right Click -->> View Select Source
> Something like the following should open in another window. Yours
> will vary, depending on what you have selected.
>
> (Hopefully this will appear has the html code and not be interpreted...)
> <div>
> <table class="abut_top">
> <tbody>
> <tr>
> <td class="alpha"><a
> href="https://www.zacks.com/stocks/industry-rank/sector/retail-wholesale-3">Retail-Wholesale</a> » <a
> href="https://www.zacks.com/stocks/industry-rank/industry/retail-supermarkets-167">Retail
> - Supermarkets</a></td>
> </tr>
> </tbody>
> </table>
> <p class="footer_acronyms"><span>*BMO = Before Market Open</span>
> <span>*AMC = After Market Close</span></p>
> </div>
>
> This shows the selection is a table (<table class="abut_top">)
> <tbody> is the body of the table (Sometimes there might be a header)
> <tr> is a table row
> <td> are table cells.
> </td> marks the end of a cell
> </tr> marks the end of the row
>
>
>
> =RCHGetTableCell("https://www.zacks.com/stock/quote/kr",1,"abut_top")
>
> The "abut_top" places the function to the the string "abut_top". The
> "1" says recturn the first table cell.
>
> http://ogres-crypt.com/SMF/Documentation/viewer.php?name=RCHGetTableCell-Function.html
> has the documentation for RCHGetTableCell.
>
>
>
> On Wed, Jan 11, 2017 at 9:24 PM, sjagers@yahoo.com [smf_addin]
> <smf_addin@yahoogroups.com> wrote:
>>
>>
>> Randy... Those work PERFECTLY. Thank you so much. I really appreciate your
>> help.
>>
>> For my education, please tell me how those parameters work? I understand
>> the website address, but what else is the function looking for? (strong, 1,
>>>) (1, abut_top) ??
>>
>> Thanks again. You're a life saver.
>>
>>

Sun Jan 15, 2017 12:29 am (PST) . Posted by:


--------------------------------------------
On Sat, 1/14/17, Randy Randall positive.theta@gmail.com [smf_addin] <smf_addin@yahoogroups.com> wrote:

Subject: Re: [smf_addin] GetElementNumber 850 (Zacks Industry classification)?
To: smf_addin@yahoogroups.com
Date: Saturday, January 14, 2017, 10:52 PM


 









For the other one, the html looks like the
following:



<p>Industry : <strong>Retail -
Supermarkets</strong></p>



=smfGetTagContent("https://www.zacks.com/stock/research/kr/industry-comparison","strong",1,">Industry

:")



The ">Industry :" positions it to that string
in the web page. The

"strong" says extract the content between the
<strong> and </strong>

tags. The "1" tells it to extract from the first
"<strong>" tag. If

there were more, you could increase the number to the select
the 2nd,

3rd, etc.



http://ogres-crypt.com/SMF/Documentation/viewer.php?name=smfGetTagContent-Function.html

has the documentation.



Hope this helps.



Randy



On Sat, Jan 14, 2017 at 3:41 PM, Randy Randall
<positive.theta@gmail.com> wrote:

> Sorry for the delay in responding...

>

> You have to look at the html of the web page. I use
Firefox. For me

> the easier way to do it is to:

> 1) Select the part of the web page that contains what
you to extract.

> 2) Right Click -->> View Select Source

> Something like the following should open in another
window. Yours

> will vary, depending on what you have selected.

>

> (Hopefully this will appear has the html code and not
be interpreted...)

> <div>

> <table class="abut_top">

> <tbody>

> <tr>

> <td class="alpha"><a

>
href="https://www.zacks.com/stocks/industry-rank/sector/retail-wholesale-3">Retail-Wholesale</a> » <a

>
href="https://www.zacks.com/stocks/industry-rank/industry/retail-supermarkets-167">Retail

> - Supermarkets</a></td>

> </tr>

> </tbody>

> </table>

> <p
class="footer_acronyms"><span>*BMO =
Before Market Open</span>

> <span>*AMC = After Market
Close</span></p>

> </div>

>

> This shows the selection is a table (<table
class="abut_top">)

> <tbody> is the body of the table (Sometimes there
might be a header)

> <tr> is a table row

> <td> are table cells.

> </td> marks the end of a cell

> </tr> marks the end of the row

>

>

>

>
=RCHGetTableCell("https://www.zacks.com/stock/quote/kr",1,"abut_top")

>

> The "abut_top" places the function to the the
string "abut_top". The

> "1" says recturn the first table cell.

>

>
http://ogres-crypt.com/SMF/Documentation/viewer.php?name=RCHGetTableCell-Function.html

> has the documentation for RCHGetTableCell.

>

>

>

> On Wed, Jan 11, 2017 at 9:24 PM, sjagers@yahoo.com
[smf_addin]

> <smf_addin@yahoogroups.com> wrote:

>>

>>

>> Randy... Those work PERFECTLY. Thank you so much.
I really appreciate your

>> help.

>>

>> For my education, please tell me how those
parameters work? I understand

>> the website address, but what else is the function
looking for? (strong, 1,

>>>) (1, abut_top) ??

>>

>> Thanks again. You're a life saver.

>>

>>











#yiv7675238478 #yiv7675238478 --
#yiv7675238478ygrp-mkp {
border:1px solid #d8d8d8;font-family:Arial;margin:10px
0;padding:0 10px;}

#yiv7675238478 #yiv7675238478ygrp-mkp hr {
border:1px solid #d8d8d8;}

#yiv7675238478 #yiv7675238478ygrp-mkp #yiv7675238478hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px
0;}

#yiv7675238478 #yiv7675238478ygrp-mkp #yiv7675238478ads {
margin-bottom:10px;}

#yiv7675238478 #yiv7675238478ygrp-mkp .yiv7675238478ad {
padding:0 0;}

#yiv7675238478 #yiv7675238478ygrp-mkp .yiv7675238478ad p {
margin:0;}

#yiv7675238478 #yiv7675238478ygrp-mkp .yiv7675238478ad a {
color:#0000ff;text-decoration:none;}
#yiv7675238478 #yiv7675238478ygrp-sponsor
#yiv7675238478ygrp-lc {
font-family:Arial;}

#yiv7675238478 #yiv7675238478ygrp-sponsor
#yiv7675238478ygrp-lc #yiv7675238478hd {
margin:10px
0px;font-weight:700;font-size:78%;line-height:122%;}

#yiv7675238478 #yiv7675238478ygrp-sponsor
#yiv7675238478ygrp-lc .yiv7675238478ad {
margin-bottom:10px;padding:0 0;}

#yiv7675238478 #yiv7675238478actions {
font-family:Verdana;font-size:11px;padding:10px 0;}

#yiv7675238478 #yiv7675238478activity {
background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}

#yiv7675238478 #yiv7675238478activity span {
font-weight:700;}

#yiv7675238478 #yiv7675238478activity span:first-child {
text-transform:uppercase;}

#yiv7675238478 #yiv7675238478activity span a {
color:#5085b6;text-decoration:none;}

#yiv7675238478 #yiv7675238478activity span span {
color:#ff7900;}

#yiv7675238478 #yiv7675238478activity span
.yiv7675238478underline {
text-decoration:underline;}

#yiv7675238478 .yiv7675238478attach {
clear:both;display:table;font-family:Arial;font-size:12px;padding:10px
0;width:400px;}

#yiv7675238478 .yiv7675238478attach div a {
text-decoration:none;}

#yiv7675238478 .yiv7675238478attach img {
border:none;padding-right:5px;}

#yiv7675238478 .yiv7675238478attach label {
display:block;margin-bottom:5px;}

#yiv7675238478 .yiv7675238478attach label a {
text-decoration:none;}

#yiv7675238478 blockquote {
margin:0 0 0 4px;}

#yiv7675238478 .yiv7675238478bold {
font-family:Arial;font-size:13px;font-weight:700;}

#yiv7675238478 .yiv7675238478bold a {
text-decoration:none;}

#yiv7675238478 dd.yiv7675238478last p a {
font-family:Verdana;font-weight:700;}

#yiv7675238478 dd.yiv7675238478last p span {
margin-right:10px;font-family:Verdana;font-weight:700;}

#yiv7675238478 dd.yiv7675238478last p
span.yiv7675238478yshortcuts {
margin-right:0;}

#yiv7675238478 div.yiv7675238478attach-table div div a {
text-decoration:none;}

#yiv7675238478 div.yiv7675238478attach-table {
width:400px;}

#yiv7675238478 div.yiv7675238478file-title a, #yiv7675238478
div.yiv7675238478file-title a:active, #yiv7675238478
div.yiv7675238478file-title a:hover, #yiv7675238478
div.yiv7675238478file-title a:visited {
text-decoration:none;}

#yiv7675238478 div.yiv7675238478photo-title a,
#yiv7675238478 div.yiv7675238478photo-title a:active,
#yiv7675238478 div.yiv7675238478photo-title a:hover,
#yiv7675238478 div.yiv7675238478photo-title a:visited {
text-decoration:none;}

#yiv7675238478 div#yiv7675238478ygrp-mlmsg
#yiv7675238478ygrp-msg p a span.yiv7675238478yshortcuts {
font-family:Verdana;font-size:10px;font-weight:normal;}

#yiv7675238478 .yiv7675238478green {
color:#628c2a;}

#yiv7675238478 .yiv7675238478MsoNormal {
margin:0 0 0 0;}

#yiv7675238478 o {
font-size:0;}

#yiv7675238478 #yiv7675238478photos div {
float:left;width:72px;}

#yiv7675238478 #yiv7675238478photos div div {
border:1px solid
#666666;height:62px;overflow:hidden;width:62px;}

#yiv7675238478 #yiv7675238478photos div label {
color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}

#yiv7675238478 #yiv7675238478reco-category {
font-size:77%;}

#yiv7675238478 #yiv7675238478reco-desc {
font-size:77%;}

#yiv7675238478 .yiv7675238478replbq {
margin:4px;}

#yiv7675238478 #yiv7675238478ygrp-actbar div a:first-child {
margin-right:2px;padding-right:5px;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg {
font-size:13px;font-family:Arial, helvetica, clean,
sans-serif;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg table {
font-size:inherit;font:100%;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg select,
#yiv7675238478 input, #yiv7675238478 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg pre, #yiv7675238478
code {
font:115% monospace;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg * {
line-height:1.22em;}

#yiv7675238478 #yiv7675238478ygrp-mlmsg #yiv7675238478logo {
padding-bottom:10px;}


#yiv7675238478 #yiv7675238478ygrp-msg p a {
font-family:Verdana;}

#yiv7675238478 #yiv7675238478ygrp-msg
p#yiv7675238478attach-count span {
color:#1E66AE;font-weight:700;}

#yiv7675238478 #yiv7675238478ygrp-reco
#yiv7675238478reco-head {
color:#ff7900;font-weight:700;}

#yiv7675238478 #yiv7675238478ygrp-reco {
margin-bottom:20px;padding:0px;}

#yiv7675238478 #yiv7675238478ygrp-sponsor #yiv7675238478ov
li a {
font-size:130%;text-decoration:none;}

#yiv7675238478 #yiv7675238478ygrp-sponsor #yiv7675238478ov
li {
font-size:77%;list-style-type:square;padding:6px 0;}

#yiv7675238478 #yiv7675238478ygrp-sponsor #yiv7675238478ov
ul {
margin:0;padding:0 0 0 8px;}

#yiv7675238478 #yiv7675238478ygrp-text {
font-family:Georgia;}

#yiv7675238478 #yiv7675238478ygrp-text p {
margin:0 0 1em 0;}

#yiv7675238478 #yiv7675238478ygrp-text tt {
font-size:120%;}

#yiv7675238478 #yiv7675238478ygrp-vital ul li:last-child {
border-right:none !important;
}
#yiv7675238478
Habitat si populatie structuri existenta cotidiana imigrari10

For the Add-in, Documentation, Templates, Tips and FAQs, visit http://ogres-crypt.com/SMF

Tidak ada komentar:

Posting Komentar