Add Customized Button

When you open a form for the first time in customization mode (or when creating a new one) you can select C# or VB with your version of Epicor.

This will give you an idea, you'll still need to add the handler for the button click.

C#

using System;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Windows.Forms;
using Epicor.Mfg.BO;
using Epicor.Mfg.UI;
using Epicor.Mfg.UI.Adapters;
using Epicor.Mfg.UI.Customization;
using Epicor.Mfg.UI.ExtendedProps;
using Epicor.Mfg.UI.FormFunctions;
using Epicor.Mfg.UI.FrameWork;
using Epicor.Mfg.UI.Searches;
using Epicor.Mfg.Core;

public class Script
{
    // ** Wizard Insert Location - Do Not Remove 'Begin/End Wizard Added Module Level Variables' Comments! **
    // Begin Wizard Added Module Level Variables **

    // End Wizard Added Module Level Variables **

    // Add Custom Module Level Variables Here **
    private string user;
    private string dte;

    public void InitializeCustomCode()
    {
        // ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Variable Initialization' lines **
        // Begin Wizard Added Variable Initialization

        // End Wizard Added Variable Initialization

        // Begin Wizard Added Custom Method Calls

        // End Wizard Added Custom Method Calls
         user = ((Session)oTrans.Session).UserName;
        dte = DateTime.Now.Date.ToString();
    }

    public void DestroyCustomCode()
    {
        // ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Object Disposal' lines **
        // Begin Wizard Added Object Disposal

        // End Wizard Added Object Disposal

        // Begin Custom Code Disposal
        user = null;
        dte = null;
        // End Custom Code Disposal
    }
}




From: Kimberley White <faepigrl@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Thursday, March 27, 2014 11:33 AM
Subject: Re: [Vantage] Add Customized Button

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000 --

#ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000ygrp-photo-title{
clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000ygrp-photo{
background-position:center;background-repeat:no-repeat;background-color:white;border:1px solid black;height:62px;width:62px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title
a,
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:active,
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:hover,
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table div.ygrps-yiv-1279022158yiv8710106000attach-row {
clear:both;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table div.ygrps-yiv-1279022158yiv8710106000attach-row div {
float:left;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 p {
clear:both;padding:15px 0 3px 0;overflow:hidden;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000ygrp-file {
width:30px;}
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table div.ygrps-yiv-1279022158yiv8710106000attach-row div div a {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table div.ygrps-yiv-1279022158yiv8710106000attach-row div div span {
font-weight:normal;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000ygrp-file-title {
font-weight:bold;}
#ygrps-yiv-1279022158



Ok, I figured I would need to add the custom code but wan't sure if I needed to us VB or SQL or ABL.
 
I will try this.


On Thursday, March 27, 2014 11:24 AM, Karen Schoenung <kschoenung@...> wrote:
 
<div id="ygrps-yiv-1279022158yiv8710106000ygrp-text">
  
  
  <div>
In Vantage 8.03.409C (probably similar in Epicor 9) Use the wizard tab in customization, then the event wizard tab, select your custom button on this tab and the click event.  Update the selected code.  Now the button click event is in the Script editor.  You will need to put custom code for adding the user and date between the lines of code.  Search this group or google to find that custom code and/or an example of button click event…VB code:
Private Sub btnPrintComments_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnPrintComments.Click
                '// ** Place Event Handling Code Here **
 
PUT YOUR CODE HERE TO GET THE USER AND DATE
 
End Sub
 
 
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of faepigrl@...
Sent: Thursday, March 27, 2014 10:18 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Add Customized Button
 
 

We are using Epicor 9.05.702A
I want to create a button that will return a User/Date Stamp in a text box.  I have my button and test box I just don't know how to link the button to the info I want to return.
Can this be done?
</div>
 


<div class="ygrps-yiv-1279022158yiv8710106000yqt9051011076" id="ygrps-yiv-1279022158yiv8710106000yqt42622"><div style="height:0px;color:rgb(255, 255, 255);"></div></div>
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 -- #ygrps-yiv-1279022158yiv8710106000ygrp-mkp { border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp hr {
border:1px solid #d8d8d8;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp #ygrps-yiv-1279022158yiv8710106000hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp #ygrps-yiv-1279022158yiv8710106000ads {
margin-bottom:10px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp .ygrps-yiv-1279022158yiv8710106000ad {
padding:0 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp .ygrps-yiv-1279022158yiv8710106000ad p {
margin:0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mkp .ygrps-yiv-1279022158yiv8710106000ad a {
color:#0000ff;text-decoration:none;}
#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ygrp-lc {
font-family:Arial;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ygrp-lc #ygrps-yiv-1279022158yiv8710106000hd {
margin:10px 0px;font-weight:700;font-size:78%;line-height:122%;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ygrp-lc .ygrps-yiv-1279022158yiv8710106000ad {
margin-bottom:10px;padding:0 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000actions {
font-family:Verdana;font-size:11px;padding:10px 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity {
background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity span {
font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity span:first-child {
text-transform:uppercase;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity span a {
color:#5085b6;text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity span span {
color:#ff7900;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000activity span .ygrps-yiv-1279022158yiv8710106000underline {
text-decoration:underline;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000attach {
clear:both;display:table;font-family:Arial;font-size:12px;padding:10px 0;width:400px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000attach div a {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000attach img {
border:none;padding-right:5px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000attach label {
display:block;margin-bottom:5px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000attach label a {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 blockquote {
margin:0 0 0 4px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000bold {
font-family:Arial;font-size:13px;font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000bold a {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 dd.ygrps-yiv-1279022158yiv8710106000last p a {
font-family:Verdana;font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 dd.ygrps-yiv-1279022158yiv8710106000last p span {
margin-right:10px;font-family:Verdana;font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 dd.ygrps-yiv-1279022158yiv8710106000last p span.ygrps-yiv-1279022158yiv8710106000yshortcuts {
margin-right:0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table div div a {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000attach-table {
width:400px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000file-title a, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000file-title a:active, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000file-title a:hover, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000file-title a:visited {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:active, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:hover, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div.ygrps-yiv-1279022158yiv8710106000photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 div#ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg #ygrps-yiv-1279022158yiv8710106000ygrp-msg p a span.ygrps-yiv-1279022158yiv8710106000yshortcuts {
font-family:Verdana;font-size:10px;font-weight:normal;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000green {
color:#628c2a;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000MsoNormal {
margin:0 0 0 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 o {
font-size:0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000photos div {
float:left;width:72px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000photos div div {
border:1px solid #666666;height:62px;overflow:hidden;width:62px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000photos div label {
color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000reco-category {
font-size:77%;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000reco-desc {
font-size:77%;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 .ygrps-yiv-1279022158yiv8710106000replbq {
margin:4px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-actbar div a:first-child {
margin-right:2px;padding-right:5px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg {
font-size:13px;font-family:Arial, helvetica, clean, sans-serif;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg table {
font-size:inherit;font:100%;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg select, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 input, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg pre, #ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 code {
font:115% monospace;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg * {
line-height:1.22em;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-mlmsg #ygrps-yiv-1279022158yiv8710106000logo {
padding-bottom:10px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-msg p a {
font-family:Verdana;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-msg p#ygrps-yiv-1279022158yiv8710106000attach-count span {
color:#1E66AE;font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-reco #ygrps-yiv-1279022158yiv8710106000reco-head {
color:#ff7900;font-weight:700;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-reco {
margin-bottom:20px;padding:0px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ov li a {
font-size:130%;text-decoration:none;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ov li {
font-size:77%;list-style-type:square;padding:6px 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-sponsor #ygrps-yiv-1279022158yiv8710106000ov ul {
margin:0;padding:0 0 0 8px;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-text {
font-family:Georgia;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-text p {
margin:0 0 1em 0;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-text tt {
font-size:120%;}

#ygrps-yiv-1279022158 #ygrps-yiv-1279022158yiv8710106000 #ygrps-yiv-1279022158yiv8710106000ygrp-vital ul li:last-child {
border-right:none !important;}
#ygrps-yiv-1279022158








We are using Epicor 9.05.702A

I want to create a button that will return a User/Date Stamp in a text box.  I have my button and test box I just don't know how to link the button to the info I want to return.

Can this be done?

In Vantage 8.03.409C (probably similar in Epicor 9) Use the wizard tab in customization, then the event wizard tab, select your custom button on this tab and the click event.  Update the selected code.  Now the button click event is in the Script editor.  You will need to put custom code for adding the user and date between the lines of code.  Search this group or google to find that custom code and/or an example of button click event…VB code:

Private Sub btnPrintComments_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnPrintComments.Click

                '// ** Place Event Handling Code Here **

 

PUT YOUR CODE HERE TO GET THE USER AND DATE

 

End Sub

 

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of faepigrl@...
Sent: Thursday, March 27, 2014 10:18 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Add Customized Button

 

 


We are using Epicor 9.05.702A

I want to create a button that will return a User/Date Stamp in a text box.  I have my button and test box I just don't know how to link the button to the info I want to return.

Can this be done?

Ok, I figured I would need to add the custom code but wan't sure if I needed to us VB or SQL or ABL.
 
I will try this.


On Thursday, March 27, 2014 11:24 AM, Karen Schoenung <kschoenung@...> wrote:
 
<div id="ygrps-yiv-1204469524yiv2984579398ygrp-text">
  
  
  <div>
In Vantage 8.03.409C (probably similar in Epicor 9) Use the wizard tab in customization, then the event wizard tab, select your custom button on this tab and the click event.  Update the selected code.  Now the button click event is in the Script editor.  You will need to put custom code for adding the user and date between the lines of code.  Search this group or google to find that custom code and/or an example of button click event…VB code:
Private Sub btnPrintComments_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnPrintComments.Click
                '// ** Place Event Handling Code Here **
 
PUT YOUR CODE HERE TO GET THE USER AND DATE
 
End Sub
 
 
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of faepigrl@...
Sent: Thursday, March 27, 2014 10:18 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Add Customized Button
 
 

We are using Epicor 9.05.702A
I want to create a button that will return a User/Date Stamp in a text box.  I have my button and test box I just don't know how to link the button to the info I want to return.
Can this be done?
</div>
 


<div id="ygrps-yiv-1204469524yiv2984579398yqt42622" class="ygrps-yiv-1204469524yiv2984579398yqt9051011076"><div style="height:0px;color:rgb(255, 255, 255);"></div></div>
#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398 -- #ygrps-yiv-1204469524yiv2984579398ygrp-mkp { border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp hr {
border:1px solid #d8d8d8;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp #ygrps-yiv-1204469524yiv2984579398hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp #ygrps-yiv-1204469524yiv2984579398ads {
margin-bottom:10px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp .ygrps-yiv-1204469524yiv2984579398ad {
padding:0 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp .ygrps-yiv-1204469524yiv2984579398ad p {
margin:0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mkp .ygrps-yiv-1204469524yiv2984579398ad a {
color:#0000ff;text-decoration:none;}
#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ygrp-lc {
font-family:Arial;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ygrp-lc #ygrps-yiv-1204469524yiv2984579398hd {
margin:10px 0px;font-weight:700;font-size:78%;line-height:122%;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ygrp-lc .ygrps-yiv-1204469524yiv2984579398ad {
margin-bottom:10px;padding:0 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398actions {
font-family:Verdana;font-size:11px;padding:10px 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity {
background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity span {
font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity span:first-child {
text-transform:uppercase;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity span a {
color:#5085b6;text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity span span {
color:#ff7900;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398activity span .ygrps-yiv-1204469524yiv2984579398underline {
text-decoration:underline;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398attach {
clear:both;display:table;font-family:Arial;font-size:12px;padding:10px 0;width:400px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398attach div a {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398attach img {
border:none;padding-right:5px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398attach label {
display:block;margin-bottom:5px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398attach label a {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 blockquote {
margin:0 0 0 4px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398bold {
font-family:Arial;font-size:13px;font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398bold a {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 dd.ygrps-yiv-1204469524yiv2984579398last p a {
font-family:Verdana;font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 dd.ygrps-yiv-1204469524yiv2984579398last p span {
margin-right:10px;font-family:Verdana;font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 dd.ygrps-yiv-1204469524yiv2984579398last p span.ygrps-yiv-1204469524yiv2984579398yshortcuts {
margin-right:0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398attach-table div div a {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398attach-table {
width:400px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398file-title a, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398file-title a:active, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398file-title a:hover, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398file-title a:visited {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398photo-title a, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398photo-title a:active, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398photo-title a:hover, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div.ygrps-yiv-1204469524yiv2984579398photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 div#ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg #ygrps-yiv-1204469524yiv2984579398ygrp-msg p a span.ygrps-yiv-1204469524yiv2984579398yshortcuts {
font-family:Verdana;font-size:10px;font-weight:normal;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398green {
color:#628c2a;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398MsoNormal {
margin:0 0 0 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 o {
font-size:0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398photos div {
float:left;width:72px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398photos div div {
border:1px solid #666666;height:62px;overflow:hidden;width:62px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398photos div label {
color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398reco-category {
font-size:77%;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398reco-desc {
font-size:77%;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 .ygrps-yiv-1204469524yiv2984579398replbq {
margin:4px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-actbar div a:first-child {
margin-right:2px;padding-right:5px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg {
font-size:13px;font-family:Arial, helvetica, clean, sans-serif;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg table {
font-size:inherit;font:100%;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg select, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 input, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg pre, #ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 code {
font:115% monospace;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg * {
line-height:1.22em;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-mlmsg #ygrps-yiv-1204469524yiv2984579398logo {
padding-bottom:10px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-msg p a {
font-family:Verdana;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-msg p#ygrps-yiv-1204469524yiv2984579398attach-count span {
color:#1E66AE;font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-reco #ygrps-yiv-1204469524yiv2984579398reco-head {
color:#ff7900;font-weight:700;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-reco {
margin-bottom:20px;padding:0px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ov li a {
font-size:130%;text-decoration:none;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ov li {
font-size:77%;list-style-type:square;padding:6px 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-sponsor #ygrps-yiv-1204469524yiv2984579398ov ul {
margin:0;padding:0 0 0 8px;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-text {
font-family:Georgia;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-text p {
margin:0 0 1em 0;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-text tt {
font-size:120%;}

#ygrps-yiv-1204469524 #ygrps-yiv-1204469524yiv2984579398 #ygrps-yiv-1204469524yiv2984579398ygrp-vital ul li:last-child {
border-right:none !important;}
#ygrps-yiv-1204469524