
    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_8df206b2c899535468d49386.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_04b94409afef42c16b81f6ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_9675381a634a4d6f34dff56c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_b6bbeb407746e664409c6591.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_1eb90c66cf9192c40f98622e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_32b090acf85fdc5ad70846d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.162598;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_c4c5150e0e002459707a7235.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_a944619f73a2d8a70cf08206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_86c4d734631a844020040cc3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_95cbb1ef0affe4e5a9ca9d33.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_949979419c518c54393fb891.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_c69c6a1681f01a961525c65d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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_d93658b3f7a0c711356f4af6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871094;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_280b2f13c4c0cbf0d2f35006.woff2')format("woff");}.fff{font-family:fff;line-height:0.873535;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_48f21a4367f80e8ad2d1d5cc.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_25d3cf2574b2dca0823d4aa4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.873535;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_0d807ac42f03e25a668f80b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.873535;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_aae65763c3d58164a1ea584d.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m1{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-66.960000px;}
.v4{vertical-align:-46.680000px;}
.v2{vertical-align:-12.360000px;}
.v5{vertical-align:-8.220000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:46.680000px;}
.ls3c{letter-spacing:-1.197387px;}
.ls42{letter-spacing:-1.191400px;}
.ls7{letter-spacing:-0.960000px;}
.ls56{letter-spacing:-0.768000px;}
.ls55{letter-spacing:-0.702000px;}
.ls39{letter-spacing:-0.537028px;}
.ls18{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.366000px;}
.ls38{letter-spacing:-0.362210px;}
.ls49{letter-spacing:-0.342000px;}
.ls47{letter-spacing:-0.324000px;}
.ls53{letter-spacing:-0.322800px;}
.ls54{letter-spacing:-0.291000px;}
.ls4e{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.229800px;}
.ls23{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.207600px;}
.ls44{letter-spacing:-0.193200px;}
.lsa{letter-spacing:-0.181200px;}
.ls46{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.150000px;}
.lsc{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.091200px;}
.ls20{letter-spacing:-0.090000px;}
.ls27{letter-spacing:-0.078000px;}
.ls4d{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.014369px;}
.ls10{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.034560px;}
.ls1a{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.037440px;}
.ls28{letter-spacing:0.049991px;}
.ls4{letter-spacing:0.051840px;}
.ls22{letter-spacing:0.052980px;}
.ls2{letter-spacing:0.054720px;}
.ls26{letter-spacing:0.069000px;}
.ls4c{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.080225px;}
.ls1e{letter-spacing:0.087600px;}
.ls1d{letter-spacing:0.089280px;}
.ls9{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.108480px;}
.ls3{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.132480px;}
.ls21{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.213000px;}
.lsd{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.234600px;}
.ls25{letter-spacing:0.256200px;}
.ls40{letter-spacing:0.258636px;}
.ls4b{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.lsf{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.312480px;}
.ls48{letter-spacing:0.324000px;}
.ls43{letter-spacing:0.324492px;}
.lsb{letter-spacing:0.371400px;}
.ls57{letter-spacing:0.391800px;}
.ls3b{letter-spacing:0.440639px;}
.ls41{letter-spacing:0.700472px;}
.ls3e{letter-spacing:0.718432px;}
.ls3f{letter-spacing:1.317126px;}
.ls14{letter-spacing:11.669760px;}
.ls4f{letter-spacing:12.360000px;}
.ls51{letter-spacing:36.305280px;}
.ls50{letter-spacing:39.185280px;}
.ls52{letter-spacing:44.225280px;}
.ls36{letter-spacing:221.865999px;}
.ls33{letter-spacing:251.800683px;}
.ls35{letter-spacing:254.764217px;}
.ls30{letter-spacing:254.973760px;}
.ls34{letter-spacing:257.787620px;}
.ls2e{letter-spacing:281.735367px;}
.ls2d{letter-spacing:284.698901px;}
.ls2c{letter-spacing:284.848574px;}
.ls2f{letter-spacing:287.901912px;}
.ls32{letter-spacing:314.663520px;}
.ls29{letter-spacing:329.750600px;}
.ls31{letter-spacing:329.810470px;}
.ls2a{letter-spacing:341.724474px;}
.ls2b{letter-spacing:374.712496px;}
.ls8{letter-spacing:846.006240px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws9{word-spacing:-19.409640px;}
.wsc{word-spacing:-18.808440px;}
.ws7{word-spacing:-18.446160px;}
.ws6{word-spacing:-18.282240px;}
.ws5{word-spacing:-18.187200px;}
.ws4{word-spacing:-17.189760px;}
.ws2{word-spacing:-16.493760px;}
.wsb{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.128000px;}
.ws55{word-spacing:-15.362040px;}
.ws51{word-spacing:-15.226440px;}
.wsd{word-spacing:-14.990400px;}
.ws11{word-spacing:-14.970240px;}
.ws2a{word-spacing:-14.917351px;}
.ws24{word-spacing:-14.892240px;}
.ws28{word-spacing:-14.762640px;}
.ws20{word-spacing:-14.754240px;}
.ws53{word-spacing:-14.679240px;}
.ws52{word-spacing:-14.647440px;}
.ws10{word-spacing:-14.604240px;}
.ws12{word-spacing:-14.506440px;}
.ws2e{word-spacing:-14.380323px;}
.ws54{word-spacing:-14.268240px;}
.wsf{word-spacing:-13.740360px;}
.wse{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.229520px;}
.ws46{word-spacing:-12.528000px;}
.ws49{word-spacing:-12.492000px;}
.ws48{word-spacing:-12.438000px;}
.ws4d{word-spacing:-12.366000px;}
.ws4a{word-spacing:-12.276000px;}
.ws13{word-spacing:-12.204000px;}
.ws42{word-spacing:-12.186000px;}
.ws4c{word-spacing:-12.150000px;}
.ws4b{word-spacing:-12.114000px;}
.ws43{word-spacing:-12.042000px;}
.ws44{word-spacing:-12.024000px;}
.ws4e{word-spacing:-11.952000px;}
.ws45{word-spacing:-11.880000px;}
.ws47{word-spacing:-11.862000px;}
.ws1{word-spacing:-0.100800px;}
.ws0{word-spacing:0.000000px;}
.ws1f{word-spacing:61.136112px;}
.ws41{word-spacing:119.066253px;}
.ws36{word-spacing:130.843905px;}
.ws2b{word-spacing:130.844055px;}
.ws15{word-spacing:147.654000px;}
.ws22{word-spacing:147.694524px;}
.ws16{word-spacing:148.194000px;}
.ws23{word-spacing:148.235424px;}
.ws14{word-spacing:148.254000px;}
.ws21{word-spacing:148.295424px;}
.ws25{word-spacing:149.514000px;}
.ws2c{word-spacing:154.731933px;}
.ws34{word-spacing:163.772207px;}
.ws50{word-spacing:163.926000px;}
.ws4f{word-spacing:164.502000px;}
.ws2f{word-spacing:181.912626px;}
.ws30{word-spacing:187.660085px;}
.ws29{word-spacing:197.445883px;}
.ws31{word-spacing:212.412926px;}
.ws38{word-spacing:214.840778px;}
.ws3b{word-spacing:220.767845px;}
.ws27{word-spacing:223.776000px;}
.ws26{word-spacing:224.028000px;}
.ws1c{word-spacing:231.894000px;}
.ws17{word-spacing:232.308000px;}
.ws39{word-spacing:237.651905px;}
.ws33{word-spacing:245.441060px;}
.ws32{word-spacing:245.445550px;}
.ws1b{word-spacing:247.086000px;}
.ws19{word-spacing:247.146000px;}
.ws3a{word-spacing:247.156766px;}
.ws18{word-spacing:247.254000px;}
.ws1a{word-spacing:247.266000px;}
.ws35{word-spacing:247.428423px;}
.ws40{word-spacing:247.768930px;}
.ws37{word-spacing:249.075879px;}
.ws2d{word-spacing:254.681897px;}
.ws3d{word-spacing:258.626240px;}
.ws3c{word-spacing:269.906078px;}
.ws3f{word-spacing:275.997487px;}
.ws3e{word-spacing:276.706490px;}
.ws1e{word-spacing:554.730000px;}
.ws1d{word-spacing:576.108000px;}
._22{margin-left:-285.736587px;}
._21{margin-left:-252.391295px;}
._23{margin-left:-250.929584px;}
._20{margin-left:-225.330340px;}
._24{margin-left:-224.330223px;}
._d{margin-left:-16.536240px;}
._9{margin-left:-15.053640px;}
._a{margin-left:-13.955520px;}
._b{margin-left:-12.048000px;}
._c{margin-left:-10.499520px;}
._8{margin-left:-8.640000px;}
._6{margin-left:-6.861600px;}
._4{margin-left:-4.438080px;}
._3{margin-left:-2.821440px;}
._1{margin-left:-1.351680px;}
._0{width:1.715520px;}
._5{width:2.885280px;}
._12{width:4.606080px;}
._11{width:5.816640px;}
._10{width:6.888960px;}
._14{width:8.544960px;}
._15{width:10.095360px;}
._17{width:11.252640px;}
._16{width:12.386880px;}
._13{width:13.556160px;}
._18{width:16.243200px;}
._e{width:17.288640px;}
._f{width:18.362880px;}
._1b{width:19.727040px;}
._1a{width:20.799360px;}
._2e{width:30.735360px;}
._2f{width:31.993920px;}
._1c{width:88.118580px;}
._1e{width:100.272061px;}
._1d{width:103.385904px;}
._28{width:111.263025px;}
._1f{width:118.353246px;}
._26{width:144.041504px;}
._2a{width:167.959316px;}
._7{width:194.250240px;}
._2c{width:205.392960px;}
._2d{width:206.779200px;}
._2b{width:234.660532px;}
._25{width:279.319804px;}
._27{width:291.256971px;}
._29{width:353.219089px;}
._19{width:616.014000px;}
._2{width:846.150240px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(0,32,96);}
.fc4{color:rgb(153,51,102);}
.fc3{color:rgb(120,93,179);}
.fc5{color:transparent;}
.fc1{color:rgb(72,92,102);}
.fca{color:rgb(32,33,36);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs13{font-size:38.880000px;}
.fs12{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs14{font-size:54.144000px;}
.fse{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs16{font-size:59.904000px;}
.fs15{font-size:66.005978px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.fs4{font-size:99.360000px;}
.fsa{font-size:110.880000px;}
.fsc{font-size:141.120000px;}
.fs10{font-size:149.760000px;}
.fs11{font-size:149.904000px;}
.fsf{font-size:210.240000px;}
.fs2{font-size:216.000000px;}
.y5a{bottom:-41.400000px;}
.y59{bottom:-25.740000px;}
.y58{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.310000px;}
.y11{bottom:4.140000px;}
.y13c{bottom:4.490208px;}
.y13a{bottom:4.490209px;}
.y13f{bottom:4.490211px;}
.y152{bottom:4.860000px;}
.y136{bottom:5.275982px;}
.y57{bottom:5.400000px;}
.y156{bottom:5.580000px;}
.y154{bottom:5.760000px;}
.y151{bottom:6.120000px;}
.y185{bottom:6.480000px;}
.y180{bottom:6.660000px;}
.y171{bottom:6.840000px;}
.y18b{bottom:7.020000px;}
.y17e{bottom:7.200000px;}
.y158{bottom:7.560000px;}
.y153{bottom:7.740000px;}
.y14f{bottom:8.100000px;}
.y5{bottom:11.196000px;}
.ya{bottom:12.420000px;}
.y3{bottom:12.456000px;}
.y138{bottom:15.715711px;}
.y14d{bottom:17.460000px;}
.y110{bottom:17.610000px;}
.y106{bottom:17.670000px;}
.yde{bottom:17.790000px;}
.y70{bottom:18.360000px;}
.y6e{bottom:18.510000px;}
.y17c{bottom:20.160000px;}
.y56{bottom:21.060000px;}
.y1bf{bottom:22.650000px;}
.y14e{bottom:27.000000px;}
.y135{bottom:27.015897px;}
.y55{bottom:36.540000px;}
.y1bd{bottom:45.075000px;}
.ydd{bottom:46.545000px;}
.yc6{bottom:47.370000px;}
.yf4{bottom:47.415000px;}
.y10f{bottom:47.520000px;}
.y105{bottom:47.550000px;}
.y134{bottom:48.755961px;}
.y54{bottom:52.200000px;}
.yd{bottom:58.500000px;}
.y1f0{bottom:59.220000px;}
.y1b5{bottom:62.640000px;}
.ybe{bottom:64.905000px;}
.yee{bottom:64.950000px;}
.y108{bottom:65.055000px;}
.yfe{bottom:65.130000px;}
.y53{bottom:67.860000px;}
.y133{bottom:70.496025px;}
.ydc{bottom:72.720000px;}
.y4{bottom:79.380000px;}
.y52{bottom:83.340000px;}
.ybf{bottom:88.305000px;}
.yef{bottom:88.350000px;}
.yf{bottom:90.210000px;}
.y109{bottom:91.470000px;}
.y132{bottom:92.273508px;}
.y2{bottom:98.640000px;}
.y51{bottom:99.000000px;}
.yff{bottom:100.335000px;}
.y1b6{bottom:100.440000px;}
.yab{bottom:101.736000px;}
.yd5{bottom:104.070000px;}
.y94{bottom:105.336000px;}
.yfc{bottom:110.016000px;}
.yd7{bottom:111.240000px;}
.yc0{bottom:111.705000px;}
.y131{bottom:114.013572px;}
.y50{bottom:114.660000px;}
.y39{bottom:115.056000px;}
.y10a{bottom:117.900000px;}
.y1be{bottom:119.235000px;}
.yaa{bottom:119.916000px;}
.yd4{bottom:124.920000px;}
.ya9{bottom:125.136000px;}
.y93{bottom:127.116000px;}
.y4f{bottom:130.140000px;}
.yfb{bottom:131.796000px;}
.yc1{bottom:135.075000px;}
.yf0{bottom:135.105000px;}
.y100{bottom:135.540000px;}
.y130{bottom:135.753636px;}
.y38{bottom:137.016000px;}
.y1b7{bottom:138.240000px;}
.ya8{bottom:138.276000px;}
.yd6{bottom:140.190000px;}
.y179{bottom:141.156000px;}
.y1a9{bottom:143.316000px;}
.y10b{bottom:144.330000px;}
.y4e{bottom:145.800000px;}
.y92{bottom:148.716000px;}
.y126{bottom:153.390000px;}
.y37{bottom:156.630000px;}
.y12f{bottom:157.498191px;}
.y1ef{bottom:157.710000px;}
.yc2{bottom:158.475000px;}
.yf1{bottom:158.505000px;}
.y4d{bottom:161.310000px;}
.ya7{bottom:161.850000px;}
.y178{bottom:162.930000px;}
.yfa{bottom:164.370000px;}
.y1a8{bottom:165.090000px;}
.y91{bottom:170.490000px;}
.y101{bottom:170.745000px;}
.y1ae{bottom:171.255000px;}
.y1b3{bottom:173.985000px;}
.ya6{bottom:174.990000px;}
.y125{bottom:175.170000px;}
.y1b8{bottom:176.070000px;}
.y4c{bottom:176.790000px;}
.yf9{bottom:178.950000px;}
.y12e{bottom:179.230771px;}
.y107{bottom:179.280000px;}
.yc3{bottom:181.875000px;}
.y36{bottom:182.730000px;}
.y1a7{bottom:186.690000px;}
.y90{bottom:192.270000px;}
.y4b{bottom:192.450000px;}
.y1ee{bottom:193.530000px;}
.y177{bottom:196.590000px;}
.y124{bottom:196.770000px;}
.y10c{bottom:197.175000px;}
.yd9{bottom:197.250000px;}
.y12d{bottom:201.008254px;}
.ydb{bottom:204.405000px;}
.yc4{bottom:205.230000px;}
.yf2{bottom:205.275000px;}
.y102{bottom:205.950000px;}
.y35{bottom:206.310000px;}
.y4a{bottom:207.930000px;}
.y1a6{bottom:208.470000px;}
.ya5{bottom:211.350000px;}
.y1b9{bottom:213.870000px;}
.y8f{bottom:214.050000px;}
.y1b1{bottom:214.845000px;}
.yd8{bottom:218.085000px;}
.y176{bottom:218.370000px;}
.y123{bottom:218.550000px;}
.y1b4{bottom:222.195000px;}
.y12c{bottom:222.755802px;}
.y10d{bottom:223.560000px;}
.y49{bottom:223.590000px;}
.yc5{bottom:228.630000px;}
.yf3{bottom:228.675000px;}
.y34{bottom:230.070000px;}
.y1ed{bottom:232.770000px;}
.yda{bottom:233.310000px;}
.y1ad{bottom:233.820000px;}
.ya4{bottom:237.630000px;}
.y1ab{bottom:239.190000px;}
.y48{bottom:239.250000px;}
.y175{bottom:240.150000px;}
.y122{bottom:240.330000px;}
.y103{bottom:241.170000px;}
.y1a5{bottom:242.310000px;}
.y12b{bottom:244.488383px;}
.y8e{bottom:247.710000px;}
.y33{bottom:249.690000px;}
.y10e{bottom:249.990000px;}
.y1ba{bottom:251.715000px;}
.y1b0{bottom:252.900000px;}
.y47{bottom:254.730000px;}
.y1ac{bottom:261.075000px;}
.y32{bottom:261.930000px;}
.y1ec{bottom:263.010000px;}
.y1a4{bottom:263.910000px;}
.y12a{bottom:266.235930px;}
.y1d7{bottom:266.250000px;}
.y8d{bottom:269.490000px;}
.yc7{bottom:271.260000px;}
.yf5{bottom:271.290000px;}
.y1af{bottom:272.010000px;}
.y121{bottom:273.990000px;}
.y104{bottom:276.405000px;}
.y174{bottom:283.530000px;}
.y1a3{bottom:285.690000px;}
.y46{bottom:287.130000px;}
.y129{bottom:288.013413px;}
.y1bb{bottom:289.515000px;}
.y8c{bottom:291.270000px;}
.y1eb{bottom:293.250000px;}
.y120{bottom:295.770000px;}
.y1b2{bottom:296.490000px;}
.y31{bottom:299.190000px;}
.y173{bottom:305.310000px;}
.y128{bottom:309.745991px;}
.y1d6{bottom:312.510000px;}
.y8b{bottom:312.870000px;}
.y45{bottom:315.390000px;}
.y11f{bottom:317.550000px;}
.y1a2{bottom:319.350000px;}
.y1bc{bottom:327.345000px;}
.y1ea{bottom:332.310000px;}
.y8a{bottom:334.650000px;}
.y172{bottom:337.935000px;}
.y11e{bottom:339.195000px;}
.y1a1{bottom:341.175000px;}
.y1d5{bottom:346.935000px;}
.y30{bottom:349.815000px;}
.y170{bottom:351.615000px;}
.ybc{bottom:355.395000px;}
.y89{bottom:356.475000px;}
.y44{bottom:359.355000px;}
.y11d{bottom:360.975000px;}
.y1e9{bottom:362.595000px;}
.y1a0{bottom:362.955000px;}
.y2f{bottom:369.615000px;}
.y16f{bottom:372.855000px;}
.ybb{bottom:377.175000px;}
.y88{bottom:378.255000px;}
.y16e{bottom:394.095000px;}
.y195{bottom:394.635000px;}
.y11c{bottom:394.815000px;}
.y43{bottom:394.995000px;}
.y2e{bottom:396.435000px;}
.y19f{bottom:396.615000px;}
.yba{bottom:398.955000px;}
.y1d4{bottom:403.095000px;}
.y1e8{bottom:403.815000px;}
.yec{bottom:407.055000px;}
.y87{bottom:411.915000px;}
.y16d{bottom:415.515000px;}
.y2d{bottom:416.235000px;}
.y11b{bottom:416.415000px;}
.y19e{bottom:418.395000px;}
.yb9{bottom:420.555000px;}
.y2c{bottom:428.475000px;}
.yeb{bottom:428.835000px;}
.y42{bottom:430.635000px;}
.y86{bottom:433.695000px;}
.y16c{bottom:436.755000px;}
.y1d3{bottom:436.935000px;}
.y194{bottom:438.015000px;}
.y11a{bottom:438.195000px;}
.y19d{bottom:440.175000px;}
.yb8{bottom:442.335000px;}
.yd2{bottom:447.015000px;}
.y1e7{bottom:448.995000px;}
.y2b{bottom:450.435000px;}
.yea{bottom:450.615000px;}
.y85{bottom:455.475000px;}
.y16b{bottom:457.995000px;}
.y1d2{bottom:458.715000px;}
.y193{bottom:459.795000px;}
.y119{bottom:459.975000px;}
.y19c{bottom:461.955000px;}
.yd1{bottom:468.795000px;}
.y2a{bottom:470.055000px;}
.ye9{bottom:472.395000px;}
.yb7{bottom:475.095000px;}
.y84{bottom:477.075000px;}
.y16a{bottom:479.415000px;}
.y118{bottom:480.495000px;}
.y29{bottom:482.295000px;}
.y1e6{bottom:483.195000px;}
.yd0{bottom:490.575000px;}
.y1d1{bottom:492.375000px;}
.yb6{bottom:492.555000px;}
.y192{bottom:493.455000px;}
.ye8{bottom:493.995000px;}
.y19b{bottom:495.615000px;}
.y117{bottom:498.315000px;}
.y83{bottom:498.855000px;}
.y169{bottom:500.655000px;}
.y28{bottom:501.915000px;}
.yb5{bottom:510.375000px;}
.ycf{bottom:512.355000px;}
.y1e5{bottom:513.435000px;}
.y27{bottom:514.155000px;}
.y191{bottom:515.235000px;}
.yf8{bottom:515.775000px;}
.y116{bottom:515.955000px;}
.y19a{bottom:517.395000px;}
.y82{bottom:520.635000px;}
.y168{bottom:521.895000px;}
.yb4{bottom:525.135000px;}
.ybd{bottom:525.420000px;}
.ye7{bottom:527.835000px;}
.y115{bottom:530.535000px;}
.y127{bottom:530.838116px;}
.yce{bottom:533.955000px;}
.y190{bottom:537.015000px;}
.y199{bottom:539.175000px;}
.y81{bottom:542.415000px;}
.y167{bottom:543.315000px;}
.y1e4{bottom:543.495000px;}
.y1d0{bottom:547.815000px;}
.ye6{bottom:549.615000px;}
.y26{bottom:551.415000px;}
.ycd{bottom:555.735000px;}
.y18f{bottom:558.795000px;}
.y166{bottom:564.555000px;}
.ye5{bottom:571.215000px;}
.y1e3{bottom:573.735000px;}
.y198{bottom:575.175000px;}
.y80{bottom:576.075000px;}
.ycc{bottom:577.515000px;}
.y18e{bottom:580.575000px;}
.y1cf{bottom:581.655000px;}
.y165{bottom:585.795000px;}
.y6a{bottom:585.975000px;}
.ye4{bottom:592.995000px;}
.y7f{bottom:597.855000px;}
.ycb{bottom:599.295000px;}
.y25{bottom:601.455000px;}
.y1ce{bottom:603.255000px;}
.y164{bottom:607.245000px;}
.y69{bottom:610.665000px;}
.y1e2{bottom:613.005000px;}
.y18d{bottom:613.185000px;}
.ye3{bottom:614.805000px;}
.y24{bottom:619.485000px;}
.y7e{bottom:619.665000px;}
.y18c{bottom:626.685000px;}
.y163{bottom:628.485000px;}
.y197{bottom:630.105000px;}
.ya3{bottom:631.545000px;}
.yca{bottom:633.165000px;}
.ye2{bottom:636.585000px;}
.y1cd{bottom:637.125000px;}
.y7d{bottom:641.265000px;}
.y1e1{bottom:643.245000px;}
.y196{bottom:644.505000px;}
.y1aa{bottom:645.840000px;}
.y23{bottom:646.305000px;}
.y162{bottom:649.725000px;}
.y18a{bottom:651.165000px;}
.y68{bottom:654.405000px;}
.ye1{bottom:658.185000px;}
.y1cc{bottom:658.905000px;}
.y7c{bottom:663.045000px;}
.ya1{bottom:665.385000px;}
.y22{bottom:667.905000px;}
.y161{bottom:671.145000px;}
.ya2{bottom:671.325000px;}
.y189{bottom:675.465000px;}
.ye0{bottom:678.705000px;}
.yc9{bottom:681.945000px;}
.y1e0{bottom:684.465000px;}
.y21{bottom:686.265000px;}
.ya0{bottom:686.985000px;}
.yf7{bottom:690.945000px;}
.y160{bottom:692.385000px;}
.y1cb{bottom:692.565000px;}
.ydf{bottom:693.465000px;}
.yed{bottom:693.720000px;}
.yc8{bottom:696.345000px;}
.yd3{bottom:696.600000px;}
.y7b{bottom:696.705000px;}
.y67{bottom:697.965000px;}
.y188{bottom:698.685000px;}
.y20{bottom:700.125000px;}
.yf6{bottom:705.345000px;}
.yfd{bottom:705.780000px;}
.y9f{bottom:708.765000px;}
.y15f{bottom:713.625000px;}
.y1ca{bottom:714.345000px;}
.y7a{bottom:718.485000px;}
.y1f{bottom:721.725000px;}
.y187{bottom:721.905000px;}
.y1df{bottom:729.645000px;}
.y9e{bottom:730.545000px;}
.y15e{bottom:735.045000px;}
.y1c9{bottom:736.125000px;}
.y1e{bottom:740.265000px;}
.y66{bottom:740.805000px;}
.y14b{bottom:741.165000px;}
.y186{bottom:745.125000px;}
.y9d{bottom:752.325000px;}
.y1d{bottom:753.945000px;}
.y15d{bottom:756.285000px;}
.y1c8{bottom:757.725000px;}
.y14a{bottom:762.945000px;}
.y1de{bottom:763.665000px;}
.y184{bottom:768.525000px;}
.y65{bottom:771.765000px;}
.y79{bottom:773.925000px;}
.y1c{bottom:775.545000px;}
.y41{bottom:776.985000px;}
.y15c{bottom:777.525000px;}
.y149{bottom:784.545000px;}
.y40{bottom:791.205000px;}
.y1c7{bottom:791.565000px;}
.y183{bottom:791.745000px;}
.y1dd{bottom:793.905000px;}
.y1b{bottom:794.085000px;}
.y78{bottom:795.705000px;}
.y15b{bottom:798.945000px;}
.y64{bottom:802.725000px;}
.y1a{bottom:807.765000px;}
.y1c6{bottom:813.165000px;}
.y182{bottom:814.965000px;}
.y77{bottom:817.485000px;}
.y148{bottom:818.385000px;}
.y15a{bottom:820.185000px;}
.y3f{bottom:821.085000px;}
.y1dc{bottom:824.145000px;}
.y19{bottom:829.365000px;}
.y9c{bottom:829.545000px;}
.y63{bottom:834.585000px;}
.y137{bottom:836.093905px;}
.yb3{bottom:837.285000px;}
.y181{bottom:838.185000px;}
.y76{bottom:839.265000px;}
.y147{bottom:840.165000px;}
.y159{bottom:841.425000px;}
.y1c5{bottom:847.005000px;}
.y18{bottom:847.905000px;}
.y9a{bottom:851.145000px;}
.y1db{bottom:854.385000px;}
.y9b{bottom:857.085000px;}
.y13e{bottom:857.841415px;}
.y13d{bottom:857.841424px;}
.y13b{bottom:857.841434px;}
.y139{bottom:857.841443px;}
.yb2{bottom:858.885000px;}
.y75{bottom:860.865000px;}
.y17f{bottom:861.405000px;}
.y17{bottom:861.765000px;}
.y157{bottom:862.845000px;}
.y99{bottom:872.970000px;}
.y62{bottom:878.190000px;}
.y1c4{bottom:880.710000px;}
.y74{bottom:882.690000px;}
.y16{bottom:883.410000px;}
.y146{bottom:883.590000px;}
.y155{bottom:884.130000px;}
.y17b{bottom:884.670000px;}
.y3e{bottom:885.030000px;}
.yb1{bottom:892.770000px;}
.y1da{bottom:893.670000px;}
.y98{bottom:894.750000px;}
.y114{bottom:897.630000px;}
.y145{bottom:905.370000px;}
.y17d{bottom:910.590000px;}
.yb0{bottom:914.370000px;}
.y1c3{bottom:914.550000px;}
.y73{bottom:916.530000px;}
.y15{bottom:918.870000px;}
.y61{bottom:921.930000px;}
.y150{bottom:926.790000px;}
.y144{bottom:927.150000px;}
.y113{bottom:931.290000px;}
.y1d9{bottom:934.890000px;}
.y6c{bottom:935.250000px;}
.yaf{bottom:936.150000px;}
.y72{bottom:938.130000px;}
.y14c{bottom:948.030000px;}
.y1c2{bottom:948.210000px;}
.y143{bottom:948.750000px;}
.y3d{bottom:948.930000px;}
.y97{bottom:952.530000px;}
.y112{bottom:953.070000px;}
.yae{bottom:957.930000px;}
.y60{bottom:959.910000px;}
.y142{bottom:970.530000px;}
.y17a{bottom:974.850000px;}
.y1d8{bottom:979.890000px;}
.y1c1{bottom:981.690000px;}
.y111{bottom:986.730000px;}
.y14{bottom:989.790000px;}
.yad{bottom:991.950000px;}
.y141{bottom:992.310000px;}
.y71{bottom:995.910000px;}
.y6b{bottom:996.630000px;}
.y5f{bottom:998.070000px;}
.y96{bottom:1008.510000px;}
.y13{bottom:1011.750000px;}
.y3c{bottom:1012.650000px;}
.yac{bottom:1019.850000px;}
.y1c0{bottom:1020.030000px;}
.y140{bottom:1026.330000px;}
.y95{bottom:1030.290000px;}
.y12{bottom:1033.710000px;}
.y10{bottom:1055.670000px;}
.y5e{bottom:1061.070000px;}
.y6{bottom:1069.920000px;}
.y3b{bottom:1076.550000px;}
.ye{bottom:1077.630000px;}
.y6d{bottom:1084.500000px;}
.y5d{bottom:1092.750000px;}
.y5c{bottom:1108.770000px;}
.y8{bottom:1122.300000px;}
.y6f{bottom:1131.120000px;}
.y1f2{bottom:1134.150000px;}
.y3a{bottom:1140.480000px;}
.y5b{bottom:1152.720000px;}
.y1f1{bottom:1170.000000px;}
.yc{bottom:1189.800000px;}
.yb{bottom:1210.320000px;}
.y9{bottom:1223.640000px;}
.y1{bottom:1232.280000px;}
.h1d{height:17.297930px;}
.h3a{height:18.900000px;}
.h3b{height:20.520000px;}
.h3c{height:20.556000px;}
.h38{height:20.991706px;}
.hc{height:21.960000px;}
.h41{height:22.500000px;}
.h40{height:22.536000px;}
.h14{height:22.886719px;}
.h3e{height:23.580000px;}
.h3f{height:23.760000px;}
.h3{height:26.820000px;}
.h10{height:27.246094px;}
.h2a{height:32.064609px;}
.h8{height:33.480000px;}
.h27{height:34.439766px;}
.h30{height:37.546875px;}
.h13{height:39.313477px;}
.h15{height:40.869141px;}
.h21{height:41.410195px;}
.h39{height:41.760000px;}
.h37{height:42.731764px;}
.h4{height:43.506914px;}
.h29{height:44.534180px;}
.h2f{height:44.652937px;}
.h11{height:44.936719px;}
.he{height:45.228516px;}
.h35{height:45.894782px;}
.h28{height:45.895781px;}
.h2d{height:46.057500px;}
.ha{height:47.610000px;}
.h5{height:48.224531px;}
.h2b{height:49.284492px;}
.h43{height:49.403250px;}
.h3d{height:49.500000px;}
.h2{height:50.132812px;}
.h16{height:50.312812px;}
.h6{height:53.100000px;}
.h25{height:53.460000px;}
.h23{height:53.640000px;}
.h36{height:54.435594px;}
.h1e{height:54.628594px;}
.h1b{height:56.320312px;}
.h17{height:58.651172px;}
.h20{height:59.378906px;}
.h2c{height:61.329023px;}
.hf{height:61.420781px;}
.h12{height:63.755859px;}
.h9{height:65.522461px;}
.h44{height:69.086250px;}
.h1f{height:69.473320px;}
.h1a{height:70.664062px;}
.hd{height:72.336797px;}
.h18{height:80.723672px;}
.h32{height:84.046875px;}
.h31{height:84.226875px;}
.h1c{height:102.739219px;}
.hb{height:108.036000px;}
.h24{height:109.029375px;}
.h26{height:109.134211px;}
.h22{height:153.060469px;}
.h7{height:157.253906px;}
.h33{height:296.640000px;}
.h2e{height:296.820000px;}
.h19{height:303.870000px;}
.h42{height:347.580000px;}
.h34{height:347.990742px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:29.376000px;}
.w18{width:42.300000px;}
.we{width:44.236545px;}
.w1f{width:45.720000px;}
.w23{width:63.000000px;}
.w21{width:73.620000px;}
.w14{width:75.420000px;}
.w16{width:83.340000px;}
.w22{width:84.456000px;}
.w13{width:85.536000px;}
.w20{width:87.336000px;}
.w1e{width:87.516000px;}
.w17{width:89.496000px;}
.w15{width:95.976000px;}
.w1b{width:133.956000px;}
.w4{width:141.120000px;}
.wf{width:143.272463px;}
.w1d{width:148.176000px;}
.w10{width:150.022188px;}
.w11{width:158.247713px;}
.w1c{width:161.670000px;}
.w3{width:165.780000px;}
.w19{width:216.030000px;}
.w7{width:238.320000px;}
.w12{width:259.050000px;}
.w25{width:269.490000px;}
.w1a{width:299.595000px;}
.w5{width:368.820000px;}
.w6{width:441.540000px;}
.wa{width:548.100000px;}
.w9{width:555.630000px;}
.wd{width:642.744624px;}
.w26{width:712.800000px;}
.wc{width:739.800000px;}
.w8{width:739.950000px;}
.wb{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:2.340000px;}
.x42{left:7.491371px;}
.x28{left:9.756000px;}
.x3{left:10.836000px;}
.x3c{left:12.735331px;}
.x46{left:14.580000px;}
.x27{left:16.596000px;}
.x4c{left:18.390000px;}
.x26{left:20.016000px;}
.x4f{left:21.420000px;}
.x5e{left:24.660000px;}
.x4d{left:26.100000px;}
.x4a{left:27.900000px;}
.x9{left:29.415000px;}
.x51{left:30.630000px;}
.x50{left:32.790000px;}
.x4e{left:34.560000px;}
.x48{left:36.585000px;}
.x3e{left:41.277452px;}
.x30{left:47.016000px;}
.x2c{left:48.888000px;}
.x59{left:50.970000px;}
.x56{left:52.590000px;}
.x40{left:54.012782px;}
.x1{left:55.259987px;}
.x44{left:64.074000px;}
.x36{left:65.916000px;}
.x17{left:67.140000px;}
.x29{left:68.940000px;}
.x53{left:73.800000px;}
.xa{left:76.535987px;}
.x2{left:82.260000px;}
.x35{left:84.275987px;}
.x2b{left:85.895987px;}
.x63{left:89.820000px;}
.x19{left:93.635987px;}
.x31{left:99.075000px;}
.x38{left:100.835987px;}
.x5d{left:103.896000px;}
.x1a{left:108.035987px;}
.x18{left:109.475987px;}
.x3b{left:125.474127px;}
.x3a{left:127.475987px;}
.x54{left:129.810000px;}
.x34{left:140.795987px;}
.xc{left:142.914000px;}
.x13{left:145.115987px;}
.x33{left:154.649987px;}
.x6e{left:157.529987px;}
.xb{left:159.879000px;}
.x62{left:161.669987px;}
.x15{left:167.610000px;}
.x3d{left:170.459807px;}
.x10{left:174.449987px;}
.x6f{left:184.529987px;}
.x5{left:185.910000px;}
.x7{left:187.170000px;}
.x61{left:191.549987px;}
.x43{left:200.189987px;}
.xd{left:211.359000px;}
.x2a{left:223.485000px;}
.x2d{left:225.645000px;}
.x68{left:232.635000px;}
.xf{left:239.979000px;}
.x52{left:243.614987px;}
.x37{left:253.410000px;}
.x20{left:257.834987px;}
.x1b{left:280.800000px;}
.x1c{left:291.314973px;}
.x23{left:292.574987px;}
.x1d{left:296.534987px;}
.x6c{left:297.825000px;}
.xe{left:302.259000px;}
.x14{left:303.734987px;}
.x5f{left:308.954987px;}
.x22{left:313.634987px;}
.x8{left:327.240000px;}
.x65{left:333.645000px;}
.x6d{left:343.334987px;}
.x66{left:354.675000px;}
.x32{left:356.610000px;}
.x45{left:360.255000px;}
.x12{left:366.914987px;}
.x55{left:374.115000px;}
.x64{left:384.270000px;}
.x6{left:395.820000px;}
.x2e{left:402.375000px;}
.x24{left:405.284987px;}
.x6b{left:408.675000px;}
.x69{left:430.950000px;}
.x11{left:446.504987px;}
.x5a{left:462.345000px;}
.x3f{left:465.252731px;}
.x4{left:468.720000px;}
.x57{left:508.785000px;}
.x47{left:522.645000px;}
.x6a{left:572.295000px;}
.x2f{left:579.135000px;}
.x67{left:588.810000px;}
.x5b{left:596.850000px;}
.x1e{left:600.809973px;}
.x1f{left:606.029987px;}
.x49{left:619.350000px;}
.x41{left:624.249581px;}
.x58{left:671.190000px;}
.x4b{left:703.410000px;}
.x5c{left:756.360000px;}
.x21{left:765.359987px;}
.x39{left:768.239987px;}
.x60{left:803.159987px;}
.x25{left:816.839987px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v4{vertical-align:-41.493333pt;}
.v2{vertical-align:-10.986667pt;}
.v5{vertical-align:-7.306667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:41.493333pt;}
.ls3c{letter-spacing:-1.064344pt;}
.ls42{letter-spacing:-1.059023pt;}
.ls7{letter-spacing:-0.853333pt;}
.ls56{letter-spacing:-0.682667pt;}
.ls55{letter-spacing:-0.624000pt;}
.ls39{letter-spacing:-0.477358pt;}
.ls18{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.325333pt;}
.ls38{letter-spacing:-0.321964pt;}
.ls49{letter-spacing:-0.304000pt;}
.ls47{letter-spacing:-0.288000pt;}
.ls53{letter-spacing:-0.286933pt;}
.ls54{letter-spacing:-0.258667pt;}
.ls4e{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.204267pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.184533pt;}
.ls44{letter-spacing:-0.171733pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.133333pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.081067pt;}
.ls20{letter-spacing:-0.080000pt;}
.ls27{letter-spacing:-0.069333pt;}
.ls4d{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.012772pt;}
.ls10{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.030720pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.033280pt;}
.ls28{letter-spacing:0.044436pt;}
.ls4{letter-spacing:0.046080pt;}
.ls22{letter-spacing:0.047093pt;}
.ls2{letter-spacing:0.048640pt;}
.ls26{letter-spacing:0.061333pt;}
.ls4c{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.071311pt;}
.ls1e{letter-spacing:0.077867pt;}
.ls1d{letter-spacing:0.079360pt;}
.ls9{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.096427pt;}
.ls3{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.117760pt;}
.ls21{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.189333pt;}
.lsd{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.208533pt;}
.ls25{letter-spacing:0.227733pt;}
.ls40{letter-spacing:0.229898pt;}
.ls4b{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.lsf{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.277760pt;}
.ls48{letter-spacing:0.288000pt;}
.ls43{letter-spacing:0.288437pt;}
.lsb{letter-spacing:0.330133pt;}
.ls57{letter-spacing:0.348267pt;}
.ls3b{letter-spacing:0.391679pt;}
.ls41{letter-spacing:0.622641pt;}
.ls3e{letter-spacing:0.638607pt;}
.ls3f{letter-spacing:1.170779pt;}
.ls14{letter-spacing:10.373120pt;}
.ls4f{letter-spacing:10.986667pt;}
.ls51{letter-spacing:32.271360pt;}
.ls50{letter-spacing:34.831360pt;}
.ls52{letter-spacing:39.311360pt;}
.ls36{letter-spacing:197.214222pt;}
.ls33{letter-spacing:223.822830pt;}
.ls35{letter-spacing:226.457082pt;}
.ls30{letter-spacing:226.643342pt;}
.ls34{letter-spacing:229.144551pt;}
.ls2e{letter-spacing:250.431438pt;}
.ls2d{letter-spacing:253.065690pt;}
.ls2c{letter-spacing:253.198733pt;}
.ls2f{letter-spacing:255.912811pt;}
.ls32{letter-spacing:279.700906pt;}
.ls29{letter-spacing:293.111645pt;}
.ls31{letter-spacing:293.164862pt;}
.ls2a{letter-spacing:303.755088pt;}
.ls2b{letter-spacing:333.077774pt;}
.ls8{letter-spacing:752.005547pt;}
.ws3{word-spacing:-53.120000pt;}
.ws9{word-spacing:-17.253013pt;}
.wsc{word-spacing:-16.718613pt;}
.ws7{word-spacing:-16.396587pt;}
.ws6{word-spacing:-16.250880pt;}
.ws5{word-spacing:-16.166400pt;}
.ws4{word-spacing:-15.279787pt;}
.ws2{word-spacing:-14.661120pt;}
.wsb{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.336000pt;}
.ws55{word-spacing:-13.655147pt;}
.ws51{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.324800pt;}
.ws11{word-spacing:-13.306880pt;}
.ws2a{word-spacing:-13.259868pt;}
.ws24{word-spacing:-13.237547pt;}
.ws28{word-spacing:-13.122347pt;}
.ws20{word-spacing:-13.114880pt;}
.ws53{word-spacing:-13.048213pt;}
.ws52{word-spacing:-13.019947pt;}
.ws10{word-spacing:-12.981547pt;}
.ws12{word-spacing:-12.894613pt;}
.ws2e{word-spacing:-12.782509pt;}
.ws54{word-spacing:-12.682880pt;}
.wsf{word-spacing:-12.213653pt;}
.wse{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.759573pt;}
.ws46{word-spacing:-11.136000pt;}
.ws49{word-spacing:-11.104000pt;}
.ws48{word-spacing:-11.056000pt;}
.ws4d{word-spacing:-10.992000pt;}
.ws4a{word-spacing:-10.912000pt;}
.ws13{word-spacing:-10.848000pt;}
.ws42{word-spacing:-10.832000pt;}
.ws4c{word-spacing:-10.800000pt;}
.ws4b{word-spacing:-10.768000pt;}
.ws43{word-spacing:-10.704000pt;}
.ws44{word-spacing:-10.688000pt;}
.ws4e{word-spacing:-10.624000pt;}
.ws45{word-spacing:-10.560000pt;}
.ws47{word-spacing:-10.544000pt;}
.ws1{word-spacing:-0.089600pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f{word-spacing:54.343211pt;}
.ws41{word-spacing:105.836670pt;}
.ws36{word-spacing:116.305693pt;}
.ws2b{word-spacing:116.305826pt;}
.ws15{word-spacing:131.248000pt;}
.ws22{word-spacing:131.284021pt;}
.ws16{word-spacing:131.728000pt;}
.ws23{word-spacing:131.764821pt;}
.ws14{word-spacing:131.781333pt;}
.ws21{word-spacing:131.818155pt;}
.ws25{word-spacing:132.901333pt;}
.ws2c{word-spacing:137.539496pt;}
.ws34{word-spacing:145.575295pt;}
.ws50{word-spacing:145.712000pt;}
.ws4f{word-spacing:146.224000pt;}
.ws2f{word-spacing:161.700112pt;}
.ws30{word-spacing:166.808964pt;}
.ws29{word-spacing:175.507451pt;}
.ws31{word-spacing:188.811489pt;}
.ws38{word-spacing:190.969580pt;}
.ws3b{word-spacing:196.238085pt;}
.ws27{word-spacing:198.912000pt;}
.ws26{word-spacing:199.136000pt;}
.ws1c{word-spacing:206.128000pt;}
.ws17{word-spacing:206.496000pt;}
.ws39{word-spacing:211.246138pt;}
.ws33{word-spacing:218.169831pt;}
.ws32{word-spacing:218.173822pt;}
.ws1b{word-spacing:219.632000pt;}
.ws19{word-spacing:219.685333pt;}
.ws3a{word-spacing:219.694903pt;}
.ws18{word-spacing:219.781333pt;}
.ws1a{word-spacing:219.792000pt;}
.ws35{word-spacing:219.936376pt;}
.ws40{word-spacing:220.239049pt;}
.ws37{word-spacing:221.400781pt;}
.ws2d{word-spacing:226.383908pt;}
.ws3d{word-spacing:229.889991pt;}
.ws3c{word-spacing:239.916514pt;}
.ws3f{word-spacing:245.331100pt;}
.ws3e{word-spacing:245.961325pt;}
.ws1e{word-spacing:493.093333pt;}
.ws1d{word-spacing:512.096000pt;}
._22{margin-left:-253.988077pt;}
._21{margin-left:-224.347817pt;}
._23{margin-left:-223.048519pt;}
._20{margin-left:-200.293636pt;}
._24{margin-left:-199.404642pt;}
._d{margin-left:-14.698880pt;}
._9{margin-left:-13.381013pt;}
._a{margin-left:-12.404907pt;}
._b{margin-left:-10.709333pt;}
._c{margin-left:-9.332907pt;}
._8{margin-left:-7.680000pt;}
._6{margin-left:-6.099200pt;}
._4{margin-left:-3.944960pt;}
._3{margin-left:-2.507947pt;}
._1{margin-left:-1.201493pt;}
._0{width:1.524907pt;}
._5{width:2.564693pt;}
._12{width:4.094293pt;}
._11{width:5.170347pt;}
._10{width:6.123520pt;}
._14{width:7.595520pt;}
._15{width:8.973653pt;}
._17{width:10.002347pt;}
._16{width:11.010560pt;}
._13{width:12.049920pt;}
._18{width:14.438400pt;}
._e{width:15.367680pt;}
._f{width:16.322560pt;}
._1b{width:17.535147pt;}
._1a{width:18.488320pt;}
._2e{width:27.320320pt;}
._2f{width:28.439040pt;}
._1c{width:78.327626pt;}
._1e{width:89.130721pt;}
._1d{width:91.898581pt;}
._28{width:98.900467pt;}
._1f{width:105.202885pt;}
._26{width:128.036892pt;}
._2a{width:149.297170pt;}
._7{width:172.666880pt;}
._2c{width:182.571520pt;}
._2d{width:183.803733pt;}
._2b{width:208.587140pt;}
._25{width:248.284270pt;}
._27{width:258.895085pt;}
._29{width:313.972523pt;}
._19{width:547.568000pt;}
._2{width:752.133547pt;}
.fsd{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs13{font-size:34.560000pt;}
.fs12{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs14{font-size:48.128000pt;}
.fse{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs16{font-size:53.248000pt;}
.fs15{font-size:58.671981pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.fs4{font-size:88.320000pt;}
.fsa{font-size:98.560000pt;}
.fsc{font-size:125.440000pt;}
.fs10{font-size:133.120000pt;}
.fs11{font-size:133.248000pt;}
.fsf{font-size:186.880000pt;}
.fs2{font-size:192.000000pt;}
.y5a{bottom:-36.800000pt;}
.y59{bottom:-22.880000pt;}
.y58{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.053333pt;}
.y11{bottom:3.680000pt;}
.y13c{bottom:3.991296pt;}
.y13a{bottom:3.991297pt;}
.y13f{bottom:3.991299pt;}
.y152{bottom:4.320000pt;}
.y136{bottom:4.689762pt;}
.y57{bottom:4.800000pt;}
.y156{bottom:4.960000pt;}
.y154{bottom:5.120000pt;}
.y151{bottom:5.440000pt;}
.y185{bottom:5.760000pt;}
.y180{bottom:5.920000pt;}
.y171{bottom:6.080000pt;}
.y18b{bottom:6.240000pt;}
.y17e{bottom:6.400000pt;}
.y158{bottom:6.720000pt;}
.y153{bottom:6.880000pt;}
.y14f{bottom:7.200000pt;}
.y5{bottom:9.952000pt;}
.ya{bottom:11.040000pt;}
.y3{bottom:11.072000pt;}
.y138{bottom:13.969521pt;}
.y14d{bottom:15.520000pt;}
.y110{bottom:15.653333pt;}
.y106{bottom:15.706667pt;}
.yde{bottom:15.813333pt;}
.y70{bottom:16.320000pt;}
.y6e{bottom:16.453333pt;}
.y17c{bottom:17.920000pt;}
.y56{bottom:18.720000pt;}
.y1bf{bottom:20.133333pt;}
.y14e{bottom:24.000000pt;}
.y135{bottom:24.014130pt;}
.y55{bottom:32.480000pt;}
.y1bd{bottom:40.066667pt;}
.ydd{bottom:41.373333pt;}
.yc6{bottom:42.106667pt;}
.yf4{bottom:42.146667pt;}
.y10f{bottom:42.240000pt;}
.y105{bottom:42.266667pt;}
.y134{bottom:43.338632pt;}
.y54{bottom:46.400000pt;}
.yd{bottom:52.000000pt;}
.y1f0{bottom:52.640000pt;}
.y1b5{bottom:55.680000pt;}
.ybe{bottom:57.693333pt;}
.yee{bottom:57.733333pt;}
.y108{bottom:57.826667pt;}
.yfe{bottom:57.893333pt;}
.y53{bottom:60.320000pt;}
.y133{bottom:62.663134pt;}
.ydc{bottom:64.640000pt;}
.y4{bottom:70.560000pt;}
.y52{bottom:74.080000pt;}
.ybf{bottom:78.493333pt;}
.yef{bottom:78.533333pt;}
.yf{bottom:80.186667pt;}
.y109{bottom:81.306667pt;}
.y132{bottom:82.020896pt;}
.y2{bottom:87.680000pt;}
.y51{bottom:88.000000pt;}
.yff{bottom:89.186667pt;}
.y1b6{bottom:89.280000pt;}
.yab{bottom:90.432000pt;}
.yd5{bottom:92.506667pt;}
.y94{bottom:93.632000pt;}
.yfc{bottom:97.792000pt;}
.yd7{bottom:98.880000pt;}
.yc0{bottom:99.293333pt;}
.y131{bottom:101.345397pt;}
.y50{bottom:101.920000pt;}
.y39{bottom:102.272000pt;}
.y10a{bottom:104.800000pt;}
.y1be{bottom:105.986667pt;}
.yaa{bottom:106.592000pt;}
.yd4{bottom:111.040000pt;}
.ya9{bottom:111.232000pt;}
.y93{bottom:112.992000pt;}
.y4f{bottom:115.680000pt;}
.yfb{bottom:117.152000pt;}
.yc1{bottom:120.066667pt;}
.yf0{bottom:120.093333pt;}
.y100{bottom:120.480000pt;}
.y130{bottom:120.669899pt;}
.y38{bottom:121.792000pt;}
.y1b7{bottom:122.880000pt;}
.ya8{bottom:122.912000pt;}
.yd6{bottom:124.613333pt;}
.y179{bottom:125.472000pt;}
.y1a9{bottom:127.392000pt;}
.y10b{bottom:128.293333pt;}
.y4e{bottom:129.600000pt;}
.y92{bottom:132.192000pt;}
.y126{bottom:136.346667pt;}
.y37{bottom:139.226667pt;}
.y12f{bottom:139.998392pt;}
.y1ef{bottom:140.186667pt;}
.yc2{bottom:140.866667pt;}
.yf1{bottom:140.893333pt;}
.y4d{bottom:143.386667pt;}
.ya7{bottom:143.866667pt;}
.y178{bottom:144.826667pt;}
.yfa{bottom:146.106667pt;}
.y1a8{bottom:146.746667pt;}
.y91{bottom:151.546667pt;}
.y101{bottom:151.773333pt;}
.y1ae{bottom:152.226667pt;}
.y1b3{bottom:154.653333pt;}
.ya6{bottom:155.546667pt;}
.y125{bottom:155.706667pt;}
.y1b8{bottom:156.506667pt;}
.y4c{bottom:157.146667pt;}
.yf9{bottom:159.066667pt;}
.y12e{bottom:159.316241pt;}
.y107{bottom:159.360000pt;}
.yc3{bottom:161.666667pt;}
.y36{bottom:162.426667pt;}
.y1a7{bottom:165.946667pt;}
.y90{bottom:170.906667pt;}
.y4b{bottom:171.066667pt;}
.y1ee{bottom:172.026667pt;}
.y177{bottom:174.746667pt;}
.y124{bottom:174.906667pt;}
.y10c{bottom:175.266667pt;}
.yd9{bottom:175.333333pt;}
.y12d{bottom:178.674004pt;}
.ydb{bottom:181.693333pt;}
.yc4{bottom:182.426667pt;}
.yf2{bottom:182.466667pt;}
.y102{bottom:183.066667pt;}
.y35{bottom:183.386667pt;}
.y4a{bottom:184.826667pt;}
.y1a6{bottom:185.306667pt;}
.ya5{bottom:187.866667pt;}
.y1b9{bottom:190.106667pt;}
.y8f{bottom:190.266667pt;}
.y1b1{bottom:190.973333pt;}
.yd8{bottom:193.853333pt;}
.y176{bottom:194.106667pt;}
.y123{bottom:194.266667pt;}
.y1b4{bottom:197.506667pt;}
.y12c{bottom:198.005157pt;}
.y10d{bottom:198.720000pt;}
.y49{bottom:198.746667pt;}
.yc5{bottom:203.226667pt;}
.yf3{bottom:203.266667pt;}
.y34{bottom:204.506667pt;}
.y1ed{bottom:206.906667pt;}
.yda{bottom:207.386667pt;}
.y1ad{bottom:207.840000pt;}
.ya4{bottom:211.226667pt;}
.y1ab{bottom:212.613333pt;}
.y48{bottom:212.666667pt;}
.y175{bottom:213.466667pt;}
.y122{bottom:213.626667pt;}
.y103{bottom:214.373333pt;}
.y1a5{bottom:215.386667pt;}
.y12b{bottom:217.323007pt;}
.y8e{bottom:220.186667pt;}
.y33{bottom:221.946667pt;}
.y10e{bottom:222.213333pt;}
.y1ba{bottom:223.746667pt;}
.y1b0{bottom:224.800000pt;}
.y47{bottom:226.426667pt;}
.y1ac{bottom:232.066667pt;}
.y32{bottom:232.826667pt;}
.y1ec{bottom:233.786667pt;}
.y1a4{bottom:234.586667pt;}
.y12a{bottom:236.654160pt;}
.y1d7{bottom:236.666667pt;}
.y8d{bottom:239.546667pt;}
.yc7{bottom:241.120000pt;}
.yf5{bottom:241.146667pt;}
.y1af{bottom:241.786667pt;}
.y121{bottom:243.546667pt;}
.y104{bottom:245.693333pt;}
.y174{bottom:252.026667pt;}
.y1a3{bottom:253.946667pt;}
.y46{bottom:255.226667pt;}
.y129{bottom:256.011923pt;}
.y1bb{bottom:257.346667pt;}
.y8c{bottom:258.906667pt;}
.y1eb{bottom:260.666667pt;}
.y120{bottom:262.906667pt;}
.y1b2{bottom:263.546667pt;}
.y31{bottom:265.946667pt;}
.y173{bottom:271.386667pt;}
.y128{bottom:275.329770pt;}
.y1d6{bottom:277.786667pt;}
.y8b{bottom:278.106667pt;}
.y45{bottom:280.346667pt;}
.y11f{bottom:282.266667pt;}
.y1a2{bottom:283.866667pt;}
.y1bc{bottom:290.973333pt;}
.y1ea{bottom:295.386667pt;}
.y8a{bottom:297.466667pt;}
.y172{bottom:300.386667pt;}
.y11e{bottom:301.506667pt;}
.y1a1{bottom:303.266667pt;}
.y1d5{bottom:308.386667pt;}
.y30{bottom:310.946667pt;}
.y170{bottom:312.546667pt;}
.ybc{bottom:315.906667pt;}
.y89{bottom:316.866667pt;}
.y44{bottom:319.426667pt;}
.y11d{bottom:320.866667pt;}
.y1e9{bottom:322.306667pt;}
.y1a0{bottom:322.626667pt;}
.y2f{bottom:328.546667pt;}
.y16f{bottom:331.426667pt;}
.ybb{bottom:335.266667pt;}
.y88{bottom:336.226667pt;}
.y16e{bottom:350.306667pt;}
.y195{bottom:350.786667pt;}
.y11c{bottom:350.946667pt;}
.y43{bottom:351.106667pt;}
.y2e{bottom:352.386667pt;}
.y19f{bottom:352.546667pt;}
.yba{bottom:354.626667pt;}
.y1d4{bottom:358.306667pt;}
.y1e8{bottom:358.946667pt;}
.yec{bottom:361.826667pt;}
.y87{bottom:366.146667pt;}
.y16d{bottom:369.346667pt;}
.y2d{bottom:369.986667pt;}
.y11b{bottom:370.146667pt;}
.y19e{bottom:371.906667pt;}
.yb9{bottom:373.826667pt;}
.y2c{bottom:380.866667pt;}
.yeb{bottom:381.186667pt;}
.y42{bottom:382.786667pt;}
.y86{bottom:385.506667pt;}
.y16c{bottom:388.226667pt;}
.y1d3{bottom:388.386667pt;}
.y194{bottom:389.346667pt;}
.y11a{bottom:389.506667pt;}
.y19d{bottom:391.266667pt;}
.yb8{bottom:393.186667pt;}
.yd2{bottom:397.346667pt;}
.y1e7{bottom:399.106667pt;}
.y2b{bottom:400.386667pt;}
.yea{bottom:400.546667pt;}
.y85{bottom:404.866667pt;}
.y16b{bottom:407.106667pt;}
.y1d2{bottom:407.746667pt;}
.y193{bottom:408.706667pt;}
.y119{bottom:408.866667pt;}
.y19c{bottom:410.626667pt;}
.yd1{bottom:416.706667pt;}
.y2a{bottom:417.826667pt;}
.ye9{bottom:419.906667pt;}
.yb7{bottom:422.306667pt;}
.y84{bottom:424.066667pt;}
.y16a{bottom:426.146667pt;}
.y118{bottom:427.106667pt;}
.y29{bottom:428.706667pt;}
.y1e6{bottom:429.506667pt;}
.yd0{bottom:436.066667pt;}
.y1d1{bottom:437.666667pt;}
.yb6{bottom:437.826667pt;}
.y192{bottom:438.626667pt;}
.ye8{bottom:439.106667pt;}
.y19b{bottom:440.546667pt;}
.y117{bottom:442.946667pt;}
.y83{bottom:443.426667pt;}
.y169{bottom:445.026667pt;}
.y28{bottom:446.146667pt;}
.yb5{bottom:453.666667pt;}
.ycf{bottom:455.426667pt;}
.y1e5{bottom:456.386667pt;}
.y27{bottom:457.026667pt;}
.y191{bottom:457.986667pt;}
.yf8{bottom:458.466667pt;}
.y116{bottom:458.626667pt;}
.y19a{bottom:459.906667pt;}
.y82{bottom:462.786667pt;}
.y168{bottom:463.906667pt;}
.yb4{bottom:466.786667pt;}
.ybd{bottom:467.040000pt;}
.ye7{bottom:469.186667pt;}
.y115{bottom:471.586667pt;}
.y127{bottom:471.856103pt;}
.yce{bottom:474.626667pt;}
.y190{bottom:477.346667pt;}
.y199{bottom:479.266667pt;}
.y81{bottom:482.146667pt;}
.y167{bottom:482.946667pt;}
.y1e4{bottom:483.106667pt;}
.y1d0{bottom:486.946667pt;}
.ye6{bottom:488.546667pt;}
.y26{bottom:490.146667pt;}
.ycd{bottom:493.986667pt;}
.y18f{bottom:496.706667pt;}
.y166{bottom:501.826667pt;}
.ye5{bottom:507.746667pt;}
.y1e3{bottom:509.986667pt;}
.y198{bottom:511.266667pt;}
.y80{bottom:512.066667pt;}
.ycc{bottom:513.346667pt;}
.y18e{bottom:516.066667pt;}
.y1cf{bottom:517.026667pt;}
.y165{bottom:520.706667pt;}
.y6a{bottom:520.866667pt;}
.ye4{bottom:527.106667pt;}
.y7f{bottom:531.426667pt;}
.ycb{bottom:532.706667pt;}
.y25{bottom:534.626667pt;}
.y1ce{bottom:536.226667pt;}
.y164{bottom:539.773333pt;}
.y69{bottom:542.813333pt;}
.y1e2{bottom:544.893333pt;}
.y18d{bottom:545.053333pt;}
.ye3{bottom:546.493333pt;}
.y24{bottom:550.653333pt;}
.y7e{bottom:550.813333pt;}
.y18c{bottom:557.053333pt;}
.y163{bottom:558.653333pt;}
.y197{bottom:560.093333pt;}
.ya3{bottom:561.373333pt;}
.yca{bottom:562.813333pt;}
.ye2{bottom:565.853333pt;}
.y1cd{bottom:566.333333pt;}
.y7d{bottom:570.013333pt;}
.y1e1{bottom:571.773333pt;}
.y196{bottom:572.893333pt;}
.y1aa{bottom:574.080000pt;}
.y23{bottom:574.493333pt;}
.y162{bottom:577.533333pt;}
.y18a{bottom:578.813333pt;}
.y68{bottom:581.693333pt;}
.ye1{bottom:585.053333pt;}
.y1cc{bottom:585.693333pt;}
.y7c{bottom:589.373333pt;}
.ya1{bottom:591.453333pt;}
.y22{bottom:593.693333pt;}
.y161{bottom:596.573333pt;}
.ya2{bottom:596.733333pt;}
.y189{bottom:600.413333pt;}
.ye0{bottom:603.293333pt;}
.yc9{bottom:606.173333pt;}
.y1e0{bottom:608.413333pt;}
.y21{bottom:610.013333pt;}
.ya0{bottom:610.653333pt;}
.yf7{bottom:614.173333pt;}
.y160{bottom:615.453333pt;}
.y1cb{bottom:615.613333pt;}
.ydf{bottom:616.413333pt;}
.yed{bottom:616.640000pt;}
.yc8{bottom:618.973333pt;}
.yd3{bottom:619.200000pt;}
.y7b{bottom:619.293333pt;}
.y67{bottom:620.413333pt;}
.y188{bottom:621.053333pt;}
.y20{bottom:622.333333pt;}
.yf6{bottom:626.973333pt;}
.yfd{bottom:627.360000pt;}
.y9f{bottom:630.013333pt;}
.y15f{bottom:634.333333pt;}
.y1ca{bottom:634.973333pt;}
.y7a{bottom:638.653333pt;}
.y1f{bottom:641.533333pt;}
.y187{bottom:641.693333pt;}
.y1df{bottom:648.573333pt;}
.y9e{bottom:649.373333pt;}
.y15e{bottom:653.373333pt;}
.y1c9{bottom:654.333333pt;}
.y1e{bottom:658.013333pt;}
.y66{bottom:658.493333pt;}
.y14b{bottom:658.813333pt;}
.y186{bottom:662.333333pt;}
.y9d{bottom:668.733333pt;}
.y1d{bottom:670.173333pt;}
.y15d{bottom:672.253333pt;}
.y1c8{bottom:673.533333pt;}
.y14a{bottom:678.173333pt;}
.y1de{bottom:678.813333pt;}
.y184{bottom:683.133333pt;}
.y65{bottom:686.013333pt;}
.y79{bottom:687.933333pt;}
.y1c{bottom:689.373333pt;}
.y41{bottom:690.653333pt;}
.y15c{bottom:691.133333pt;}
.y149{bottom:697.373333pt;}
.y40{bottom:703.293333pt;}
.y1c7{bottom:703.613333pt;}
.y183{bottom:703.773333pt;}
.y1dd{bottom:705.693333pt;}
.y1b{bottom:705.853333pt;}
.y78{bottom:707.293333pt;}
.y15b{bottom:710.173333pt;}
.y64{bottom:713.533333pt;}
.y1a{bottom:718.013333pt;}
.y1c6{bottom:722.813333pt;}
.y182{bottom:724.413333pt;}
.y77{bottom:726.653333pt;}
.y148{bottom:727.453333pt;}
.y15a{bottom:729.053333pt;}
.y3f{bottom:729.853333pt;}
.y1dc{bottom:732.573333pt;}
.y19{bottom:737.213333pt;}
.y9c{bottom:737.373333pt;}
.y63{bottom:741.853333pt;}
.y137{bottom:743.194582pt;}
.yb3{bottom:744.253333pt;}
.y181{bottom:745.053333pt;}
.y76{bottom:746.013333pt;}
.y147{bottom:746.813333pt;}
.y159{bottom:747.933333pt;}
.y1c5{bottom:752.893333pt;}
.y18{bottom:753.693333pt;}
.y9a{bottom:756.573333pt;}
.y1db{bottom:759.453333pt;}
.y9b{bottom:761.853333pt;}
.y13e{bottom:762.525702pt;}
.y13d{bottom:762.525710pt;}
.y13b{bottom:762.525719pt;}
.y139{bottom:762.525727pt;}
.yb2{bottom:763.453333pt;}
.y75{bottom:765.213333pt;}
.y17f{bottom:765.693333pt;}
.y17{bottom:766.013333pt;}
.y157{bottom:766.973333pt;}
.y99{bottom:775.973333pt;}
.y62{bottom:780.613333pt;}
.y1c4{bottom:782.853333pt;}
.y74{bottom:784.613333pt;}
.y16{bottom:785.253333pt;}
.y146{bottom:785.413333pt;}
.y155{bottom:785.893333pt;}
.y17b{bottom:786.373333pt;}
.y3e{bottom:786.693333pt;}
.yb1{bottom:793.573333pt;}
.y1da{bottom:794.373333pt;}
.y98{bottom:795.333333pt;}
.y114{bottom:797.893333pt;}
.y145{bottom:804.773333pt;}
.y17d{bottom:809.413333pt;}
.yb0{bottom:812.773333pt;}
.y1c3{bottom:812.933333pt;}
.y73{bottom:814.693333pt;}
.y15{bottom:816.773333pt;}
.y61{bottom:819.493333pt;}
.y150{bottom:823.813333pt;}
.y144{bottom:824.133333pt;}
.y113{bottom:827.813333pt;}
.y1d9{bottom:831.013333pt;}
.y6c{bottom:831.333333pt;}
.yaf{bottom:832.133333pt;}
.y72{bottom:833.893333pt;}
.y14c{bottom:842.693333pt;}
.y1c2{bottom:842.853333pt;}
.y143{bottom:843.333333pt;}
.y3d{bottom:843.493333pt;}
.y97{bottom:846.693333pt;}
.y112{bottom:847.173333pt;}
.yae{bottom:851.493333pt;}
.y60{bottom:853.253333pt;}
.y142{bottom:862.693333pt;}
.y17a{bottom:866.533333pt;}
.y1d8{bottom:871.013333pt;}
.y1c1{bottom:872.613333pt;}
.y111{bottom:877.093333pt;}
.y14{bottom:879.813333pt;}
.yad{bottom:881.733333pt;}
.y141{bottom:882.053333pt;}
.y71{bottom:885.253333pt;}
.y6b{bottom:885.893333pt;}
.y5f{bottom:887.173333pt;}
.y96{bottom:896.453333pt;}
.y13{bottom:899.333333pt;}
.y3c{bottom:900.133333pt;}
.yac{bottom:906.533333pt;}
.y1c0{bottom:906.693333pt;}
.y140{bottom:912.293333pt;}
.y95{bottom:915.813333pt;}
.y12{bottom:918.853333pt;}
.y10{bottom:938.373333pt;}
.y5e{bottom:943.173333pt;}
.y6{bottom:951.040000pt;}
.y3b{bottom:956.933333pt;}
.ye{bottom:957.893333pt;}
.y6d{bottom:964.000000pt;}
.y5d{bottom:971.333333pt;}
.y5c{bottom:985.573333pt;}
.y8{bottom:997.600000pt;}
.y6f{bottom:1005.440000pt;}
.y1f2{bottom:1008.133333pt;}
.y3a{bottom:1013.760000pt;}
.y5b{bottom:1024.640000pt;}
.y1f1{bottom:1040.000000pt;}
.yc{bottom:1057.600000pt;}
.yb{bottom:1075.840000pt;}
.y9{bottom:1087.680000pt;}
.y1{bottom:1095.360000pt;}
.h1d{height:15.375937pt;}
.h3a{height:16.800000pt;}
.h3b{height:18.240000pt;}
.h3c{height:18.272000pt;}
.h38{height:18.659294pt;}
.hc{height:19.520000pt;}
.h41{height:20.000000pt;}
.h40{height:20.032000pt;}
.h14{height:20.343750pt;}
.h3e{height:20.960000pt;}
.h3f{height:21.120000pt;}
.h3{height:23.840000pt;}
.h10{height:24.218750pt;}
.h2a{height:28.501875pt;}
.h8{height:29.760000pt;}
.h27{height:30.613125pt;}
.h30{height:33.375000pt;}
.h13{height:34.945312pt;}
.h15{height:36.328125pt;}
.h21{height:36.809062pt;}
.h39{height:37.120000pt;}
.h37{height:37.983790pt;}
.h4{height:38.672812pt;}
.h29{height:39.585938pt;}
.h2f{height:39.691500pt;}
.h11{height:39.943750pt;}
.he{height:40.203125pt;}
.h35{height:40.795362pt;}
.h28{height:40.796250pt;}
.h2d{height:40.940000pt;}
.ha{height:42.320000pt;}
.h5{height:42.866250pt;}
.h2b{height:43.808438pt;}
.h43{height:43.914000pt;}
.h3d{height:44.000000pt;}
.h2{height:44.562500pt;}
.h16{height:44.722500pt;}
.h6{height:47.200000pt;}
.h25{height:47.520000pt;}
.h23{height:47.680000pt;}
.h36{height:48.387195pt;}
.h1e{height:48.558750pt;}
.h1b{height:50.062500pt;}
.h17{height:52.134375pt;}
.h20{height:52.781250pt;}
.h2c{height:54.514687pt;}
.hf{height:54.596250pt;}
.h12{height:56.671875pt;}
.h9{height:58.242188pt;}
.h44{height:61.410000pt;}
.h1f{height:61.754062pt;}
.h1a{height:62.812500pt;}
.hd{height:64.299375pt;}
.h18{height:71.754375pt;}
.h32{height:74.708333pt;}
.h31{height:74.868333pt;}
.h1c{height:91.323750pt;}
.hb{height:96.032000pt;}
.h24{height:96.915000pt;}
.h26{height:97.008187pt;}
.h22{height:136.053750pt;}
.h7{height:139.781250pt;}
.h33{height:263.680000pt;}
.h2e{height:263.840000pt;}
.h19{height:270.106667pt;}
.h42{height:308.960000pt;}
.h34{height:309.325104pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:26.112000pt;}
.w18{width:37.600000pt;}
.we{width:39.321373pt;}
.w1f{width:40.640000pt;}
.w23{width:56.000000pt;}
.w21{width:65.440000pt;}
.w14{width:67.040000pt;}
.w16{width:74.080000pt;}
.w22{width:75.072000pt;}
.w13{width:76.032000pt;}
.w20{width:77.632000pt;}
.w1e{width:77.792000pt;}
.w17{width:79.552000pt;}
.w15{width:85.312000pt;}
.w1b{width:119.072000pt;}
.w4{width:125.440000pt;}
.wf{width:127.353301pt;}
.w1d{width:131.712000pt;}
.w10{width:133.353056pt;}
.w11{width:140.664634pt;}
.w1c{width:143.706667pt;}
.w3{width:147.360000pt;}
.w19{width:192.026667pt;}
.w7{width:211.840000pt;}
.w12{width:230.266667pt;}
.w25{width:239.546667pt;}
.w1a{width:266.306667pt;}
.w5{width:327.840000pt;}
.w6{width:392.480000pt;}
.wa{width:487.200000pt;}
.w9{width:493.893333pt;}
.wd{width:571.328555pt;}
.w26{width:633.600000pt;}
.wc{width:657.600000pt;}
.w8{width:657.733333pt;}
.wb{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:2.080000pt;}
.x42{left:6.658997pt;}
.x28{left:8.672000pt;}
.x3{left:9.632000pt;}
.x3c{left:11.320294pt;}
.x46{left:12.960000pt;}
.x27{left:14.752000pt;}
.x4c{left:16.346667pt;}
.x26{left:17.792000pt;}
.x4f{left:19.040000pt;}
.x5e{left:21.920000pt;}
.x4d{left:23.200000pt;}
.x4a{left:24.800000pt;}
.x9{left:26.146667pt;}
.x51{left:27.226667pt;}
.x50{left:29.146667pt;}
.x4e{left:30.720000pt;}
.x48{left:32.520000pt;}
.x3e{left:36.691069pt;}
.x30{left:41.792000pt;}
.x2c{left:43.456000pt;}
.x59{left:45.306667pt;}
.x56{left:46.746667pt;}
.x40{left:48.011362pt;}
.x1{left:49.119988pt;}
.x44{left:56.954667pt;}
.x36{left:58.592000pt;}
.x17{left:59.680000pt;}
.x29{left:61.280000pt;}
.x53{left:65.600000pt;}
.xa{left:68.031988pt;}
.x2{left:73.120000pt;}
.x35{left:74.911988pt;}
.x2b{left:76.351988pt;}
.x63{left:79.840000pt;}
.x19{left:83.231988pt;}
.x31{left:88.066667pt;}
.x38{left:89.631988pt;}
.x5d{left:92.352000pt;}
.x1a{left:96.031988pt;}
.x18{left:97.311988pt;}
.x3b{left:111.532557pt;}
.x3a{left:113.311988pt;}
.x54{left:115.386667pt;}
.x34{left:125.151988pt;}
.xc{left:127.034667pt;}
.x13{left:128.991988pt;}
.x33{left:137.466655pt;}
.x6e{left:140.026655pt;}
.xb{left:142.114667pt;}
.x62{left:143.706655pt;}
.x15{left:148.986667pt;}
.x3d{left:151.519829pt;}
.x10{left:155.066655pt;}
.x6f{left:164.026655pt;}
.x5{left:165.253333pt;}
.x7{left:166.373333pt;}
.x61{left:170.266655pt;}
.x43{left:177.946655pt;}
.xd{left:187.874667pt;}
.x2a{left:198.653333pt;}
.x2d{left:200.573333pt;}
.x68{left:206.786667pt;}
.xf{left:213.314667pt;}
.x52{left:216.546655pt;}
.x37{left:225.253333pt;}
.x20{left:229.186655pt;}
.x1b{left:249.600000pt;}
.x1c{left:258.946643pt;}
.x23{left:260.066655pt;}
.x1d{left:263.586655pt;}
.x6c{left:264.733333pt;}
.xe{left:268.674667pt;}
.x14{left:269.986655pt;}
.x5f{left:274.626655pt;}
.x22{left:278.786655pt;}
.x8{left:290.880000pt;}
.x65{left:296.573333pt;}
.x6d{left:305.186655pt;}
.x66{left:315.266667pt;}
.x32{left:316.986667pt;}
.x45{left:320.226667pt;}
.x12{left:326.146655pt;}
.x55{left:332.546667pt;}
.x64{left:341.573333pt;}
.x6{left:351.840000pt;}
.x2e{left:357.666667pt;}
.x24{left:360.253322pt;}
.x6b{left:363.266667pt;}
.x69{left:383.066667pt;}
.x11{left:396.893322pt;}
.x5a{left:410.973333pt;}
.x3f{left:413.557983pt;}
.x4{left:416.640000pt;}
.x57{left:452.253333pt;}
.x47{left:464.573333pt;}
.x6a{left:508.706667pt;}
.x2f{left:514.786667pt;}
.x67{left:523.386667pt;}
.x5b{left:530.533333pt;}
.x1e{left:534.053310pt;}
.x1f{left:538.693322pt;}
.x49{left:550.533333pt;}
.x41{left:554.888516pt;}
.x58{left:596.613333pt;}
.x4b{left:625.253333pt;}
.x5c{left:672.320000pt;}
.x21{left:680.319988pt;}
.x39{left:682.879988pt;}
.x60{left:713.919988pt;}
.x25{left:726.079988pt;}
}




    .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; }
  