
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_722c48ff56b403ee2e98b33c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2aa471f73162c2773ee3909d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ed573c73d16d6e0c3e375c6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8ce1aef1b3e97bc57f0997d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2065a54e4bf8544c522aafee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a6d359db4fe1f2e8cf20177.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_798599113f120e4ca48c63be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_83c88e4df050a0dc81d1858d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eba82e78a487e374f5e0f7da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d38dadf3f1af531f8dcc7275.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c1c0ab5ce5726d5f1f0afa6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_91e0d07a85589152c70b4f93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d039f966845def1bea79cfd2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2477abff04ac8d8552448b63.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1c50393166dd0f95ad79a353.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8b376a19d907a2de7aa71f2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f4c7d6bb0f7fe652038460b3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e51eb0dcfd8bb2846c6becd0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ccc9ccdecd1ba1b2b8371b8b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5e07b0b0cf399e584c402e52.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_949044ad6da67ff48453725a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_430bebecca9544a5caa4a35d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_67627dce53baa839e5025122.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1a824914bd65ab7d9f946400.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e8502baf7a1320b885aa9ca8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_00822a0b01fb60ceacf728f4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e588eb7bc30ec4da07bab735.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e2da55c139ad3c9a5b7b215d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_faff2537fa4cc9c01e2bf3c4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_2c52ae2b74f75d94d144f113.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_d867ecf1cc8d8d1474349f6a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_71912385418a11ea436ce0ab.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f4c4238a64ae6501b6fa137a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_cd77d29e40c5fcf6039aea23.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_6acc56df255d0e952daa06ee.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.681152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_17def784ccc0f1ba3fd46cdc.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_45771040aaa4989d13d8b6d7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.lse{letter-spacing:-0.634752px;}
.lsd{letter-spacing:-0.497952px;}
.ls10{letter-spacing:-0.443232px;}
.lsf{letter-spacing:-0.404928px;}
.ls34{letter-spacing:-0.241920px;}
.ls3{letter-spacing:-0.229824px;}
.ls24{letter-spacing:-0.172224px;}
.ls2b{letter-spacing:-0.165600px;}
.ls28{letter-spacing:-0.152352px;}
.ls2a{letter-spacing:-0.145728px;}
.ls1{letter-spacing:-0.139104px;}
.ls29{letter-spacing:-0.132480px;}
.ls27{letter-spacing:-0.125856px;}
.ls26{letter-spacing:-0.086112px;}
.ls25{letter-spacing:-0.066240px;}
.ls2f{letter-spacing:-0.036000px;}
.ls2c{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.014400px;}
.ls2e{letter-spacing:0.021600px;}
.ls2d{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.069984px;}
.ls38{letter-spacing:0.093312px;}
.lsc{letter-spacing:0.115920px;}
.ls36{letter-spacing:0.118656px;}
.ls1f{letter-spacing:0.123552px;}
.ls37{letter-spacing:0.124416px;}
.ls20{letter-spacing:0.128304px;}
.ls9{letter-spacing:0.129600px;}
.ls1b{letter-spacing:0.133056px;}
.ls17{letter-spacing:0.152064px;}
.ls39{letter-spacing:0.155520px;}
.ls8{letter-spacing:0.160848px;}
.ls1c{letter-spacing:0.166320px;}
.ls3a{letter-spacing:0.178848px;}
.ls1e{letter-spacing:0.180576px;}
.ls11{letter-spacing:0.199584px;}
.ls18{letter-spacing:0.209088px;}
.lsb{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.242352px;}
.lsa{letter-spacing:0.247104px;}
.ls6{letter-spacing:0.251856px;}
.ls5{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.256608px;}
.ls13{letter-spacing:0.266112px;}
.ls1a{letter-spacing:0.270864px;}
.ls19{letter-spacing:0.275616px;}
.ls1d{letter-spacing:0.285120px;}
.ls21{letter-spacing:0.299376px;}
.ls7{letter-spacing:0.299520px;}
.ls14{letter-spacing:0.304128px;}
.ls12{letter-spacing:0.389664px;}
.ls33{letter-spacing:38.484000px;}
.ls23{letter-spacing:837.000000px;}
.ls4{letter-spacing:843.120288px;}
.ls30{letter-spacing:846.000000px;}
.ls2{letter-spacing:846.000288px;}
.ls22{letter-spacing:847.440576px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2b{word-spacing:-19.595520px;}
.ws2a{word-spacing:-19.509984px;}
.ws23{word-spacing:-18.036000px;}
.ws24{word-spacing:-18.021600px;}
.ws27{word-spacing:-18.014400px;}
.ws26{word-spacing:-18.000000px;}
.ws28{word-spacing:-17.985600px;}
.ws22{word-spacing:-17.978400px;}
.ws25{word-spacing:-17.964000px;}
.ws1c{word-spacing:-16.493760px;}
.ws1d{word-spacing:-16.473888px;}
.ws1e{word-spacing:-16.434144px;}
.ws20{word-spacing:-16.427520px;}
.ws21{word-spacing:-16.394400px;}
.ws29{word-spacing:-14.878080px;}
.ws1f{word-spacing:-14.837760px;}
.ws7{word-spacing:-0.437184px;}
.wsa{word-spacing:-0.351648px;}
.ws1a{word-spacing:-0.346896px;}
.ws13{word-spacing:-0.332640px;}
.wsf{word-spacing:-0.323136px;}
.ws10{word-spacing:-0.318384px;}
.ws9{word-spacing:-0.313632px;}
.wsc{word-spacing:-0.304128px;}
.ws15{word-spacing:-0.299376px;}
.ws14{word-spacing:-0.294624px;}
.wsb{word-spacing:-0.289872px;}
.ws16{word-spacing:-0.285120px;}
.wse{word-spacing:-0.256608px;}
.ws6{word-spacing:-0.247104px;}
.ws17{word-spacing:-0.228096px;}
.ws12{word-spacing:-0.213840px;}
.wsd{word-spacing:-0.199584px;}
.ws11{word-spacing:-0.180576px;}
.ws19{word-spacing:-0.175824px;}
.ws18{word-spacing:-0.171072px;}
.ws8{word-spacing:-0.047520px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.105984px;}
.ws1{word-spacing:0.175104px;}
.ws4{word-spacing:0.350208px;}
.ws5{word-spacing:0.388512px;}
.ws2{word-spacing:0.443232px;}
.ws3{word-spacing:0.580032px;}
._d{margin-left:-15.990480px;}
._9{margin-left:-14.773392px;}
._6{margin-left:-13.761936px;}
._4{margin-left:-12.270384px;}
._7{margin-left:-10.721232px;}
._b{margin-left:-9.591120px;}
._8{margin-left:-8.378352px;}
._5{margin-left:-6.850368px;}
._c{margin-left:-5.733360px;}
._3{margin-left:-4.241232px;}
._a{margin-left:-2.865456px;}
._2{margin-left:-1.140480px;}
._1{width:1.039680px;}
._19{width:2.312640px;}
._15{width:3.564000px;}
._18{width:4.903200px;}
._16{width:6.541200px;}
._11{width:7.646400px;}
._10{width:8.683200px;}
._14{width:9.892800px;}
._20{width:10.987200px;}
._1b{width:12.168000px;}
._24{width:13.456800px;}
._22{width:14.572800px;}
._f{width:16.221600px;}
._25{width:19.958400px;}
._1c{width:21.052800px;}
._13{width:22.384800px;}
._1a{width:24.120000px;}
._17{width:26.049600px;}
._1f{width:27.288000px;}
._1e{width:28.598400px;}
._23{width:30.924000px;}
._21{width:34.473600px;}
._12{width:36.540288px;}
._1d{width:37.561824px;}
._26{width:56.433600px;}
._e{width:71.668800px;}
._0{width:847.728288px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.760000px;}
.fsc{font-size:44.640000px;}
.fsb{font-size:47.520000px;}
.fs2{font-size:50.400000px;}
.fs7{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:146.880000px;}
.fs6{font-size:155.520000px;}
.fs8{font-size:174.240000px;}
.y0{bottom:0.000000px;}
.y230{bottom:14.160000px;}
.y51{bottom:23.100000px;}
.y3{bottom:23.820000px;}
.y22f{bottom:33.000000px;}
.y2{bottom:52.500000px;}
.y50{bottom:75.600000px;}
.y1{bottom:76.320000px;}
.ya2{bottom:111.240000px;}
.ybf{bottom:112.320000px;}
.y168{bottom:112.680000px;}
.y255{bottom:116.640000px;}
.y220{bottom:118.080000px;}
.y99{bottom:119.520000px;}
.y1ff{bottom:123.120000px;}
.y68{bottom:123.480000px;}
.y22e{bottom:125.280000px;}
.y153{bottom:125.640000px;}
.y10b{bottom:126.000000px;}
.yf5{bottom:126.360000px;}
.y134{bottom:126.720000px;}
.y143{bottom:127.080000px;}
.y169{bottom:127.440000px;}
.y140{bottom:128.160000px;}
.y171{bottom:128.520000px;}
.y1c2{bottom:129.960000px;}
.y89{bottom:130.320000px;}
.y1e1{bottom:131.400000px;}
.y166{bottom:133.200000px;}
.y16d{bottom:133.920000px;}
.y1bc{bottom:135.000000px;}
.y19e{bottom:136.440000px;}
.y21f{bottom:138.240000px;}
.y254{bottom:138.960000px;}
.y67{bottom:139.320000px;}
.y1fe{bottom:143.280000px;}
.y1f6{bottom:145.080000px;}
.y22d{bottom:145.440000px;}
.yae{bottom:146.520000px;}
.y112{bottom:146.880000px;}
.y133{bottom:147.240000px;}
.yd7{bottom:147.600000px;}
.y120{bottom:147.960000px;}
.y146{bottom:148.680000px;}
.y188{bottom:149.040000px;}
.ya1{bottom:151.560000px;}
.y1e0{bottom:151.920000px;}
.ybe{bottom:152.640000px;}
.y4f{bottom:153.360000px;}
.y12e{bottom:153.720000px;}
.y173{bottom:154.800000px;}
.y66{bottom:155.160000px;}
.y9f{bottom:156.960000px;}
.y19d{bottom:157.320000px;}
.y21e{bottom:158.760000px;}
.y1ab{bottom:161.280000px;}
.y253{bottom:161.640000px;}
.y1fd{bottom:163.440000px;}
.y1f5{bottom:165.240000px;}
.y22c{bottom:165.600000px;}
.y98{bottom:165.960000px;}
.y103{bottom:167.040000px;}
.y4e{bottom:167.400000px;}
.yea{bottom:167.760000px;}
.y122{bottom:168.120000px;}
.y142{bottom:168.480000px;}
.y145{bottom:168.840000px;}
.y13f{bottom:169.200000px;}
.y187{bottom:169.560000px;}
.y1c1{bottom:170.640000px;}
.y1e{bottom:171.000000px;}
.y1df{bottom:172.080000px;}
.y165{bottom:173.880000px;}
.y12d{bottom:174.240000px;}
.y182{bottom:174.960000px;}
.y88{bottom:176.400000px;}
.y19c{bottom:177.480000px;}
.y21d{bottom:178.920000px;}
.y4d{bottom:181.800000px;}
.y1fc{bottom:183.600000px;}
.y252{bottom:183.960000px;}
.y1f4{bottom:185.400000px;}
.y22b{bottom:186.120000px;}
.y65{bottom:186.840000px;}
.y10a{bottom:187.200000px;}
.y102{bottom:187.560000px;}
.y132{bottom:187.920000px;}
.ye9{bottom:188.280000px;}
.yd6{bottom:188.640000px;}
.y141{bottom:189.000000px;}
.y1d{bottom:189.360000px;}
.y13e{bottom:189.720000px;}
.y1de{bottom:192.240000px;}
.ybd{bottom:193.320000px;}
.y242{bottom:194.040000px;}
.y12c{bottom:194.760000px;}
.y181{bottom:195.480000px;}
.y4c{bottom:196.200000px;}
.y19b{bottom:197.640000px;}
.y21c{bottom:199.080000px;}
.ya0{bottom:201.240000px;}
.y9e{bottom:203.040000px;}
.y20d{bottom:204.840000px;}
.y1f3{bottom:205.920000px;}
.y22a{bottom:206.280000px;}
.y251{bottom:206.640000px;}
.y64{bottom:207.720000px;}
.y152{bottom:208.080000px;}
.ye8{bottom:208.440000px;}
.y154{bottom:209.160000px;}
.yd5{bottom:209.520000px;}
.y1cc{bottom:209.880000px;}
.y13d{bottom:210.240000px;}
.y1c{bottom:210.600000px;}
.y97{bottom:212.040000px;}
.y1dd{bottom:212.400000px;}
.y12b{bottom:214.920000px;}
.y180{bottom:215.640000px;}
.y19a{bottom:217.800000px;}
.y21b{bottom:219.240000px;}
.y87{bottom:222.480000px;}
.y1aa{bottom:223.920000px;}
.y4b{bottom:225.000000px;}
.y1f2{bottom:226.080000px;}
.yad{bottom:227.520000px;}
.y109{bottom:227.880000px;}
.y101{bottom:228.240000px;}
.y14c{bottom:228.600000px;}
.ye7{bottom:228.960000px;}
.y167{bottom:229.320000px;}
.yd4{bottom:229.680000px;}
.y13c{bottom:230.400000px;}
.y1bb{bottom:231.480000px;}
.y1c0{bottom:232.560000px;}
.ybc{bottom:233.640000px;}
.y12a{bottom:235.080000px;}
.y17f{bottom:235.800000px;}
.y199{bottom:238.320000px;}
.y21a{bottom:239.760000px;}
.y229{bottom:240.480000px;}
.y1a9{bottom:244.440000px;}
.y241{bottom:245.160000px;}
.y1f1{bottom:246.240000px;}
.y1dc{bottom:246.600000px;}
.y9d{bottom:249.120000px;}
.yf4{bottom:249.480000px;}
.yd3{bottom:249.840000px;}
.y11f{bottom:250.200000px;}
.y13b{bottom:250.560000px;}
.y4a{bottom:250.920000px;}
.y63{bottom:251.640000px;}
.y1bf{bottom:252.720000px;}
.y1b{bottom:254.520000px;}
.y164{bottom:255.240000px;}
.y96{bottom:258.120000px;}
.y198{bottom:258.480000px;}
.y219{bottom:259.920000px;}
.y20c{bottom:260.280000px;}
.y228{bottom:260.640000px;}
.y1a8{bottom:264.600000px;}
.y1f0{bottom:266.400000px;}
.y1db{bottom:267.120000px;}
.yac{bottom:267.840000px;}
.y86{bottom:268.560000px;}
.y100{bottom:268.920000px;}
.ye6{bottom:269.280000px;}
.y131{bottom:269.640000px;}
.yd2{bottom:270.000000px;}
.y11a{bottom:270.360000px;}
.y11e{bottom:270.720000px;}
.y1cb{bottom:271.440000px;}
.y1ba{bottom:272.880000px;}
.y1be{bottom:273.240000px;}
.y250{bottom:273.960000px;}
.ybb{bottom:274.320000px;}
.y240{bottom:275.760000px;}
.y129{bottom:276.120000px;}
.y17e{bottom:276.840000px;}
.y49{bottom:277.200000px;}
.y197{bottom:278.640000px;}
.y218{bottom:280.080000px;}
.y20b{bottom:280.440000px;}
.y225{bottom:280.800000px;}
.y1a7{bottom:285.120000px;}
.y1ef{bottom:286.920000px;}
.y1da{bottom:287.280000px;}
.yff{bottom:289.440000px;}
.y111{bottom:290.160000px;}
.yd1{bottom:290.520000px;}
.y16c{bottom:290.880000px;}
.y119{bottom:291.240000px;}
.y1ca{bottom:291.960000px;}
.y48{bottom:293.040000px;}
.y1b9{bottom:293.400000px;}
.y9c{bottom:295.200000px;}
.y163{bottom:296.280000px;}
.y128{bottom:296.640000px;}
.y17d{bottom:297.360000px;}
.y196{bottom:298.800000px;}
.y20a{bottom:300.600000px;}
.y224{bottom:301.320000px;}
.y62{bottom:301.680000px;}
.y95{bottom:304.200000px;}
.y1a{bottom:304.560000px;}
.y1a6{bottom:305.280000px;}
.y23f{bottom:306.000000px;}
.y1ee{bottom:306.360000px;}
.y1d9{bottom:307.440000px;}
.y47{bottom:308.520000px;}
.yfe{bottom:309.960000px;}
.ye5{bottom:310.320000px;}
.yd0{bottom:310.680000px;}
.y144{bottom:311.040000px;}
.y13a{bottom:311.400000px;}
.y170{bottom:311.760000px;}
.y1c9{bottom:312.120000px;}
.y1b8{bottom:313.560000px;}
.y217{bottom:314.280000px;}
.y85{bottom:314.640000px;}
.y127{bottom:316.800000px;}
.y17c{bottom:317.520000px;}
.y24f{bottom:318.960000px;}
.y195{bottom:319.320000px;}
.y209{bottom:321.120000px;}
.y223{bottom:321.480000px;}
.y46{bottom:322.920000px;}
.y1a5{bottom:325.440000px;}
.y1d8{bottom:327.600000px;}
.yfd{bottom:330.120000px;}
.ycf{bottom:330.840000px;}
.yf3{bottom:331.200000px;}
.y139{bottom:331.560000px;}
.y118{bottom:331.920000px;}
.y16f{bottom:332.280000px;}
.y1b7{bottom:333.720000px;}
.y216{bottom:334.440000px;}
.y23e{bottom:336.600000px;}
.y45{bottom:337.320000px;}
.y17b{bottom:338.040000px;}
.y194{bottom:339.480000px;}
.y9b{bottom:341.280000px;}
.y222{bottom:341.640000px;}
.y1a4{bottom:345.600000px;}
.y1d7{bottom:348.120000px;}
.yab{bottom:348.840000px;}
.y94{bottom:350.280000px;}
.y151{bottom:350.640000px;}
.ye4{bottom:351.000000px;}
.y44{bottom:351.360000px;}
.y61{bottom:351.720000px;}
.y117{bottom:352.440000px;}
.y1b6{bottom:354.240000px;}
.y19{bottom:354.600000px;}
.y215{bottom:354.960000px;}
.yba{bottom:355.320000px;}
.y126{bottom:357.480000px;}
.y17a{bottom:358.200000px;}
.y193{bottom:359.640000px;}
.y84{bottom:360.720000px;}
.y208{bottom:361.440000px;}
.y1ed{bottom:361.800000px;}
.y24e{bottom:363.960000px;}
.y43{bottom:366.120000px;}
.y23d{bottom:366.840000px;}
.y1d6{bottom:368.280000px;}
.ye3{bottom:371.160000px;}
.y14b{bottom:371.520000px;}
.yce{bottom:371.880000px;}
.y108{bottom:372.240000px;}
.y172{bottom:372.600000px;}
.y116{bottom:372.960000px;}
.y1c8{bottom:373.320000px;}
.y1b5{bottom:374.400000px;}
.y214{bottom:375.120000px;}
.y162{bottom:377.640000px;}
.y186{bottom:378.720000px;}
.y192{bottom:379.800000px;}
.y42{bottom:380.520000px;}
.y207{bottom:381.600000px;}
.y1ec{bottom:382.320000px;}
.y1a3{bottom:386.280000px;}
.y24d{bottom:386.640000px;}
.y9a{bottom:387.360000px;}
.y1d5{bottom:388.440000px;}
.yaa{bottom:389.520000px;}
.yfc{bottom:391.680000px;}
.ycd{bottom:392.400000px;}
.y174{bottom:392.760000px;}
.y115{bottom:393.120000px;}
.y1c7{bottom:393.840000px;}
.y41{bottom:394.560000px;}
.y213{bottom:395.280000px;}
.yb9{bottom:395.640000px;}
.y93{bottom:396.360000px;}
.y23c{bottom:397.080000px;}
.y125{bottom:398.520000px;}
.y179{bottom:398.880000px;}
.y185{bottom:399.240000px;}
.y1fb{bottom:400.320000px;}
.y60{bottom:401.040000px;}
.y206{bottom:402.120000px;}
.y1eb{bottom:402.480000px;}
.y18{bottom:403.560000px;}
.y1a2{bottom:406.440000px;}
.y83{bottom:406.800000px;}
.y1d4{bottom:408.600000px;}
.y40{bottom:408.960000px;}
.y14a{bottom:412.200000px;}
.ycc{bottom:412.560000px;}
.y130{bottom:412.920000px;}
.yf2{bottom:413.280000px;}
.y78{bottom:414.000000px;}
.y1b4{bottom:414.720000px;}
.y212{bottom:415.440000px;}
.y161{bottom:419.040000px;}
.y178{bottom:419.760000px;}
.y1fa{bottom:420.480000px;}
.y191{bottom:421.200000px;}
.y205{bottom:422.280000px;}
.y1ea{bottom:422.640000px;}
.y3f{bottom:423.360000px;}
.y23b{bottom:427.680000px;}
.y1d3{bottom:429.120000px;}
.ya9{bottom:429.840000px;}
.y24c{bottom:431.640000px;}
.yfb{bottom:432.360000px;}
.y110{bottom:432.720000px;}
.y107{bottom:433.080000px;}
.y92{bottom:433.440000px;}
.y1c6{bottom:434.520000px;}
.y1b3{bottom:435.240000px;}
.y211{bottom:435.960000px;}
.yb8{bottom:436.320000px;}
.y3e{bottom:437.760000px;}
.y177{bottom:439.920000px;}
.y204{bottom:442.440000px;}
.y1e9{bottom:442.800000px;}
.y1a1{bottom:447.480000px;}
.y5f{bottom:448.920000px;}
.y1d2{bottom:449.280000px;}
.y17{bottom:451.440000px;}
.y3d{bottom:451.800000px;}
.y149{bottom:452.880000px;}
.y82{bottom:453.240000px;}
.ye2{bottom:453.600000px;}
.ycb{bottom:453.960000px;}
.yf1{bottom:454.320000px;}
.y1c5{bottom:454.680000px;}
.y1b2{bottom:455.400000px;}
.y210{bottom:456.120000px;}
.y23a{bottom:457.920000px;}
.y160{bottom:459.720000px;}
.y176{bottom:460.080000px;}
.y1f9{bottom:461.160000px;}
.y190{bottom:461.880000px;}
.y203{bottom:462.600000px;}
.y1e8{bottom:463.320000px;}
.y3c{bottom:466.560000px;}
.y5e{bottom:467.640000px;}
.y1d1{bottom:469.440000px;}
.y16{bottom:470.160000px;}
.ya8{bottom:470.520000px;}
.y150{bottom:473.400000px;}
.yfa{bottom:473.760000px;}
.ye1{bottom:474.120000px;}
.y12f{bottom:474.480000px;}
.yf0{bottom:474.840000px;}
.y77{bottom:475.560000px;}
.y20f{bottom:476.280000px;}
.yb7{bottom:476.640000px;}
.y91{bottom:479.520000px;}
.y3b{bottom:480.240000px;}
.y184{bottom:480.960000px;}
.y1a0{bottom:482.040000px;}
.y18f{bottom:482.760000px;}
.y202{bottom:483.120000px;}
.y1e7{bottom:483.480000px;}
.y5d{bottom:485.640000px;}
.y15{bottom:488.520000px;}
.y1d0{bottom:489.600000px;}
.y3a{bottom:493.920000px;}
.ye0{bottom:494.280000px;}
.yca{bottom:494.640000px;}
.yef{bottom:495.000000px;}
.y14f{bottom:495.360000px;}
.y1c4{bottom:495.720000px;}
.y1b1{bottom:496.440000px;}
.y24b{bottom:498.960000px;}
.y81{bottom:499.320000px;}
.y15f{bottom:501.120000px;}
.y175{bottom:501.480000px;}
.y1f8{bottom:502.560000px;}
.y26{bottom:502.920000px;}
.y201{bottom:503.280000px;}
.y1e6{bottom:503.640000px;}
.y5c{bottom:504.000000px;}
.y14{bottom:506.880000px;}
.y39{bottom:509.400000px;}
.y1cf{bottom:510.120000px;}
.ya7{bottom:510.840000px;}
.ydf{bottom:514.440000px;}
.y106{bottom:515.160000px;}
.yc9{bottom:515.520000px;}
.y16e{bottom:515.880000px;}
.y14e{bottom:516.240000px;}
.y1bd{bottom:516.960000px;}
.yb6{bottom:517.320000px;}
.y227{bottom:517.680000px;}
.y24a{bottom:521.640000px;}
.y19f{bottom:522.720000px;}
.y18e{bottom:523.080000px;}
.y200{bottom:523.440000px;}
.y1e5{bottom:523.800000px;}
.y38{bottom:524.160000px;}
.y5b{bottom:525.600000px;}
.y90{bottom:525.960000px;}
.y13{bottom:528.480000px;}
.y1ce{bottom:530.280000px;}
.y25{bottom:532.800000px;}
.y10f{bottom:534.960000px;}
.y124{bottom:535.320000px;}
.y105{bottom:535.680000px;}
.yee{bottom:536.040000px;}
.y14d{bottom:536.400000px;}
.y76{bottom:537.120000px;}
.y1b0{bottom:537.480000px;}
.y226{bottom:537.840000px;}
.y37{bottom:538.560000px;}
.y239{bottom:539.280000px;}
.y15e{bottom:542.160000px;}
.y18d{bottom:543.240000px;}
.y221{bottom:543.960000px;}
.y1e4{bottom:544.320000px;}
.y80{bottom:545.400000px;}
.ya6{bottom:551.520000px;}
.y36{bottom:552.960000px;}
.y10e{bottom:555.120000px;}
.yde{bottom:555.480000px;}
.y104{bottom:555.840000px;}
.yc8{bottom:556.200000px;}
.yed{bottom:556.560000px;}
.y1c3{bottom:556.920000px;}
.y20e{bottom:557.280000px;}
.yb5{bottom:557.640000px;}
.y1af{bottom:558.000000px;}
.y15d{bottom:563.040000px;}
.y5a{bottom:563.760000px;}
.y1cd{bottom:564.480000px;}
.y12{bottom:566.280000px;}
.y249{bottom:566.640000px;}
.y35{bottom:567.360000px;}
.y238{bottom:570.240000px;}
.y8f{bottom:572.040000px;}
.y10d{bottom:575.280000px;}
.ydd{bottom:576.000000px;}
.y11d{bottom:576.360000px;}
.yc7{bottom:576.720000px;}
.y75{bottom:577.080000px;}
.y24{bottom:578.520000px;}
.y34{bottom:581.040000px;}
.y15c{bottom:583.200000px;}
.y18c{bottom:583.920000px;}
.y1e3{bottom:584.640000px;}
.y248{bottom:588.960000px;}
.y7f{bottom:591.480000px;}
.ya5{bottom:591.840000px;}
.y33{bottom:596.520000px;}
.y137{bottom:596.880000px;}
.y59{bottom:597.240000px;}
.y16b{bottom:597.600000px;}
.yb4{bottom:598.320000px;}
.yc0{bottom:598.680000px;}
.y11{bottom:599.760000px;}
.y237{bottom:600.480000px;}
.y15b{bottom:603.360000px;}
.y18b{bottom:604.080000px;}
.y1e2{bottom:604.800000px;}
.y32{bottom:610.560000px;}
.y247{bottom:611.640000px;}
.y58{bottom:613.080000px;}
.y10{bottom:615.960000px;}
.yf9{bottom:616.680000px;}
.y148{bottom:617.040000px;}
.yc6{bottom:617.400000px;}
.y74{bottom:617.760000px;}
.y8e{bottom:618.120000px;}
.y1ae{bottom:618.840000px;}
.y23{bottom:619.920000px;}
.y15a{bottom:623.520000px;}
.y31{bottom:624.240000px;}
.y57{bottom:630.360000px;}
.y236{bottom:630.720000px;}
.ya4{bottom:632.520000px;}
.yf{bottom:633.240000px;}
.y246{bottom:633.960000px;}
.yf8{bottom:636.840000px;}
.ydc{bottom:637.200000px;}
.y7e{bottom:637.560000px;}
.y121{bottom:637.920000px;}
.y11c{bottom:638.280000px;}
.yb3{bottom:638.640000px;}
.y1ad{bottom:639.000000px;}
.y30{bottom:639.720000px;}
.y18a{bottom:644.760000px;}
.y56{bottom:647.640000px;}
.ye{bottom:650.520000px;}
.y2f{bottom:653.760000px;}
.y245{bottom:656.640000px;}
.yf7{bottom:657.000000px;}
.y10c{bottom:657.360000px;}
.yc5{bottom:657.720000px;}
.y138{bottom:658.080000px;}
.y73{bottom:658.440000px;}
.y114{bottom:659.160000px;}
.y1ac{bottom:659.520000px;}
.y235{bottom:661.320000px;}
.y22{bottom:663.480000px;}
.y8d{bottom:664.200000px;}
.y159{bottom:664.560000px;}
.y189{bottom:664.920000px;}
.y2e{bottom:668.520000px;}
.y55{bottom:669.960000px;}
.yd{bottom:672.840000px;}
.yf6{bottom:677.160000px;}
.y136{bottom:677.880000px;}
.ydb{bottom:678.240000px;}
.y147{bottom:678.600000px;}
.y11b{bottom:678.960000px;}
.yb2{bottom:679.320000px;}
.y113{bottom:679.680000px;}
.y7d{bottom:683.640000px;}
.y2d{bottom:684.720000px;}
.y158{bottom:685.080000px;}
.y8{bottom:685.440000px;}
.y234{bottom:691.560000px;}
.yda{bottom:698.400000px;}
.yc4{bottom:698.760000px;}
.yec{bottom:699.120000px;}
.y16a{bottom:699.480000px;}
.y72{bottom:699.840000px;}
.y2c{bottom:700.920000px;}
.y157{bottom:705.240000px;}
.y244{bottom:709.560000px;}
.y8c{bottom:710.280000px;}
.ya3{bottom:713.520000px;}
.y21{bottom:714.600000px;}
.y7{bottom:715.320000px;}
.yd9{bottom:718.560000px;}
.y183{bottom:718.920000px;}
.yc3{bottom:719.280000px;}
.yb1{bottom:719.640000px;}
.y71{bottom:720.000000px;}
.y233{bottom:721.800000px;}
.y156{bottom:725.400000px;}
.y2b{bottom:725.760000px;}
.y7c{bottom:727.560000px;}
.y258{bottom:731.520000px;}
.y54{bottom:731.880000px;}
.yc{bottom:734.400000px;}
.y6{bottom:736.920000px;}
.y123{bottom:739.080000px;}
.yc2{bottom:739.440000px;}
.yeb{bottom:740.160000px;}
.y70{bottom:740.520000px;}
.y2a{bottom:744.120000px;}
.y1f7{bottom:746.640000px;}
.y232{bottom:752.040000px;}
.y7b{bottom:753.840000px;}
.y6c{bottom:754.200000px;}
.y8b{bottom:756.360000px;}
.yc1{bottom:759.600000px;}
.yd8{bottom:759.960000px;}
.yb0{bottom:760.320000px;}
.y6f{bottom:760.680000px;}
.y29{bottom:762.840000px;}
.yb{bottom:763.920000px;}
.y53{bottom:764.280000px;}
.y155{bottom:766.800000px;}
.y243{bottom:770.760000px;}
.y6b{bottom:771.840000px;}
.y5{bottom:774.720000px;}
.y257{bottom:776.520000px;}
.y135{bottom:780.480000px;}
.y6e{bottom:780.840000px;}
.y28{bottom:781.200000px;}
.y6a{bottom:787.680000px;}
.y20{bottom:790.560000px;}
.y7a{bottom:790.920000px;}
.ya{bottom:791.280000px;}
.y79{bottom:793.080000px;}
.y231{bottom:793.440000px;}
.y52{bottom:793.800000px;}
.y256{bottom:799.200000px;}
.y27{bottom:799.920000px;}
.yaf{bottom:800.640000px;}
.y6d{bottom:801.000000px;}
.y8a{bottom:802.440000px;}
.y69{bottom:803.520000px;}
.y4{bottom:809.640000px;}
.y1f{bottom:817.200000px;}
.y9{bottom:818.640000px;}
.h1a{height:27.000000px;}
.h15{height:27.833203px;}
.h14{height:29.752734px;}
.h6{height:33.591797px;}
.h13{height:33.598125px;}
.hc{height:36.471094px;}
.h12{height:36.898594px;}
.hf{height:38.528438px;}
.h16{height:39.000000px;}
.h8{height:40.310156px;}
.h3{height:40.500000px;}
.h2{height:44.149219px;}
.h9{height:47.988281px;}
.h1b{height:51.827344px;}
.h4{height:55.437188px;}
.h11{height:55.666406px;}
.h17{height:58.317188px;}
.h5{height:60.257813px;}
.h10{height:60.328125px;}
.h18{height:60.890625px;}
.ha{height:64.304297px;}
.h19{height:71.982422px;}
.h7{height:90.386719px;}
.he{height:97.896094px;}
.hb{height:103.654688px;}
.hd{height:116.131641px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w3{width:9.000000px;}
.w2{width:10.500000px;}
.w7{width:16.500000px;}
.w6{width:18.000000px;}
.w5{width:19.500000px;}
.w4{width:637.920000px;}
.w1{width:638.250000px;}
.w0{width:638.280000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.x9{left:76.680180px;}
.x19{left:84.000000px;}
.x13{left:93.599856px;}
.x1d{left:95.464224px;}
.x1c{left:101.273796px;}
.x1{left:103.680180px;}
.xd{left:106.380252px;}
.x24{left:110.099844px;}
.x18{left:111.959856px;}
.xe{left:120.599856px;}
.x23{left:126.599868px;}
.x38{left:128.145276px;}
.x41{left:130.390884px;}
.x50{left:133.102296px;}
.x55{left:136.596312px;}
.x27{left:138.059676px;}
.x53{left:139.773564px;}
.x3b{left:142.687116px;}
.x28{left:146.699712px;}
.x43{left:148.307724px;}
.x54{left:152.609616px;}
.x1e{left:158.631228px;}
.x2c{left:162.158940px;}
.x47{left:164.422116px;}
.x2f{left:166.944564px;}
.x8{left:170.271252px;}
.x16{left:174.215700px;}
.x46{left:177.350832px;}
.x51{left:179.526492px;}
.x40{left:181.398564px;}
.x45{left:183.648564px;}
.x2a{left:184.782348px;}
.x4a{left:185.797116px;}
.x4f{left:187.027956px;}
.x31{left:191.329848px;}
.x4d{left:192.749616px;}
.x2e{left:194.335704px;}
.x4b{left:195.931260px;}
.x2b{left:197.425044px;}
.x36{left:198.462528px;}
.x33{left:199.873152px;}
.x35{left:201.072492px;}
.x32{left:202.856688px;}
.x34{left:204.461064px;}
.x48{left:208.762920px;}
.x29{left:210.072492px;}
.xc{left:211.221684px;}
.x30{left:212.995224px;}
.x57{left:215.152956px;}
.x3f{left:216.919188px;}
.x4e{left:218.233152px;}
.x4{left:220.228632px;}
.x7{left:221.865228px;}
.x10{left:224.173080px;}
.x15{left:225.809676px;}
.x3a{left:228.353760px;}
.x3d{left:230.045652px;}
.x2d{left:232.124616px;}
.x56{left:234.088992px;}
.x39{left:235.767348px;}
.x4c{left:238.953348px;}
.x37{left:241.309188px;}
.x3e{left:242.715456px;}
.x49{left:250.032348px;}
.xb{left:252.576416px;}
.x17{left:256.520901px;}
.x26{left:268.963632px;}
.x44{left:270.471312px;}
.x58{left:274.962168px;}
.x52{left:277.858152px;}
.x1f{left:283.286520px;}
.x22{left:290.494980px;}
.x42{left:303.262920px;}
.x3c{left:306.185652px;}
.x1a{left:314.609642px;}
.xa{left:319.305168px;}
.x14{left:323.249616px;}
.x20{left:369.348840px;}
.x5{left:418.381574px;}
.x11{left:422.326102px;}
.x6{left:424.455121px;}
.x12{left:428.399203px;}
.x1b{left:483.158520px;}
.x25{left:535.500000px;}
.xf{left:543.000000px;}
.x21{left:544.259880px;}
.x2{left:552.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.lse{letter-spacing:-0.564224pt;}
.lsd{letter-spacing:-0.442624pt;}
.ls10{letter-spacing:-0.393984pt;}
.lsf{letter-spacing:-0.359936pt;}
.ls34{letter-spacing:-0.215040pt;}
.ls3{letter-spacing:-0.204288pt;}
.ls24{letter-spacing:-0.153088pt;}
.ls2b{letter-spacing:-0.147200pt;}
.ls28{letter-spacing:-0.135424pt;}
.ls2a{letter-spacing:-0.129536pt;}
.ls1{letter-spacing:-0.123648pt;}
.ls29{letter-spacing:-0.117760pt;}
.ls27{letter-spacing:-0.111872pt;}
.ls26{letter-spacing:-0.076544pt;}
.ls25{letter-spacing:-0.058880pt;}
.ls2f{letter-spacing:-0.032000pt;}
.ls2c{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.012800pt;}
.ls2e{letter-spacing:0.019200pt;}
.ls2d{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.062208pt;}
.ls38{letter-spacing:0.082944pt;}
.lsc{letter-spacing:0.103040pt;}
.ls36{letter-spacing:0.105472pt;}
.ls1f{letter-spacing:0.109824pt;}
.ls37{letter-spacing:0.110592pt;}
.ls20{letter-spacing:0.114048pt;}
.ls9{letter-spacing:0.115200pt;}
.ls1b{letter-spacing:0.118272pt;}
.ls17{letter-spacing:0.135168pt;}
.ls39{letter-spacing:0.138240pt;}
.ls8{letter-spacing:0.142976pt;}
.ls1c{letter-spacing:0.147840pt;}
.ls3a{letter-spacing:0.158976pt;}
.ls1e{letter-spacing:0.160512pt;}
.ls11{letter-spacing:0.177408pt;}
.ls18{letter-spacing:0.185856pt;}
.lsb{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.215424pt;}
.lsa{letter-spacing:0.219648pt;}
.ls6{letter-spacing:0.223872pt;}
.ls5{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.228096pt;}
.ls13{letter-spacing:0.236544pt;}
.ls1a{letter-spacing:0.240768pt;}
.ls19{letter-spacing:0.244992pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls21{letter-spacing:0.266112pt;}
.ls7{letter-spacing:0.266240pt;}
.ls14{letter-spacing:0.270336pt;}
.ls12{letter-spacing:0.346368pt;}
.ls33{letter-spacing:34.208000pt;}
.ls23{letter-spacing:744.000000pt;}
.ls4{letter-spacing:749.440256pt;}
.ls30{letter-spacing:752.000000pt;}
.ls2{letter-spacing:752.000256pt;}
.ls22{letter-spacing:753.280512pt;}
.ws2b{word-spacing:-17.418240pt;}
.ws2a{word-spacing:-17.342208pt;}
.ws23{word-spacing:-16.032000pt;}
.ws24{word-spacing:-16.019200pt;}
.ws27{word-spacing:-16.012800pt;}
.ws26{word-spacing:-16.000000pt;}
.ws28{word-spacing:-15.987200pt;}
.ws22{word-spacing:-15.980800pt;}
.ws25{word-spacing:-15.968000pt;}
.ws1c{word-spacing:-14.661120pt;}
.ws1d{word-spacing:-14.643456pt;}
.ws1e{word-spacing:-14.608128pt;}
.ws20{word-spacing:-14.602240pt;}
.ws21{word-spacing:-14.572800pt;}
.ws29{word-spacing:-13.224960pt;}
.ws1f{word-spacing:-13.189120pt;}
.ws7{word-spacing:-0.388608pt;}
.wsa{word-spacing:-0.312576pt;}
.ws1a{word-spacing:-0.308352pt;}
.ws13{word-spacing:-0.295680pt;}
.wsf{word-spacing:-0.287232pt;}
.ws10{word-spacing:-0.283008pt;}
.ws9{word-spacing:-0.278784pt;}
.wsc{word-spacing:-0.270336pt;}
.ws15{word-spacing:-0.266112pt;}
.ws14{word-spacing:-0.261888pt;}
.wsb{word-spacing:-0.257664pt;}
.ws16{word-spacing:-0.253440pt;}
.wse{word-spacing:-0.228096pt;}
.ws6{word-spacing:-0.219648pt;}
.ws17{word-spacing:-0.202752pt;}
.ws12{word-spacing:-0.190080pt;}
.wsd{word-spacing:-0.177408pt;}
.ws11{word-spacing:-0.160512pt;}
.ws19{word-spacing:-0.156288pt;}
.ws18{word-spacing:-0.152064pt;}
.ws8{word-spacing:-0.042240pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.094208pt;}
.ws1{word-spacing:0.155648pt;}
.ws4{word-spacing:0.311296pt;}
.ws5{word-spacing:0.345344pt;}
.ws2{word-spacing:0.393984pt;}
.ws3{word-spacing:0.515584pt;}
._d{margin-left:-14.213760pt;}
._9{margin-left:-13.131904pt;}
._6{margin-left:-12.232832pt;}
._4{margin-left:-10.907008pt;}
._7{margin-left:-9.529984pt;}
._b{margin-left:-8.525440pt;}
._8{margin-left:-7.447424pt;}
._5{margin-left:-6.089216pt;}
._c{margin-left:-5.096320pt;}
._3{margin-left:-3.769984pt;}
._a{margin-left:-2.547072pt;}
._2{margin-left:-1.013760pt;}
._1{width:0.924160pt;}
._19{width:2.055680pt;}
._15{width:3.168000pt;}
._18{width:4.358400pt;}
._16{width:5.814400pt;}
._11{width:6.796800pt;}
._10{width:7.718400pt;}
._14{width:8.793600pt;}
._20{width:9.766400pt;}
._1b{width:10.816000pt;}
._24{width:11.961600pt;}
._22{width:12.953600pt;}
._f{width:14.419200pt;}
._25{width:17.740800pt;}
._1c{width:18.713600pt;}
._13{width:19.897600pt;}
._1a{width:21.440000pt;}
._17{width:23.155200pt;}
._1f{width:24.256000pt;}
._1e{width:25.420800pt;}
._23{width:27.488000pt;}
._21{width:30.643200pt;}
._12{width:32.480256pt;}
._1d{width:33.388288pt;}
._26{width:50.163200pt;}
._e{width:63.705600pt;}
._0{width:753.536256pt;}
.fsd{font-size:37.120000pt;}
.fsc{font-size:39.680000pt;}
.fsb{font-size:42.240000pt;}
.fs2{font-size:44.800000pt;}
.fs7{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:130.560000pt;}
.fs6{font-size:138.240000pt;}
.fs8{font-size:154.880000pt;}
.y0{bottom:0.000000pt;}
.y230{bottom:12.586667pt;}
.y51{bottom:20.533333pt;}
.y3{bottom:21.173333pt;}
.y22f{bottom:29.333333pt;}
.y2{bottom:46.666667pt;}
.y50{bottom:67.200000pt;}
.y1{bottom:67.840000pt;}
.ya2{bottom:98.880000pt;}
.ybf{bottom:99.840000pt;}
.y168{bottom:100.160000pt;}
.y255{bottom:103.680000pt;}
.y220{bottom:104.960000pt;}
.y99{bottom:106.240000pt;}
.y1ff{bottom:109.440000pt;}
.y68{bottom:109.760000pt;}
.y22e{bottom:111.360000pt;}
.y153{bottom:111.680000pt;}
.y10b{bottom:112.000000pt;}
.yf5{bottom:112.320000pt;}
.y134{bottom:112.640000pt;}
.y143{bottom:112.960000pt;}
.y169{bottom:113.280000pt;}
.y140{bottom:113.920000pt;}
.y171{bottom:114.240000pt;}
.y1c2{bottom:115.520000pt;}
.y89{bottom:115.840000pt;}
.y1e1{bottom:116.800000pt;}
.y166{bottom:118.400000pt;}
.y16d{bottom:119.040000pt;}
.y1bc{bottom:120.000000pt;}
.y19e{bottom:121.280000pt;}
.y21f{bottom:122.880000pt;}
.y254{bottom:123.520000pt;}
.y67{bottom:123.840000pt;}
.y1fe{bottom:127.360000pt;}
.y1f6{bottom:128.960000pt;}
.y22d{bottom:129.280000pt;}
.yae{bottom:130.240000pt;}
.y112{bottom:130.560000pt;}
.y133{bottom:130.880000pt;}
.yd7{bottom:131.200000pt;}
.y120{bottom:131.520000pt;}
.y146{bottom:132.160000pt;}
.y188{bottom:132.480000pt;}
.ya1{bottom:134.720000pt;}
.y1e0{bottom:135.040000pt;}
.ybe{bottom:135.680000pt;}
.y4f{bottom:136.320000pt;}
.y12e{bottom:136.640000pt;}
.y173{bottom:137.600000pt;}
.y66{bottom:137.920000pt;}
.y9f{bottom:139.520000pt;}
.y19d{bottom:139.840000pt;}
.y21e{bottom:141.120000pt;}
.y1ab{bottom:143.360000pt;}
.y253{bottom:143.680000pt;}
.y1fd{bottom:145.280000pt;}
.y1f5{bottom:146.880000pt;}
.y22c{bottom:147.200000pt;}
.y98{bottom:147.520000pt;}
.y103{bottom:148.480000pt;}
.y4e{bottom:148.800000pt;}
.yea{bottom:149.120000pt;}
.y122{bottom:149.440000pt;}
.y142{bottom:149.760000pt;}
.y145{bottom:150.080000pt;}
.y13f{bottom:150.400000pt;}
.y187{bottom:150.720000pt;}
.y1c1{bottom:151.680000pt;}
.y1e{bottom:152.000000pt;}
.y1df{bottom:152.960000pt;}
.y165{bottom:154.560000pt;}
.y12d{bottom:154.880000pt;}
.y182{bottom:155.520000pt;}
.y88{bottom:156.800000pt;}
.y19c{bottom:157.760000pt;}
.y21d{bottom:159.040000pt;}
.y4d{bottom:161.600000pt;}
.y1fc{bottom:163.200000pt;}
.y252{bottom:163.520000pt;}
.y1f4{bottom:164.800000pt;}
.y22b{bottom:165.440000pt;}
.y65{bottom:166.080000pt;}
.y10a{bottom:166.400000pt;}
.y102{bottom:166.720000pt;}
.y132{bottom:167.040000pt;}
.ye9{bottom:167.360000pt;}
.yd6{bottom:167.680000pt;}
.y141{bottom:168.000000pt;}
.y1d{bottom:168.320000pt;}
.y13e{bottom:168.640000pt;}
.y1de{bottom:170.880000pt;}
.ybd{bottom:171.840000pt;}
.y242{bottom:172.480000pt;}
.y12c{bottom:173.120000pt;}
.y181{bottom:173.760000pt;}
.y4c{bottom:174.400000pt;}
.y19b{bottom:175.680000pt;}
.y21c{bottom:176.960000pt;}
.ya0{bottom:178.880000pt;}
.y9e{bottom:180.480000pt;}
.y20d{bottom:182.080000pt;}
.y1f3{bottom:183.040000pt;}
.y22a{bottom:183.360000pt;}
.y251{bottom:183.680000pt;}
.y64{bottom:184.640000pt;}
.y152{bottom:184.960000pt;}
.ye8{bottom:185.280000pt;}
.y154{bottom:185.920000pt;}
.yd5{bottom:186.240000pt;}
.y1cc{bottom:186.560000pt;}
.y13d{bottom:186.880000pt;}
.y1c{bottom:187.200000pt;}
.y97{bottom:188.480000pt;}
.y1dd{bottom:188.800000pt;}
.y12b{bottom:191.040000pt;}
.y180{bottom:191.680000pt;}
.y19a{bottom:193.600000pt;}
.y21b{bottom:194.880000pt;}
.y87{bottom:197.760000pt;}
.y1aa{bottom:199.040000pt;}
.y4b{bottom:200.000000pt;}
.y1f2{bottom:200.960000pt;}
.yad{bottom:202.240000pt;}
.y109{bottom:202.560000pt;}
.y101{bottom:202.880000pt;}
.y14c{bottom:203.200000pt;}
.ye7{bottom:203.520000pt;}
.y167{bottom:203.840000pt;}
.yd4{bottom:204.160000pt;}
.y13c{bottom:204.800000pt;}
.y1bb{bottom:205.760000pt;}
.y1c0{bottom:206.720000pt;}
.ybc{bottom:207.680000pt;}
.y12a{bottom:208.960000pt;}
.y17f{bottom:209.600000pt;}
.y199{bottom:211.840000pt;}
.y21a{bottom:213.120000pt;}
.y229{bottom:213.760000pt;}
.y1a9{bottom:217.280000pt;}
.y241{bottom:217.920000pt;}
.y1f1{bottom:218.880000pt;}
.y1dc{bottom:219.200000pt;}
.y9d{bottom:221.440000pt;}
.yf4{bottom:221.760000pt;}
.yd3{bottom:222.080000pt;}
.y11f{bottom:222.400000pt;}
.y13b{bottom:222.720000pt;}
.y4a{bottom:223.040000pt;}
.y63{bottom:223.680000pt;}
.y1bf{bottom:224.640000pt;}
.y1b{bottom:226.240000pt;}
.y164{bottom:226.880000pt;}
.y96{bottom:229.440000pt;}
.y198{bottom:229.760000pt;}
.y219{bottom:231.040000pt;}
.y20c{bottom:231.360000pt;}
.y228{bottom:231.680000pt;}
.y1a8{bottom:235.200000pt;}
.y1f0{bottom:236.800000pt;}
.y1db{bottom:237.440000pt;}
.yac{bottom:238.080000pt;}
.y86{bottom:238.720000pt;}
.y100{bottom:239.040000pt;}
.ye6{bottom:239.360000pt;}
.y131{bottom:239.680000pt;}
.yd2{bottom:240.000000pt;}
.y11a{bottom:240.320000pt;}
.y11e{bottom:240.640000pt;}
.y1cb{bottom:241.280000pt;}
.y1ba{bottom:242.560000pt;}
.y1be{bottom:242.880000pt;}
.y250{bottom:243.520000pt;}
.ybb{bottom:243.840000pt;}
.y240{bottom:245.120000pt;}
.y129{bottom:245.440000pt;}
.y17e{bottom:246.080000pt;}
.y49{bottom:246.400000pt;}
.y197{bottom:247.680000pt;}
.y218{bottom:248.960000pt;}
.y20b{bottom:249.280000pt;}
.y225{bottom:249.600000pt;}
.y1a7{bottom:253.440000pt;}
.y1ef{bottom:255.040000pt;}
.y1da{bottom:255.360000pt;}
.yff{bottom:257.280000pt;}
.y111{bottom:257.920000pt;}
.yd1{bottom:258.240000pt;}
.y16c{bottom:258.560000pt;}
.y119{bottom:258.880000pt;}
.y1ca{bottom:259.520000pt;}
.y48{bottom:260.480000pt;}
.y1b9{bottom:260.800000pt;}
.y9c{bottom:262.400000pt;}
.y163{bottom:263.360000pt;}
.y128{bottom:263.680000pt;}
.y17d{bottom:264.320000pt;}
.y196{bottom:265.600000pt;}
.y20a{bottom:267.200000pt;}
.y224{bottom:267.840000pt;}
.y62{bottom:268.160000pt;}
.y95{bottom:270.400000pt;}
.y1a{bottom:270.720000pt;}
.y1a6{bottom:271.360000pt;}
.y23f{bottom:272.000000pt;}
.y1ee{bottom:272.320000pt;}
.y1d9{bottom:273.280000pt;}
.y47{bottom:274.240000pt;}
.yfe{bottom:275.520000pt;}
.ye5{bottom:275.840000pt;}
.yd0{bottom:276.160000pt;}
.y144{bottom:276.480000pt;}
.y13a{bottom:276.800000pt;}
.y170{bottom:277.120000pt;}
.y1c9{bottom:277.440000pt;}
.y1b8{bottom:278.720000pt;}
.y217{bottom:279.360000pt;}
.y85{bottom:279.680000pt;}
.y127{bottom:281.600000pt;}
.y17c{bottom:282.240000pt;}
.y24f{bottom:283.520000pt;}
.y195{bottom:283.840000pt;}
.y209{bottom:285.440000pt;}
.y223{bottom:285.760000pt;}
.y46{bottom:287.040000pt;}
.y1a5{bottom:289.280000pt;}
.y1d8{bottom:291.200000pt;}
.yfd{bottom:293.440000pt;}
.ycf{bottom:294.080000pt;}
.yf3{bottom:294.400000pt;}
.y139{bottom:294.720000pt;}
.y118{bottom:295.040000pt;}
.y16f{bottom:295.360000pt;}
.y1b7{bottom:296.640000pt;}
.y216{bottom:297.280000pt;}
.y23e{bottom:299.200000pt;}
.y45{bottom:299.840000pt;}
.y17b{bottom:300.480000pt;}
.y194{bottom:301.760000pt;}
.y9b{bottom:303.360000pt;}
.y222{bottom:303.680000pt;}
.y1a4{bottom:307.200000pt;}
.y1d7{bottom:309.440000pt;}
.yab{bottom:310.080000pt;}
.y94{bottom:311.360000pt;}
.y151{bottom:311.680000pt;}
.ye4{bottom:312.000000pt;}
.y44{bottom:312.320000pt;}
.y61{bottom:312.640000pt;}
.y117{bottom:313.280000pt;}
.y1b6{bottom:314.880000pt;}
.y19{bottom:315.200000pt;}
.y215{bottom:315.520000pt;}
.yba{bottom:315.840000pt;}
.y126{bottom:317.760000pt;}
.y17a{bottom:318.400000pt;}
.y193{bottom:319.680000pt;}
.y84{bottom:320.640000pt;}
.y208{bottom:321.280000pt;}
.y1ed{bottom:321.600000pt;}
.y24e{bottom:323.520000pt;}
.y43{bottom:325.440000pt;}
.y23d{bottom:326.080000pt;}
.y1d6{bottom:327.360000pt;}
.ye3{bottom:329.920000pt;}
.y14b{bottom:330.240000pt;}
.yce{bottom:330.560000pt;}
.y108{bottom:330.880000pt;}
.y172{bottom:331.200000pt;}
.y116{bottom:331.520000pt;}
.y1c8{bottom:331.840000pt;}
.y1b5{bottom:332.800000pt;}
.y214{bottom:333.440000pt;}
.y162{bottom:335.680000pt;}
.y186{bottom:336.640000pt;}
.y192{bottom:337.600000pt;}
.y42{bottom:338.240000pt;}
.y207{bottom:339.200000pt;}
.y1ec{bottom:339.840000pt;}
.y1a3{bottom:343.360000pt;}
.y24d{bottom:343.680000pt;}
.y9a{bottom:344.320000pt;}
.y1d5{bottom:345.280000pt;}
.yaa{bottom:346.240000pt;}
.yfc{bottom:348.160000pt;}
.ycd{bottom:348.800000pt;}
.y174{bottom:349.120000pt;}
.y115{bottom:349.440000pt;}
.y1c7{bottom:350.080000pt;}
.y41{bottom:350.720000pt;}
.y213{bottom:351.360000pt;}
.yb9{bottom:351.680000pt;}
.y93{bottom:352.320000pt;}
.y23c{bottom:352.960000pt;}
.y125{bottom:354.240000pt;}
.y179{bottom:354.560000pt;}
.y185{bottom:354.880000pt;}
.y1fb{bottom:355.840000pt;}
.y60{bottom:356.480000pt;}
.y206{bottom:357.440000pt;}
.y1eb{bottom:357.760000pt;}
.y18{bottom:358.720000pt;}
.y1a2{bottom:361.280000pt;}
.y83{bottom:361.600000pt;}
.y1d4{bottom:363.200000pt;}
.y40{bottom:363.520000pt;}
.y14a{bottom:366.400000pt;}
.ycc{bottom:366.720000pt;}
.y130{bottom:367.040000pt;}
.yf2{bottom:367.360000pt;}
.y78{bottom:368.000000pt;}
.y1b4{bottom:368.640000pt;}
.y212{bottom:369.280000pt;}
.y161{bottom:372.480000pt;}
.y178{bottom:373.120000pt;}
.y1fa{bottom:373.760000pt;}
.y191{bottom:374.400000pt;}
.y205{bottom:375.360000pt;}
.y1ea{bottom:375.680000pt;}
.y3f{bottom:376.320000pt;}
.y23b{bottom:380.160000pt;}
.y1d3{bottom:381.440000pt;}
.ya9{bottom:382.080000pt;}
.y24c{bottom:383.680000pt;}
.yfb{bottom:384.320000pt;}
.y110{bottom:384.640000pt;}
.y107{bottom:384.960000pt;}
.y92{bottom:385.280000pt;}
.y1c6{bottom:386.240000pt;}
.y1b3{bottom:386.880000pt;}
.y211{bottom:387.520000pt;}
.yb8{bottom:387.840000pt;}
.y3e{bottom:389.120000pt;}
.y177{bottom:391.040000pt;}
.y204{bottom:393.280000pt;}
.y1e9{bottom:393.600000pt;}
.y1a1{bottom:397.760000pt;}
.y5f{bottom:399.040000pt;}
.y1d2{bottom:399.360000pt;}
.y17{bottom:401.280000pt;}
.y3d{bottom:401.600000pt;}
.y149{bottom:402.560000pt;}
.y82{bottom:402.880000pt;}
.ye2{bottom:403.200000pt;}
.ycb{bottom:403.520000pt;}
.yf1{bottom:403.840000pt;}
.y1c5{bottom:404.160000pt;}
.y1b2{bottom:404.800000pt;}
.y210{bottom:405.440000pt;}
.y23a{bottom:407.040000pt;}
.y160{bottom:408.640000pt;}
.y176{bottom:408.960000pt;}
.y1f9{bottom:409.920000pt;}
.y190{bottom:410.560000pt;}
.y203{bottom:411.200000pt;}
.y1e8{bottom:411.840000pt;}
.y3c{bottom:414.720000pt;}
.y5e{bottom:415.680000pt;}
.y1d1{bottom:417.280000pt;}
.y16{bottom:417.920000pt;}
.ya8{bottom:418.240000pt;}
.y150{bottom:420.800000pt;}
.yfa{bottom:421.120000pt;}
.ye1{bottom:421.440000pt;}
.y12f{bottom:421.760000pt;}
.yf0{bottom:422.080000pt;}
.y77{bottom:422.720000pt;}
.y20f{bottom:423.360000pt;}
.yb7{bottom:423.680000pt;}
.y91{bottom:426.240000pt;}
.y3b{bottom:426.880000pt;}
.y184{bottom:427.520000pt;}
.y1a0{bottom:428.480000pt;}
.y18f{bottom:429.120000pt;}
.y202{bottom:429.440000pt;}
.y1e7{bottom:429.760000pt;}
.y5d{bottom:431.680000pt;}
.y15{bottom:434.240000pt;}
.y1d0{bottom:435.200000pt;}
.y3a{bottom:439.040000pt;}
.ye0{bottom:439.360000pt;}
.yca{bottom:439.680000pt;}
.yef{bottom:440.000000pt;}
.y14f{bottom:440.320000pt;}
.y1c4{bottom:440.640000pt;}
.y1b1{bottom:441.280000pt;}
.y24b{bottom:443.520000pt;}
.y81{bottom:443.840000pt;}
.y15f{bottom:445.440000pt;}
.y175{bottom:445.760000pt;}
.y1f8{bottom:446.720000pt;}
.y26{bottom:447.040000pt;}
.y201{bottom:447.360000pt;}
.y1e6{bottom:447.680000pt;}
.y5c{bottom:448.000000pt;}
.y14{bottom:450.560000pt;}
.y39{bottom:452.800000pt;}
.y1cf{bottom:453.440000pt;}
.ya7{bottom:454.080000pt;}
.ydf{bottom:457.280000pt;}
.y106{bottom:457.920000pt;}
.yc9{bottom:458.240000pt;}
.y16e{bottom:458.560000pt;}
.y14e{bottom:458.880000pt;}
.y1bd{bottom:459.520000pt;}
.yb6{bottom:459.840000pt;}
.y227{bottom:460.160000pt;}
.y24a{bottom:463.680000pt;}
.y19f{bottom:464.640000pt;}
.y18e{bottom:464.960000pt;}
.y200{bottom:465.280000pt;}
.y1e5{bottom:465.600000pt;}
.y38{bottom:465.920000pt;}
.y5b{bottom:467.200000pt;}
.y90{bottom:467.520000pt;}
.y13{bottom:469.760000pt;}
.y1ce{bottom:471.360000pt;}
.y25{bottom:473.600000pt;}
.y10f{bottom:475.520000pt;}
.y124{bottom:475.840000pt;}
.y105{bottom:476.160000pt;}
.yee{bottom:476.480000pt;}
.y14d{bottom:476.800000pt;}
.y76{bottom:477.440000pt;}
.y1b0{bottom:477.760000pt;}
.y226{bottom:478.080000pt;}
.y37{bottom:478.720000pt;}
.y239{bottom:479.360000pt;}
.y15e{bottom:481.920000pt;}
.y18d{bottom:482.880000pt;}
.y221{bottom:483.520000pt;}
.y1e4{bottom:483.840000pt;}
.y80{bottom:484.800000pt;}
.ya6{bottom:490.240000pt;}
.y36{bottom:491.520000pt;}
.y10e{bottom:493.440000pt;}
.yde{bottom:493.760000pt;}
.y104{bottom:494.080000pt;}
.yc8{bottom:494.400000pt;}
.yed{bottom:494.720000pt;}
.y1c3{bottom:495.040000pt;}
.y20e{bottom:495.360000pt;}
.yb5{bottom:495.680000pt;}
.y1af{bottom:496.000000pt;}
.y15d{bottom:500.480000pt;}
.y5a{bottom:501.120000pt;}
.y1cd{bottom:501.760000pt;}
.y12{bottom:503.360000pt;}
.y249{bottom:503.680000pt;}
.y35{bottom:504.320000pt;}
.y238{bottom:506.880000pt;}
.y8f{bottom:508.480000pt;}
.y10d{bottom:511.360000pt;}
.ydd{bottom:512.000000pt;}
.y11d{bottom:512.320000pt;}
.yc7{bottom:512.640000pt;}
.y75{bottom:512.960000pt;}
.y24{bottom:514.240000pt;}
.y34{bottom:516.480000pt;}
.y15c{bottom:518.400000pt;}
.y18c{bottom:519.040000pt;}
.y1e3{bottom:519.680000pt;}
.y248{bottom:523.520000pt;}
.y7f{bottom:525.760000pt;}
.ya5{bottom:526.080000pt;}
.y33{bottom:530.240000pt;}
.y137{bottom:530.560000pt;}
.y59{bottom:530.880000pt;}
.y16b{bottom:531.200000pt;}
.yb4{bottom:531.840000pt;}
.yc0{bottom:532.160000pt;}
.y11{bottom:533.120000pt;}
.y237{bottom:533.760000pt;}
.y15b{bottom:536.320000pt;}
.y18b{bottom:536.960000pt;}
.y1e2{bottom:537.600000pt;}
.y32{bottom:542.720000pt;}
.y247{bottom:543.680000pt;}
.y58{bottom:544.960000pt;}
.y10{bottom:547.520000pt;}
.yf9{bottom:548.160000pt;}
.y148{bottom:548.480000pt;}
.yc6{bottom:548.800000pt;}
.y74{bottom:549.120000pt;}
.y8e{bottom:549.440000pt;}
.y1ae{bottom:550.080000pt;}
.y23{bottom:551.040000pt;}
.y15a{bottom:554.240000pt;}
.y31{bottom:554.880000pt;}
.y57{bottom:560.320000pt;}
.y236{bottom:560.640000pt;}
.ya4{bottom:562.240000pt;}
.yf{bottom:562.880000pt;}
.y246{bottom:563.520000pt;}
.yf8{bottom:566.080000pt;}
.ydc{bottom:566.400000pt;}
.y7e{bottom:566.720000pt;}
.y121{bottom:567.040000pt;}
.y11c{bottom:567.360000pt;}
.yb3{bottom:567.680000pt;}
.y1ad{bottom:568.000000pt;}
.y30{bottom:568.640000pt;}
.y18a{bottom:573.120000pt;}
.y56{bottom:575.680000pt;}
.ye{bottom:578.240000pt;}
.y2f{bottom:581.120000pt;}
.y245{bottom:583.680000pt;}
.yf7{bottom:584.000000pt;}
.y10c{bottom:584.320000pt;}
.yc5{bottom:584.640000pt;}
.y138{bottom:584.960000pt;}
.y73{bottom:585.280000pt;}
.y114{bottom:585.920000pt;}
.y1ac{bottom:586.240000pt;}
.y235{bottom:587.840000pt;}
.y22{bottom:589.760000pt;}
.y8d{bottom:590.400000pt;}
.y159{bottom:590.720000pt;}
.y189{bottom:591.040000pt;}
.y2e{bottom:594.240000pt;}
.y55{bottom:595.520000pt;}
.yd{bottom:598.080000pt;}
.yf6{bottom:601.920000pt;}
.y136{bottom:602.560000pt;}
.ydb{bottom:602.880000pt;}
.y147{bottom:603.200000pt;}
.y11b{bottom:603.520000pt;}
.yb2{bottom:603.840000pt;}
.y113{bottom:604.160000pt;}
.y7d{bottom:607.680000pt;}
.y2d{bottom:608.640000pt;}
.y158{bottom:608.960000pt;}
.y8{bottom:609.280000pt;}
.y234{bottom:614.720000pt;}
.yda{bottom:620.800000pt;}
.yc4{bottom:621.120000pt;}
.yec{bottom:621.440000pt;}
.y16a{bottom:621.760000pt;}
.y72{bottom:622.080000pt;}
.y2c{bottom:623.040000pt;}
.y157{bottom:626.880000pt;}
.y244{bottom:630.720000pt;}
.y8c{bottom:631.360000pt;}
.ya3{bottom:634.240000pt;}
.y21{bottom:635.200000pt;}
.y7{bottom:635.840000pt;}
.yd9{bottom:638.720000pt;}
.y183{bottom:639.040000pt;}
.yc3{bottom:639.360000pt;}
.yb1{bottom:639.680000pt;}
.y71{bottom:640.000000pt;}
.y233{bottom:641.600000pt;}
.y156{bottom:644.800000pt;}
.y2b{bottom:645.120000pt;}
.y7c{bottom:646.720000pt;}
.y258{bottom:650.240000pt;}
.y54{bottom:650.560000pt;}
.yc{bottom:652.800000pt;}
.y6{bottom:655.040000pt;}
.y123{bottom:656.960000pt;}
.yc2{bottom:657.280000pt;}
.yeb{bottom:657.920000pt;}
.y70{bottom:658.240000pt;}
.y2a{bottom:661.440000pt;}
.y1f7{bottom:663.680000pt;}
.y232{bottom:668.480000pt;}
.y7b{bottom:670.080000pt;}
.y6c{bottom:670.400000pt;}
.y8b{bottom:672.320000pt;}
.yc1{bottom:675.200000pt;}
.yd8{bottom:675.520000pt;}
.yb0{bottom:675.840000pt;}
.y6f{bottom:676.160000pt;}
.y29{bottom:678.080000pt;}
.yb{bottom:679.040000pt;}
.y53{bottom:679.360000pt;}
.y155{bottom:681.600000pt;}
.y243{bottom:685.120000pt;}
.y6b{bottom:686.080000pt;}
.y5{bottom:688.640000pt;}
.y257{bottom:690.240000pt;}
.y135{bottom:693.760000pt;}
.y6e{bottom:694.080000pt;}
.y28{bottom:694.400000pt;}
.y6a{bottom:700.160000pt;}
.y20{bottom:702.720000pt;}
.y7a{bottom:703.040000pt;}
.ya{bottom:703.360000pt;}
.y79{bottom:704.960000pt;}
.y231{bottom:705.280000pt;}
.y52{bottom:705.600000pt;}
.y256{bottom:710.400000pt;}
.y27{bottom:711.040000pt;}
.yaf{bottom:711.680000pt;}
.y6d{bottom:712.000000pt;}
.y8a{bottom:713.280000pt;}
.y69{bottom:714.240000pt;}
.y4{bottom:719.680000pt;}
.y1f{bottom:726.400000pt;}
.y9{bottom:727.680000pt;}
.h1a{height:24.000000pt;}
.h15{height:24.740625pt;}
.h14{height:26.446875pt;}
.h6{height:29.859375pt;}
.h13{height:29.865000pt;}
.hc{height:32.418750pt;}
.h12{height:32.798750pt;}
.hf{height:34.247500pt;}
.h16{height:34.666667pt;}
.h8{height:35.831250pt;}
.h3{height:36.000000pt;}
.h2{height:39.243750pt;}
.h9{height:42.656250pt;}
.h1b{height:46.068750pt;}
.h4{height:49.277500pt;}
.h11{height:49.481250pt;}
.h17{height:51.837500pt;}
.h5{height:53.562500pt;}
.h10{height:53.625000pt;}
.h18{height:54.125000pt;}
.ha{height:57.159375pt;}
.h19{height:63.984375pt;}
.h7{height:80.343750pt;}
.he{height:87.018750pt;}
.hb{height:92.137500pt;}
.hd{height:103.228125pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w3{width:8.000000pt;}
.w2{width:9.333333pt;}
.w7{width:14.666667pt;}
.w6{width:16.000000pt;}
.w5{width:17.333333pt;}
.w4{width:567.040000pt;}
.w1{width:567.333333pt;}
.w0{width:567.360000pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.x9{left:68.160160pt;}
.x19{left:74.666667pt;}
.x13{left:83.199872pt;}
.x1d{left:84.857088pt;}
.x1c{left:90.021152pt;}
.x1{left:92.160160pt;}
.xd{left:94.560224pt;}
.x24{left:97.866528pt;}
.x18{left:99.519872pt;}
.xe{left:107.199872pt;}
.x23{left:112.533216pt;}
.x38{left:113.906912pt;}
.x41{left:115.903008pt;}
.x50{left:118.313152pt;}
.x55{left:121.418944pt;}
.x27{left:122.719712pt;}
.x53{left:124.243168pt;}
.x3b{left:126.832992pt;}
.x28{left:130.399744pt;}
.x43{left:131.829088pt;}
.x54{left:135.652992pt;}
.x1e{left:141.005536pt;}
.x2c{left:144.141280pt;}
.x47{left:146.152992pt;}
.x2f{left:148.395168pt;}
.x8{left:151.352224pt;}
.x16{left:154.858400pt;}
.x46{left:157.645184pt;}
.x51{left:159.579104pt;}
.x40{left:161.243168pt;}
.x45{left:163.243168pt;}
.x2a{left:164.250976pt;}
.x4a{left:165.152992pt;}
.x4f{left:166.247072pt;}
.x31{left:170.070976pt;}
.x4d{left:171.332992pt;}
.x2e{left:172.742848pt;}
.x4b{left:174.161120pt;}
.x2b{left:175.488928pt;}
.x36{left:176.411136pt;}
.x33{left:177.665024pt;}
.x35{left:178.731104pt;}
.x32{left:180.317056pt;}
.x34{left:181.743168pt;}
.x48{left:185.567040pt;}
.x29{left:186.731104pt;}
.xc{left:187.752608pt;}
.x30{left:189.329088pt;}
.x57{left:191.247072pt;}
.x3f{left:192.817056pt;}
.x4e{left:193.985024pt;}
.x4{left:195.758784pt;}
.x7{left:197.213536pt;}
.x10{left:199.264960pt;}
.x15{left:200.719712pt;}
.x3a{left:202.981120pt;}
.x3d{left:204.485024pt;}
.x2d{left:206.332992pt;}
.x56{left:208.079104pt;}
.x39{left:209.570976pt;}
.x4c{left:212.402976pt;}
.x37{left:214.497056pt;}
.x3e{left:215.747072pt;}
.x49{left:222.250976pt;}
.xb{left:224.512370pt;}
.x17{left:228.018579pt;}
.x26{left:239.078784pt;}
.x44{left:240.418944pt;}
.x58{left:244.410816pt;}
.x52{left:246.985024pt;}
.x1f{left:251.810240pt;}
.x22{left:258.217760pt;}
.x42{left:269.567040pt;}
.x3c{left:272.165024pt;}
.x1a{left:279.653015pt;}
.xa{left:283.826816pt;}
.x14{left:287.332992pt;}
.x20{left:328.310080pt;}
.x5{left:371.894732pt;}
.x11{left:375.400979pt;}
.x6{left:377.293441pt;}
.x12{left:380.799292pt;}
.x1b{left:429.474240pt;}
.x25{left:476.000000pt;}
.xf{left:482.666667pt;}
.x21{left:483.786560pt;}
.x2{left:490.666667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  