
    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_e79fa786ebfe904fceb9ba5a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ff8cb75b6ce297eb2a46c41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e02ff4bb9ac9931041454ea8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_ef49143210f01ea0ab206ce5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_83a60f8fd42711153e0889bd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_451b193e0f56e93a4baf48b8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_2259a605a52c24eeb9262df3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_36c27f15b2bc6cfbcb20b2fc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_154990eec907526f6f9c1c1c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_1658b0cb0a49bd711cb26071.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_2efa75f2f75e480ae930fc38.woff')format("woff");}.ffb{font-family:ffb;line-height:0.730469;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_cba28ee1c79730e3c5038739.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256476,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-131.220000px;}
.v3{vertical-align:-95.220000px;}
.v2{vertical-align:-61.500000px;}
.v1{vertical-align:-29.820000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.501152px;}
.ve{vertical-align:24.480000px;}
.v7{vertical-align:27.360000px;}
.vc{vertical-align:33.120000px;}
.va{vertical-align:36.000000px;}
.vb{vertical-align:38.880000px;}
.v9{vertical-align:42.480000px;}
.vd{vertical-align:72.000000px;}
.v6{vertical-align:74.280000px;}
.lsc{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.816000px;}
.ls1a{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.672000px;}
.ls2e{letter-spacing:-0.642000px;}
.ls19{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.414183px;}
.ls16{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.355200px;}
.ls21{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.210000px;}
.ls1c{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.103200px;}
.ls27{letter-spacing:-0.096000px;}
.ls2a{letter-spacing:-0.051840px;}
.ls11{letter-spacing:-0.018720px;}
.ls5{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls31{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.080400px;}
.ls1f{letter-spacing:0.080640px;}
.ls23{letter-spacing:0.105600px;}
.ls28{letter-spacing:0.109200px;}
.ls2c{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.148800px;}
.ls3{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.256320px;}
.ls33{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.273600px;}
.ls1d{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.297600px;}
.ls30{letter-spacing:0.298800px;}
.ls2d{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.460200px;}
.ls17{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.792000px;}
.ls1e{letter-spacing:2.707200px;}
.ls15{letter-spacing:4.494240px;}
.ls20{letter-spacing:6.307200px;}
.ls13{letter-spacing:20.376000px;}
.ls6{letter-spacing:24.456000px;}
.lsd{letter-spacing:1044.738071px;}
.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;}
}
.ws1{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.ws2f{word-spacing:-18.792000px;}
.ws1b{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.429691px;}
.ws21{word-spacing:-18.288000px;}
.ws17{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.036000px;}
.wsd{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.064000px;}
.ws2d{word-spacing:-16.865400px;}
.ws28{word-spacing:-16.669200px;}
.ws2c{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.254600px;}
.ws1d{word-spacing:-15.840000px;}
.ws20{word-spacing:-15.300000px;}
.ws3c{word-spacing:-15.238800px;}
.ws3b{word-spacing:-14.976000px;}
.ws0{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.580000px;}
.ws2a{word-spacing:-14.520960px;}
.ws1c{word-spacing:-14.506440px;}
.ws30{word-spacing:-12.060000px;}
.ws1f{word-spacing:-11.878800px;}
.ws10{word-spacing:-11.388000px;}
.ws18{word-spacing:-11.036400px;}
.ws2b{word-spacing:-10.761600px;}
.ws13{word-spacing:-10.744698px;}
.ws23{word-spacing:-10.718400px;}
.ws25{word-spacing:-10.612800px;}
.ws27{word-spacing:-10.516800px;}
.ws24{word-spacing:-10.257600px;}
.ws29{word-spacing:-9.796800px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:5.011920px;}
.ws26{word-spacing:7.507440px;}
.ws2e{word-spacing:8.218080px;}
.ws38{word-spacing:55.564080px;}
.ws40{word-spacing:64.024080px;}
.ws39{word-spacing:72.476160px;}
.ws41{word-spacing:80.936160px;}
.ws37{word-spacing:94.142400px;}
.ws6{word-spacing:95.580960px;}
.ws7{word-spacing:109.680960px;}
.ws42{word-spacing:111.000288px;}
.ws3f{word-spacing:111.181440px;}
.ws8{word-spacing:125.220960px;}
.ws3d{word-spacing:127.701360px;}
.ws9{word-spacing:142.020960px;}
.wsa{word-spacing:146.700960px;}
.wsb{word-spacing:161.820240px;}
.wse{word-spacing:174.636000px;}
.ws35{word-spacing:231.133920px;}
.ws34{word-spacing:235.999560px;}
.ws31{word-spacing:240.593520px;}
.ws33{word-spacing:248.400600px;}
.ws32{word-spacing:252.673920px;}
.ws36{word-spacing:265.441200px;}
.ws3e{word-spacing:273.901200px;}
.ws3a{word-spacing:295.380960px;}
.ws43{word-spacing:303.840960px;}
.ws15{word-spacing:798.425923px;}
.ws14{word-spacing:991.153326px;}
._3f{margin-left:-965.490240px;}
._38{margin-left:-427.181022px;}
._33{margin-left:-421.198404px;}
._31{margin-left:-395.303186px;}
._2f{margin-left:-365.876656px;}
._30{margin-left:-353.334993px;}
._32{margin-left:-329.743553px;}
._35{margin-left:-295.690081px;}
._34{margin-left:-276.882107px;}
._2d{margin-left:-270.958401px;}
._36{margin-left:-260.461180px;}
._2b{margin-left:-252.290992px;}
._37{margin-left:-243.841353px;}
._2e{margin-left:-228.093364px;}
._2c{margin-left:-223.589851px;}
._1f{margin-left:-5.184000px;}
._1a{margin-left:-3.456000px;}
._e{margin-left:-2.448000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._c{width:4.464000px;}
._5{width:5.529120px;}
._9{width:6.624000px;}
._a{width:8.207040px;}
._13{width:9.262800px;}
._14{width:10.309680px;}
._17{width:12.124800px;}
._7{width:13.248000px;}
._8{width:14.530560px;}
._b{width:16.501440px;}
._d{width:19.629120px;}
._1b{width:21.077760px;}
._1e{width:22.638720px;}
._20{width:24.192000px;}
._21{width:25.848000px;}
._22{width:27.648000px;}
._3e{width:28.976160px;}
._41{width:30.024000px;}
._18{width:31.152000px;}
._19{width:32.248080px;}
._16{width:33.875760px;}
._15{width:35.676720px;}
._12{width:36.792000px;}
._11{width:38.016000px;}
._10{width:39.096000px;}
._f{width:40.145040px;}
._23{width:41.327040px;}
._3b{width:47.952000px;}
._2a{width:54.552000px;}
._46{width:58.824000px;}
._47{width:60.772080px;}
._4d{width:66.622080px;}
._4e{width:67.963680px;}
._25{width:71.928000px;}
._26{width:73.036080px;}
._24{width:74.712000px;}
._3c{width:76.296000px;}
._3d{width:77.540160px;}
._42{width:95.112000px;}
._43{width:96.244080px;}
._1c{width:104.544000px;}
._3a{width:113.016000px;}
._29{width:115.008000px;}
._27{width:116.328000px;}
._28{width:117.450480px;}
._4f{width:124.022160px;}
._48{width:131.472000px;}
._4c{width:136.874880px;}
._50{width:139.201920px;}
._51{width:146.280000px;}
._1d{width:152.053200px;}
._53{width:154.586640px;}
._52{width:157.940160px;}
._39{width:166.470480px;}
._4a{width:191.735280px;}
._49{width:218.685840px;}
._4b{width:305.675280px;}
._45{width:311.541600px;}
._44{width:312.986400px;}
._6{width:491.165760px;}
._2{width:532.260000px;}
._40{width:948.396000px;}
._3{width:1523.177520px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fs7{font-size:40.982709px;}
.fsa{font-size:42.978792px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fsb{font-size:73.718764px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y228{bottom:4.485000px;}
.y234{bottom:4.491000px;}
.y66{bottom:4.500000px;}
.y100{bottom:4.589703px;}
.y223{bottom:5.385000px;}
.y296{bottom:5.391000px;}
.y68{bottom:5.400000px;}
.y6f{bottom:5.430000px;}
.y209{bottom:5.925000px;}
.y20b{bottom:5.940000px;}
.y207{bottom:5.970000px;}
.y205{bottom:6.120000px;}
.y1c3{bottom:6.465000px;}
.y1c7{bottom:6.471000px;}
.y1ac{bottom:6.480000px;}
.y1ae{bottom:6.525000px;}
.y1b0{bottom:6.645000px;}
.y1c0{bottom:6.660000px;}
.y1db{bottom:7.740000px;}
.y1b5{bottom:8.085000px;}
.y1cc{bottom:8.280000px;}
.y28b{bottom:8.820000px;}
.y1d4{bottom:9.180000px;}
.y1bc{bottom:9.900000px;}
.y249{bottom:10.980000px;}
.y1aa{bottom:13.500000px;}
.y2d3{bottom:13.830000px;}
.y231{bottom:14.745000px;}
.y233{bottom:14.751000px;}
.y21e{bottom:14.760000px;}
.y253{bottom:14.790000px;}
.y226{bottom:14.925000px;}
.y224{bottom:14.940000px;}
.y27a{bottom:15.120000px;}
.y29a{bottom:15.300000px;}
.ya2{bottom:17.070000px;}
.y101{bottom:17.470070px;}
.y1a8{bottom:19.440000px;}
.y247{bottom:21.240000px;}
.y227{bottom:25.185000px;}
.y21f{bottom:25.200000px;}
.y22b{bottom:25.230000px;}
.y277{bottom:25.560000px;}
.y293{bottom:28.605000px;}
.y290{bottom:28.620000px;}
.y2b5{bottom:28.800000px;}
.y286{bottom:29.730000px;}
.y282{bottom:30.765000px;}
.y27e{bottom:30.945000px;}
.y248{bottom:31.680000px;}
.y289{bottom:32.580000px;}
.y2d2{bottom:35.490000px;}
.ya1{bottom:35.610000px;}
.y279{bottom:35.820000px;}
.y53{bottom:35.925000px;}
.y299{bottom:36.000000px;}
.y276{bottom:46.260000px;}
.y278{bottom:56.520000px;}
.y298{bottom:56.700000px;}
.y2d1{bottom:57.165000px;}
.y52{bottom:57.600000px;}
.y2e6{bottom:57.630000px;}
.y7{bottom:58.536000px;}
.y2af{bottom:63.570000px;}
.ya0{bottom:74.805000px;}
.y28e{bottom:75.270000px;}
.y51{bottom:76.395000px;}
.y6{bottom:78.696000px;}
.y2d0{bottom:78.840000px;}
.y2e5{bottom:79.350000px;}
.y2cf{bottom:99.870000px;}
.y2e4{bottom:101.010000px;}
.y2d4{bottom:110.415000px;}
.y9f{bottom:114.090000px;}
.y1c6{bottom:120.465000px;}
.y2e3{bottom:122.685000px;}
.y1e3{bottom:128.925000px;}
.y2c{bottom:131.076000px;}
.y232{bottom:131.085000px;}
.y9e{bottom:132.660000px;}
.y81{bottom:133.236000px;}
.y50{bottom:133.275000px;}
.y2a1{bottom:133.410000px;}
.y2cd{bottom:133.596000px;}
.y157{bottom:137.196000px;}
.y21b{bottom:137.736000px;}
.y275{bottom:138.816000px;}
.yea{bottom:138.996000px;}
.y13c{bottom:141.516000px;}
.y28d{bottom:142.425000px;}
.ybe{bottom:142.596000px;}
.y27c{bottom:142.770000px;}
.y2e2{bottom:143.715000px;}
.y1c5{bottom:146.025000px;}
.y2ae{bottom:146.205000px;}
.y197{bottom:147.816000px;}
.y2b{bottom:148.356000px;}
.y2b9{bottom:148.536000px;}
.y2d5{bottom:150.915000px;}
.y127{bottom:151.230000px;}
.y10c{bottom:151.590000px;}
.y48{bottom:152.490000px;}
.y2ca{bottom:152.850000px;}
.y25c{bottom:153.750000px;}
.y80{bottom:153.930000px;}
.y2e7{bottom:154.230000px;}
.y1e2{bottom:154.305000px;}
.y4a{bottom:156.060000px;}
.y156{bottom:157.890000px;}
.ye9{bottom:159.690000px;}
.yc8{bottom:162.210000px;}
.y9d{bottom:162.615000px;}
.ybd{bottom:163.290000px;}
.y2a{bottom:165.630000px;}
.y292{bottom:165.825000px;}
.y2b8{bottom:167.610000px;}
.y2cc{bottom:168.150000px;}
.y196{bottom:168.510000px;}
.y2ce{bottom:169.380000px;}
.y2b4{bottom:169.425000px;}
.y274{bottom:169.770000px;}
.y187{bottom:170.850000px;}
.y1c4{bottom:171.405000px;}
.y126{bottom:171.930000px;}
.y47{bottom:173.190000px;}
.y230{bottom:173.205000px;}
.y245{bottom:174.450000px;}
.y21a{bottom:176.430000px;}
.y16b{bottom:176.790000px;}
.y155{bottom:178.590000px;}
.y1e1{bottom:179.865000px;}
.ye8{bottom:180.390000px;}
.y9c{bottom:181.155000px;}
.y4b{bottom:182.370000px;}
.y29{bottom:182.910000px;}
.y98{bottom:183.810000px;}
.ybc{bottom:183.990000px;}
.y25b{bottom:184.890000px;}
.y10b{bottom:186.150000px;}
.y2b7{bottom:186.510000px;}
.y28{bottom:188.130000px;}
.y295{bottom:189.045000px;}
.y2d6{bottom:191.415000px;}
.y186{bottom:191.550000px;}
.y7f{bottom:192.630000px;}
.y2b3{bottom:192.645000px;}
.y46{bottom:193.890000px;}
.y2e8{bottom:194.430000px;}
.y10a{bottom:195.150000px;}
.y1c2{bottom:196.965000px;}
.y16a{bottom:197.490000px;}
.y154{bottom:199.290000px;}
.y13b{bottom:200.550000px;}
.y27{bottom:201.090000px;}
.y2e0{bottom:202.530000px;}
.y2f2{bottom:202.890000px;}
.yc7{bottom:203.610000px;}
.y97{bottom:204.510000px;}
.ybb{bottom:204.690000px;}
.y1e0{bottom:205.425000px;}
.y2b6{bottom:205.590000px;}
.y13a{bottom:205.770000px;}
.y195{bottom:207.210000px;}
.y4c{bottom:209.190000px;}
.y1a1{bottom:209.910000px;}
.y9b{bottom:211.140000px;}
.y244{bottom:211.395000px;}
.y294{bottom:212.295000px;}
.y7e{bottom:213.330000px;}
.y45{bottom:214.590000px;}
.y219{bottom:215.355000px;}
.y273{bottom:215.535000px;}
.y25a{bottom:215.895000px;}
.y2b0{bottom:216.075000px;}
.y139{bottom:219.270000px;}
.y153{bottom:219.990000px;}
.ye7{bottom:221.790000px;}
.y1c1{bottom:222.555000px;}
.yc6{bottom:224.310000px;}
.y96{bottom:225.210000px;}
.yba{bottom:225.390000px;}
.y194{bottom:227.910000px;}
.y2f1{bottom:228.345000px;}
.y9a{bottom:229.680000px;}
.y26{bottom:230.250000px;}
.y2c9{bottom:230.295000px;}
.y1a0{bottom:230.610000px;}
.y1df{bottom:230.835000px;}
.y2d7{bottom:231.915000px;}
.y7d{bottom:234.030000px;}
.y272{bottom:234.615000px;}
.y44{bottom:235.290000px;}
.y28f{bottom:235.515000px;}
.y169{bottom:236.190000px;}
.y4d{bottom:236.595000px;}
.y2df{bottom:236.955000px;}
.y2e1{bottom:238.140000px;}
.y22f{bottom:238.575000px;}
.y109{bottom:238.890000px;}
.y2b2{bottom:239.295000px;}
.y152{bottom:240.690000px;}
.y138{bottom:242.310000px;}
.ye6{bottom:242.490000px;}
.yc5{bottom:245.010000px;}
.y95{bottom:245.910000px;}
.yb9{bottom:246.090000px;}
.y259{bottom:247.035000px;}
.y1bf{bottom:247.935000px;}
.y243{bottom:248.295000px;}
.y185{bottom:250.950000px;}
.y19f{bottom:251.310000px;}
.y271{bottom:253.515000px;}
.y2f0{bottom:253.800000px;}
.y218{bottom:254.235000px;}
.y7c{bottom:254.730000px;}
.y1de{bottom:256.395000px;}
.y168{bottom:256.890000px;}
.y291{bottom:258.735000px;}
.y151{bottom:261.390000px;}
.y2b1{bottom:262.515000px;}
.y137{bottom:263.010000px;}
.y4e{bottom:264.525000px;}
.yc4{bottom:265.710000px;}
.y94{bottom:266.610000px;}
.yb8{bottom:266.790000px;}
.y2c8{bottom:268.995000px;}
.y25{bottom:270.570000px;}
.y184{bottom:271.650000px;}
.y2d8{bottom:272.415000px;}
.y270{bottom:272.595000px;}
.y1be{bottom:273.495000px;}
.y43{bottom:273.855000px;}
.y2e9{bottom:274.785000px;}
.y7b{bottom:275.475000px;}
.y1fb{bottom:275.655000px;}
.y217{bottom:277.455000px;}
.y108{bottom:277.635000px;}
.y2ef{bottom:279.255000px;}
.y22e{bottom:280.695000px;}
.ye5{bottom:281.055000px;}
.y1dd{bottom:281.955000px;}
.y150{bottom:282.135000px;}
.y258{bottom:282.315000px;}
.y136{bottom:283.755000px;}
.y242{bottom:285.015000px;}
.y2a0{bottom:285.735000px;}
.yc3{bottom:286.455000px;}
.y93{bottom:287.355000px;}
.y19e{bottom:290.055000px;}
.y26f{bottom:291.495000px;}
.y4f{bottom:293.040000px;}
.y42{bottom:294.555000px;}
.y216{bottom:295.455000px;}
.y7a{bottom:296.175000px;}
.y257{bottom:297.615000px;}
.y167{bottom:298.335000px;}
.y1bd{bottom:299.055000px;}
.y14f{bottom:302.835000px;}
.y215{bottom:303.735000px;}
.y135{bottom:304.455000px;}
.yb7{bottom:305.175000px;}
.y27b{bottom:305.355000px;}
.y256{bottom:305.895000px;}
.yc2{bottom:307.155000px;}
.y1dc{bottom:307.335000px;}
.y2c7{bottom:307.695000px;}
.y92{bottom:308.055000px;}
.y2ad{bottom:308.955000px;}
.y1fa{bottom:309.675000px;}
.y183{bottom:310.395000px;}
.y24{bottom:310.575000px;}
.y2d9{bottom:312.945000px;}
.y2ea{bottom:314.970000px;}
.y107{bottom:316.335000px;}
.y79{bottom:316.875000px;}
.ye4{bottom:321.735000px;}
.y241{bottom:321.915000px;}
.y22d{bottom:322.995000px;}
.y14e{bottom:323.535000px;}
.y1bb{bottom:324.435000px;}
.y134{bottom:325.155000px;}
.y1f9{bottom:325.695000px;}
.y193{bottom:326.055000px;}
.y255{bottom:326.235000px;}
.y214{bottom:326.955000px;}
.y23{bottom:327.855000px;}
.y28c{bottom:328.575000px;}
.y41{bottom:328.755000px;}
.y49{bottom:329.040000px;}
.y26e{bottom:329.475000px;}
.y182{bottom:331.095000px;}
.y2ac{bottom:332.175000px;}
.y1da{bottom:332.895000px;}
.y1f8{bottom:333.975000px;}
.y254{bottom:334.515000px;}
.y213{bottom:335.235000px;}
.y166{bottom:337.035000px;}
.y78{bottom:337.575000px;}
.ye3{bottom:342.435000px;}
.y14d{bottom:344.235000px;}
.y22{bottom:345.135000px;}
.yb6{bottom:345.855000px;}
.y22c{bottom:346.215000px;}
.y2c6{bottom:346.395000px;}
.y192{bottom:346.755000px;}
.y26d{bottom:348.375000px;}
.yc1{bottom:348.555000px;}
.y91{bottom:349.455000px;}
.y28a{bottom:352.875000px;}
.y2da{bottom:353.445000px;}
.y1f7{bottom:354.315000px;}
.y106{bottom:355.035000px;}
.y2eb{bottom:355.140000px;}
.y2a9{bottom:355.575000px;}
.y1ba{bottom:356.835000px;}
.y165{bottom:357.735000px;}
.y77{bottom:358.275000px;}
.y212{bottom:358.455000px;}
.y240{bottom:358.635000px;}
.y1d9{bottom:360.615000px;}
.y1f6{bottom:362.595000px;}
.y14c{bottom:364.935000px;}
.yb5{bottom:366.555000px;}
.y211{bottom:366.735000px;}
.y26c{bottom:367.455000px;}
.yc0{bottom:369.255000px;}
.y181{bottom:369.795000px;}
.y90{bottom:370.155000px;}
.y164{bottom:378.435000px;}
.y2ab{bottom:378.795000px;}
.y125{bottom:378.975000px;}
.y21{bottom:381.135000px;}
.y1b9{bottom:382.215000px;}
.y285{bottom:382.935000px;}
.y1f5{bottom:383.475000px;}
.y2c5{bottom:385.095000px;}
.y191{bottom:385.455000px;}
.y14b{bottom:385.635000px;}
.y1d8{bottom:386.175000px;}
.yb4{bottom:387.255000px;}
.y19d{bottom:388.155000px;}
.y22a{bottom:388.335000px;}
.y180{bottom:390.495000px;}
.y8f{bottom:390.855000px;}
.y1f4{bottom:391.755000px;}
.y252{bottom:392.295000px;}
.y105{bottom:393.735000px;}
.y2db{bottom:393.945000px;}
.y2ec{bottom:395.355000px;}
.y23f{bottom:395.535000px;}
.y76{bottom:396.975000px;}
.y26b{bottom:401.115000px;}
.y20{bottom:401.655000px;}
.ye2{bottom:401.835000px;}
.y2aa{bottom:402.015000px;}
.y190{bottom:406.155000px;}
.y14a{bottom:406.335000px;}
.y288{bottom:407.265000px;}
.y1b8{bottom:407.775000px;}
.yb3{bottom:407.955000px;}
.y19c{bottom:408.855000px;}
.y17f{bottom:411.195000px;}
.y1d7{bottom:411.735000px;}
.y75{bottom:413.895000px;}
.y104{bottom:414.435000px;}
.y210{bottom:415.545000px;}
.y1f3{bottom:416.235000px;}
.y163{bottom:417.135000px;}
.y124{bottom:417.675000px;}
.y2c4{bottom:423.825000px;}
.y26a{bottom:424.380000px;}
.y2a6{bottom:425.265000px;}
.y18f{bottom:426.855000px;}
.y149{bottom:427.035000px;}
.yb2{bottom:428.655000px;}
.y8e{bottom:429.555000px;}
.y229{bottom:430.500000px;}
.y1f2{bottom:431.385000px;}
.y287{bottom:431.745000px;}
.y23e{bottom:432.285000px;}
.y1b7{bottom:433.365000px;}
.y2dc{bottom:434.445000px;}
.y251{bottom:434.460000px;}
.y2ed{bottom:435.525000px;}
.y1d6{bottom:437.160000px;}
.y74{bottom:437.295000px;}
.y20f{bottom:437.505000px;}
.y162{bottom:437.835000px;}
.y123{bottom:438.375000px;}
.y1f1{bottom:439.665000px;}
.ye1{bottom:440.535000px;}
.y1f{bottom:442.155000px;}
.y19b{bottom:447.555000px;}
.y269{bottom:447.585000px;}
.y148{bottom:447.735000px;}
.y2a8{bottom:448.500000px;}
.yb1{bottom:449.355000px;}
.y17e{bottom:449.895000px;}
.y103{bottom:453.135000px;}
.y225{bottom:453.720000px;}
.y281{bottom:454.980000px;}
.y161{bottom:458.535000px;}
.y1b6{bottom:458.745000px;}
.y122{bottom:459.075000px;}
.y73{bottom:460.515000px;}
.ye0{bottom:461.235000px;}
.y2c3{bottom:462.525000px;}
.y1d5{bottom:462.705000px;}
.y1e{bottom:462.855000px;}
.y1f0{bottom:463.065000px;}
.y8d{bottom:463.755000px;}
.y99{bottom:463.860000px;}
.y18e{bottom:465.555000px;}
.y19a{bottom:468.255000px;}
.y147{bottom:468.435000px;}
.y23d{bottom:469.185000px;}
.yb0{bottom:470.055000px;}
.y17d{bottom:470.595000px;}
.y268{bottom:470.820000px;}
.y20e{bottom:471.165000px;}
.y1ef{bottom:471.345000px;}
.y2a7{bottom:471.720000px;}
.y2dd{bottom:474.990000px;}
.y2ee{bottom:475.710000px;}
.y121{bottom:479.775000px;}
.y284{bottom:480.345000px;}
.y250{bottom:483.240000px;}
.y1d{bottom:483.555000px;}
.y72{bottom:483.735000px;}
.y1b4{bottom:484.320000px;}
.y23c{bottom:484.845000px;}
.y18d{bottom:486.255000px;}
.y133{bottom:488.055000px;}
.y1d3{bottom:488.265000px;}
.y199{bottom:488.955000px;}
.y146{bottom:489.135000px;}
.yaf{bottom:490.755000px;}
.y102{bottom:491.835000px;}
.y267{bottom:494.205000px;}
.y2a2{bottom:495.105000px;}
.y2a5{bottom:495.120000px;}
.y1ee{bottom:495.825000px;}
.y20d{bottom:496.560000px;}
.y160{bottom:497.235000px;}
.ydf{bottom:499.935000px;}
.y120{bottom:500.475000px;}
.y2c2{bottom:501.225000px;}
.y1c{bottom:504.255000px;}
.y283{bottom:504.825000px;}
.y71{bottom:506.955000px;}
.y24f{bottom:507.540000px;}
.y23b{bottom:508.080000px;}
.y132{bottom:508.755000px;}
.y17c{bottom:509.295000px;}
.y145{bottom:509.835000px;}
.y1ed{bottom:510.945000px;}
.yae{bottom:511.455000px;}
.y1b3{bottom:513.120000px;}
.y2de{bottom:515.490000px;}
.y266{bottom:517.440000px;}
.y15f{bottom:517.935000px;}
.y2a4{bottom:518.325000px;}
.y1ec{bottom:519.225000px;}
.y1d2{bottom:519.240000px;}
.yde{bottom:520.635000px;}
.y20c{bottom:521.040000px;}
.y11f{bottom:521.175000px;}
.y1b{bottom:524.955000px;}
.y18c{bottom:527.655000px;}
.y27d{bottom:529.140000px;}
.y131{bottom:529.455000px;}
.y17b{bottom:529.815000px;}
.y70{bottom:530.175000px;}
.yff{bottom:530.340000px;}
.yfe{bottom:530.355000px;}
.y144{bottom:530.535000px;}
.yad{bottom:532.155000px;}
.y222{bottom:537.960000px;}
.y15e{bottom:538.635000px;}
.y1b2{bottom:538.665000px;}
.y1eb{bottom:539.925000px;}
.y265{bottom:540.660000px;}
.ydd{bottom:541.335000px;}
.y2a3{bottom:541.560000px;}
.y11e{bottom:541.875000px;}
.y1d1{bottom:544.800000px;}
.y20a{bottom:545.325000px;}
.y1a{bottom:545.655000px;}
.y1ea{bottom:548.205000px;}
.y198{bottom:548.355000px;}
.y24e{bottom:549.660000px;}
.y130{bottom:550.155000px;}
.y23a{bottom:550.200000px;}
.y17a{bottom:551.055000px;}
.y143{bottom:551.235000px;}
.yac{bottom:552.855000px;}
.y6e{bottom:553.395000px;}
.y280{bottom:553.605000px;}
.y221{bottom:561.345000px;}
.ydc{bottom:561.885000px;}
.y11d{bottom:562.605000px;}
.y264{bottom:563.865000px;}
.y1b1{bottom:564.225000px;}
.y29c{bottom:564.765000px;}
.y29f{bottom:564.780000px;}
.y19{bottom:566.385000px;}
.y1e9{bottom:568.545000px;}
.y208{bottom:569.820000px;}
.y1d0{bottom:570.345000px;}
.y12f{bottom:570.885000px;}
.y142{bottom:571.965000px;}
.yab{bottom:573.585000px;}
.y24d{bottom:574.140000px;}
.y6d{bottom:576.825000px;}
.y15d{bottom:577.365000px;}
.y27f{bottom:577.905000px;}
.y2c1{bottom:578.625000px;}
.yfd{bottom:581.685000px;}
.ydb{bottom:582.585000px;}
.y18{bottom:587.085000px;}
.y263{bottom:587.100000px;}
.y29e{bottom:588.000000px;}
.y1af{bottom:589.620000px;}
.y179{bottom:589.785000px;}
.y12e{bottom:591.585000px;}
.y239{bottom:592.320000px;}
.y141{bottom:592.665000px;}
.y206{bottom:594.120000px;}
.yaa{bottom:594.285000px;}
.y1cf{bottom:595.725000px;}
.y1e8{bottom:596.985000px;}
.y15c{bottom:597.885000px;}
.y24c{bottom:598.440000px;}
.y6c{bottom:600.045000px;}
.y11c{bottom:601.125000px;}
.yfc{bottom:602.385000px;}
.yda{bottom:603.285000px;}
.y220{bottom:603.510000px;}
.y1e7{bottom:605.265000px;}
.y17{bottom:607.785000px;}
.y262{bottom:610.350000px;}
.y178{bottom:610.485000px;}
.y29d{bottom:611.250000px;}
.y12d{bottom:612.285000px;}
.y140{bottom:613.365000px;}
.ya9{bottom:614.985000px;}
.y1ad{bottom:615.165000px;}
.y238{bottom:615.750000px;}
.y2c0{bottom:617.370000px;}
.y204{bottom:618.450000px;}
.y1ce{bottom:621.330000px;}
.y24b{bottom:622.770000px;}
.yfb{bottom:623.085000px;}
.y6b{bottom:623.265000px;}
.yd9{bottom:623.985000px;}
.y16{bottom:628.485000px;}
.y1e6{bottom:629.610000px;}
.y12c{bottom:632.985000px;}
.y261{bottom:633.750000px;}
.y13f{bottom:633.885000px;}
.y29b{bottom:634.650000px;}
.ya8{bottom:635.685000px;}
.y15b{bottom:636.585000px;}
.y1ab{bottom:640.770000px;}
.y11b{bottom:641.805000px;}
.y203{bottom:642.930000px;}
.yfa{bottom:643.785000px;}
.yd8{bottom:644.685000px;}
.y21d{bottom:645.630000px;}
.y6a{bottom:646.485000px;}
.y1cd{bottom:646.890000px;}
.y24a{bottom:647.250000px;}
.y1e5{bottom:648.510000px;}
.y15{bottom:649.185000px;}
.y12b{bottom:653.685000px;}
.y13e{bottom:654.585000px;}
.y2bf{bottom:655.530000px;}
.ya7{bottom:656.385000px;}
.y260{bottom:656.970000px;}
.y15a{bottom:657.285000px;}
.y237{bottom:657.870000px;}
.y11a{bottom:662.505000px;}
.yf9{bottom:664.485000px;}
.y1a9{bottom:666.150000px;}
.y18b{bottom:667.185000px;}
.y1e4{bottom:667.590000px;}
.y202{bottom:668.490000px;}
.y69{bottom:669.705000px;}
.y14{bottom:669.885000px;}
.y246{bottom:671.550000px;}
.y1cb{bottom:672.270000px;}
.y129{bottom:674.385000px;}
.y2be{bottom:674.610000px;}
.y40{bottom:675.285000px;}
.ya6{bottom:677.085000px;}
.y25f{bottom:680.190000px;}
.y297{bottom:681.090000px;}
.y12a{bottom:681.225000px;}
.y119{bottom:683.205000px;}
.yd7{bottom:683.385000px;}
.yf8{bottom:685.185000px;}
.y18a{bottom:687.885000px;}
.y67{bottom:692.925000px;}
.y2bd{bottom:693.510000px;}
.y128{bottom:695.085000px;}
.y3f{bottom:695.985000px;}
.ya5{bottom:697.785000px;}
.y236{bottom:699.990000px;}
.y1ca{bottom:701.250000px;}
.y25e{bottom:703.410000px;}
.y118{bottom:703.905000px;}
.yd6{bottom:704.085000px;}
.y1a7{bottom:705.570000px;}
.yf7{bottom:705.885000px;}
.y13{bottom:708.225000px;}
.y177{bottom:708.585000px;}
.y21c{bottom:710.250000px;}
.y2cb{bottom:710.430000px;}
.y2bc{bottom:712.410000px;}
.y201{bottom:713.310000px;}
.ybf{bottom:715.785000px;}
.y65{bottom:716.325000px;}
.y3e{bottom:716.685000px;}
.y235{bottom:723.210000px;}
.y117{bottom:724.605000px;}
.yf6{bottom:726.585000px;}
.y1c9{bottom:726.810000px;}
.y176{bottom:729.285000px;}
.y2bb{bottom:731.490000px;}
.y8c{bottom:733.785000px;}
.ya4{bottom:736.485000px;}
.y3d{bottom:737.385000px;}
.yd5{bottom:742.785000px;}
.y116{bottom:745.305000px;}
.yf5{bottom:747.285000px;}
.y12{bottom:748.725000px;}
.y200{bottom:748.950000px;}
.y25d{bottom:749.130000px;}
.y64{bottom:749.625000px;}
.y2ba{bottom:750.390000px;}
.y1c8{bottom:752.190000px;}
.y8b{bottom:754.485000px;}
.ya3{bottom:757.185000px;}
.y3c{bottom:758.085000px;}
.yd4{bottom:763.485000px;}
.y115{bottom:766.005000px;}
.y175{bottom:767.985000px;}
.y1ff{bottom:773.790000px;}
.y8a{bottom:775.185000px;}
.y63{bottom:777.885000px;}
.y159{bottom:778.785000px;}
.y1a6{bottom:781.170000px;}
.yf4{bottom:785.985000px;}
.y114{bottom:786.705000px;}
.y174{bottom:788.685000px;}
.y11{bottom:789.765000px;}
.y1fe{bottom:790.890000px;}
.y89{bottom:795.885000px;}
.y13d{bottom:796.605000px;}
.y3b{bottom:796.785000px;}
.y62{bottom:798.585000px;}
.y1a5{bottom:798.810000px;}
.yd3{bottom:802.185000px;}
.yf3{bottom:806.685000px;}
.y1fd{bottom:808.200000px;}
.y10{bottom:812.445000px;}
.y1a4{bottom:815.910000px;}
.y88{bottom:816.585000px;}
.y158{bottom:817.305000px;}
.y3a{bottom:817.485000px;}
.y61{bottom:819.285000px;}
.yd2{bottom:822.885000px;}
.y113{bottom:825.405000px;}
.y1fc{bottom:825.480000px;}
.y173{bottom:827.385000px;}
.y1a3{bottom:833.220000px;}
.y87{bottom:837.285000px;}
.y39{bottom:838.185000px;}
.y60{bottom:840.030000px;}
.yf2{bottom:845.430000px;}
.y172{bottom:848.130000px;}
.y1a2{bottom:850.500000px;}
.yf{bottom:854.250000px;}
.y86{bottom:858.030000px;}
.y38{bottom:858.930000px;}
.y5f{bottom:860.730000px;}
.yd1{bottom:861.630000px;}
.y112{bottom:864.150000px;}
.yf1{bottom:866.130000px;}
.y171{bottom:868.830000px;}
.yd{bottom:877.110000px;}
.y85{bottom:878.730000px;}
.y37{bottom:879.630000px;}
.y5e{bottom:881.430000px;}
.yd0{bottom:882.330000px;}
.ye{bottom:884.670000px;}
.y189{bottom:886.830000px;}
.y84{bottom:899.430000px;}
.y36{bottom:900.330000px;}
.y5d{bottom:902.130000px;}
.y111{bottom:902.850000px;}
.ycf{bottom:903.030000px;}
.yf0{bottom:904.830000px;}
.y170{bottom:907.530000px;}
.y83{bottom:920.130000px;}
.yc{bottom:920.670000px;}
.y35{bottom:921.030000px;}
.y5c{bottom:922.830000px;}
.yce{bottom:923.730000px;}
.yef{bottom:925.530000px;}
.y16f{bottom:928.230000px;}
.y82{bottom:940.830000px;}
.y110{bottom:941.550000px;}
.y34{bottom:941.730000px;}
.ycd{bottom:944.430000px;}
.y188{bottom:946.230000px;}
.y5b{bottom:961.530000px;}
.y33{bottom:962.430000px;}
.yee{bottom:964.230000px;}
.ycc{bottom:965.130000px;}
.y16e{bottom:966.930000px;}
.yb{bottom:973.230000px;}
.y10f{bottom:975.930000px;}
.y5a{bottom:982.230000px;}
.y32{bottom:983.130000px;}
.yed{bottom:984.930000px;}
.ycb{bottom:985.830000px;}
.y16d{bottom:987.630000px;}
.y59{bottom:1002.930000px;}
.y31{bottom:1003.830000px;}
.yec{bottom:1005.630000px;}
.yca{bottom:1006.530000px;}
.ya{bottom:1007.790000px;}
.y58{bottom:1023.630000px;}
.y30{bottom:1024.530000px;}
.yeb{bottom:1026.330000px;}
.y10e{bottom:1029.030000px;}
.y9{bottom:1042.170000px;}
.y57{bottom:1044.330000px;}
.yc9{bottom:1045.050000px;}
.y2f{bottom:1045.230000px;}
.y16c{bottom:1047.030000px;}
.y56{bottom:1065.030000px;}
.y2e{bottom:1065.930000px;}
.y10d{bottom:1067.730000px;}
.y55{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y2d{bottom:1104.450000px;}
.y54{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h11{height:20.700000px;}
.h14{height:22.485000px;}
.h57{height:22.491000px;}
.h12{height:22.500000px;}
.h47{height:22.521000px;}
.h13{height:22.530000px;}
.h49{height:22.536000px;}
.h3f{height:23.565000px;}
.h40{height:23.580000px;}
.h3e{height:23.601000px;}
.h51{height:23.616000px;}
.h3d{height:23.745000px;}
.h4f{height:23.760000px;}
.h26{height:24.645000px;}
.h2f{height:24.651000px;}
.h29{height:24.660000px;}
.h36{height:24.681000px;}
.h27{height:24.682500px;}
.h34{height:24.690000px;}
.h2c{height:24.696000px;}
.h28{height:24.825000px;}
.h30{height:24.831000px;}
.h2b{height:24.840000px;}
.h2e{height:24.861000px;}
.h32{height:24.862500px;}
.h35{height:26.985000px;}
.h20{height:27.945000px;}
.h2a{height:28.065000px;}
.h31{height:28.245000px;}
.hd{height:28.455767px;}
.h1a{height:29.175118px;}
.h53{height:29.340000px;}
.h33{height:30.240000px;}
.h2d{height:31.485000px;}
.h1f{height:33.494766px;}
.h8{height:37.494141px;}
.h25{height:38.685000px;}
.h41{height:41.385000px;}
.h46{height:41.391000px;}
.h43{height:41.400000px;}
.h45{height:41.421000px;}
.h42{height:41.422500px;}
.h44{height:41.430000px;}
.h1b{height:42.160348px;}
.h4{height:45.184219px;}
.h4a{height:47.344922px;}
.h24{height:53.805000px;}
.h48{height:54.345000px;}
.he{height:58.621992px;}
.h2{height:58.651172px;}
.h61{height:58.792500px;}
.h3{height:60.226875px;}
.h10{height:63.175781px;}
.h37{height:65.010937px;}
.h5d{height:68.925000px;}
.h55{height:68.940000px;}
.h56{height:68.961000px;}
.h59{height:68.962500px;}
.h5c{height:68.970000px;}
.h5f{height:69.105000px;}
.h21{height:70.628906px;}
.hc{height:70.664062px;}
.h16{height:70.805391px;}
.h50{height:71.316000px;}
.h38{height:73.411172px;}
.h4e{height:73.425000px;}
.h4d{height:73.641000px;}
.h58{height:74.680922px;}
.h22{height:74.681367px;}
.h18{height:74.704922px;}
.h19{height:74.824922px;}
.h5a{height:74.884922px;}
.h52{height:76.860000px;}
.hb{height:78.367500px;}
.h1d{height:79.072734px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h4b{height:83.505000px;}
.h9{height:84.898125px;}
.h1c{height:90.852088px;}
.h3a{height:98.130938px;}
.h39{height:106.531172px;}
.h1e{height:106.664062px;}
.h5{height:121.179375px;}
.h5e{height:138.802500px;}
.h17{height:145.085391px;}
.h54{height:162.021000px;}
.h15{height:265.500000px;}
.h5b{height:278.310000px;}
.h4c{height:297.435000px;}
.hf{height:324.000000px;}
.h62{height:491.580000px;}
.h60{height:536.580000px;}
.h3b{height:892.980000px;}
.h3c{height:893.250000px;}
.h23{height:918.000000px;}
.h7{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4b{width:28.605000px;}
.w4a{width:28.656000px;}
.w48{width:28.965000px;}
.w39{width:30.405000px;}
.w19{width:39.420000px;}
.w1e{width:39.585000px;}
.w1f{width:42.465000px;}
.w1a{width:42.480000px;}
.w2a{width:56.505000px;}
.w47{width:59.796000px;}
.w41{width:60.465000px;}
.w3e{width:60.501000px;}
.w49{width:62.460000px;}
.w2c{width:64.965000px;}
.w25{width:64.980000px;}
.w20{width:70.401000px;}
.w3a{width:70.545000px;}
.w1b{width:70.560000px;}
.w27{width:73.476000px;}
.w2d{width:73.605000px;}
.w34{width:73.965000px;}
.w26{width:73.980000px;}
.w30{width:74.001000px;}
.w31{width:76.320000px;}
.w17{width:77.385000px;}
.w33{width:77.436000px;}
.w1c{width:77.616000px;}
.w28{width:78.465000px;}
.w21{width:80.136000px;}
.w22{width:81.345000px;}
.w35{width:81.885000px;}
.w29{width:82.965000px;}
.w2b{width:84.441000px;}
.w6{width:86.040000px;}
.w12{width:87.465000px;}
.w36{width:92.361000px;}
.w32{width:92.520000px;}
.w7{width:93.945000px;}
.w5{width:93.960000px;}
.w2e{width:95.565000px;}
.w46{width:96.285000px;}
.w44{width:96.300000px;}
.w13{width:96.465000px;}
.w10{width:96.480000px;}
.wf{width:96.501000px;}
.w11{width:96.516000px;}
.w43{width:97.020000px;}
.w45{width:97.041000px;}
.w38{width:97.416000px;}
.we{width:105.465000px;}
.w2f{width:114.465000px;}
.w24{width:114.501000px;}
.w3c{width:119.196000px;}
.w40{width:121.176000px;}
.w3d{width:125.445000px;}
.w1d{width:130.845000px;}
.w18{width:131.061000px;}
.w23{width:132.465000px;}
.w4{width:148.521000px;}
.w8{width:150.495000px;}
.wd{width:160.590000px;}
.w3f{width:194.220000px;}
.w42{width:194.235000px;}
.w3b{width:201.975000px;}
.wa{width:353.170658px;}
.w37{width:477.555000px;}
.w3{width:511.920000px;}
.w4d{width:718.560000px;}
.w4c{width:727.920000px;}
.w16{width:728.370000px;}
.w2{width:892.957500px;}
.w9{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:930.015000px;}
.wb{width:1188.000000px;}
.w14{width:1262.880000px;}
.w15{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:7.725000px;}
.x61{left:9.180000px;}
.x72{left:10.980000px;}
.x46{left:12.270000px;}
.x75{left:13.665000px;}
.x67{left:15.120000px;}
.x48{left:16.740000px;}
.x80{left:18.720000px;}
.x6a{left:19.800000px;}
.x47{left:21.270000px;}
.x68{left:22.320000px;}
.x4a{left:23.385000px;}
.x4c{left:24.660000px;}
.x49{left:25.725000px;}
.x20{left:27.180000px;}
.x81{left:28.980000px;}
.x44{left:30.240000px;}
.x22{left:31.680000px;}
.x19{left:33.735000px;}
.x3c{left:35.670000px;}
.x4d{left:36.930000px;}
.x21{left:37.980000px;}
.x3f{left:39.240000px;}
.x2f{left:41.280795px;}
.x1f{left:42.480000px;}
.x8c{left:43.725000px;}
.x69{left:45.165000px;}
.x8b{left:46.245000px;}
.x6b{left:49.665000px;}
.xa1{left:51.015000px;}
.x3a{left:52.725000px;}
.x16{left:56.550000px;}
.xa0{left:58.500000px;}
.x45{left:62.130000px;}
.x4b{left:63.750000px;}
.x15{left:65.805000px;}
.x14{left:67.530000px;}
.x13{left:69.225000px;}
.x12{left:70.920000px;}
.x71{left:74.520000px;}
.x11{left:80.025000px;}
.x9f{left:88.530000px;}
.xa5{left:91.830000px;}
.x36{left:106.380000px;}
.x37{left:118.080000px;}
.x17{left:125.385000px;}
.x1{left:127.656000px;}
.x3{left:131.796000px;}
.x35{left:133.056000px;}
.x4e{left:138.456000px;}
.x4{left:148.536000px;}
.x73{left:155.565000px;}
.x18{left:156.600000px;}
.xc{left:159.510000px;}
.x57{left:161.490000px;}
.xb{left:180.750000px;}
.x8f{left:181.785000px;}
.x9a{left:188.865000px;}
.x24{left:189.930000px;}
.x8e{left:191.025000px;}
.x9{left:197.670000px;}
.x54{left:199.650000px;}
.x10{left:201.060000px;}
.x6c{left:202.890000px;}
.x31{left:207.030000px;}
.x6e{left:210.990000px;}
.x52{left:216.570000px;}
.x9b{left:218.565000px;}
.x55{left:227.910000px;}
.x74{left:237.645000px;}
.x5d{left:239.790000px;}
.x32{left:241.950000px;}
.x93{left:248.445000px;}
.xa3{left:260.310000px;}
.xe{left:267.510000px;}
.xa4{left:272.520000px;}
.x83{left:277.965000px;}
.x39{left:279.765000px;}
.x28{left:292.394987px;}
.x29{left:303.584987px;}
.x53{left:305.850000px;}
.x1b{left:307.875000px;}
.x6{left:344.415000px;}
.x5e{left:345.465000px;}
.x2e{left:346.632400px;}
.xf{left:357.555000px;}
.x27{left:359.129987px;}
.xa{left:370.335000px;}
.x5{left:375.015000px;}
.x6d{left:377.850000px;}
.x3b{left:385.965000px;}
.x38{left:387.255000px;}
.x33{left:389.932500px;}
.x84{left:393.165000px;}
.x34{left:396.075000px;}
.x1c{left:402.555000px;}
.x25{left:407.984987px;}
.x76{left:414.045000px;}
.x26{left:424.184987px;}
.x2a{left:426.029987px;}
.x94{left:435.855000px;}
.x2b{left:441.644987px;}
.x2{left:457.275000px;}
.x85{left:467.895000px;}
.x5f{left:477.255000px;}
.x2c{left:478.979987px;}
.x2d{left:481.499987px;}
.x3d{left:483.195000px;}
.x1d{left:489.360000px;}
.x58{left:492.375000px;}
.x82{left:505.155000px;}
.x30{left:510.045000px;}
.x5c{left:515.955000px;}
.x60{left:517.395000px;}
.x5a{left:519.735000px;}
.x77{left:529.275000px;}
.x98{left:533.775000px;}
.x70{left:543.855000px;}
.x86{left:544.935000px;}
.x62{left:560.595000px;}
.x7{left:563.122500px;}
.x8{left:569.985000px;}
.x3e{left:580.395000px;}
.x1e{left:584.040000px;}
.x78{left:594.975000px;}
.x4f{left:600.915000px;}
.xa6{left:621.000000px;}
.x5b{left:631.515000px;}
.x87{left:638.175000px;}
.x56{left:665.205000px;}
.x79{left:669.675000px;}
.x40{left:677.640000px;}
.x23{left:682.125000px;}
.x51{left:687.345000px;}
.x9c{left:694.155000px;}
.x63{left:710.220000px;}
.xd{left:713.130000px;}
.x88{left:716.340000px;}
.x9d{left:723.540000px;}
.x7a{left:743.880000px;}
.x95{left:753.060000px;}
.x41{left:765.840000px;}
.x90{left:767.640000px;}
.x91{left:798.780000px;}
.x7b{left:823.080000px;}
.x89{left:831.540000px;}
.x64{left:841.800000px;}
.x42{left:863.040000px;}
.x92{left:870.060000px;}
.x6f{left:871.305000px;}
.x59{left:872.745000px;}
.x50{left:876.165000px;}
.x96{left:879.240000px;}
.x65{left:882.120000px;}
.x7c{left:906.780000px;}
.x66{left:925.320000px;}
.x8d{left:927.465000px;}
.x97{left:940.440000px;}
.x43{left:960.270000px;}
.x7d{left:964.020000px;}
.x8a{left:989.040000px;}
.xa2{left:992.670000px;}
.x9e{left:998.250000px;}
.x99{left:1038.390000px;}
.x7e{left:1049.190000px;}
.x7f{left:1114.890000px;}
@media print{
.v4{vertical-align:-116.640000pt;}
.v3{vertical-align:-84.640000pt;}
.v2{vertical-align:-54.666667pt;}
.v1{vertical-align:-26.506667pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.445469pt;}
.ve{vertical-align:21.760000pt;}
.v7{vertical-align:24.320000pt;}
.vc{vertical-align:29.440000pt;}
.va{vertical-align:32.000000pt;}
.vb{vertical-align:34.560000pt;}
.v9{vertical-align:37.760000pt;}
.vd{vertical-align:64.000000pt;}
.v6{vertical-align:66.026667pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.725333pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.597333pt;}
.ls2e{letter-spacing:-0.570667pt;}
.ls19{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.368163pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.315733pt;}
.ls21{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.186667pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.091733pt;}
.ls27{letter-spacing:-0.085333pt;}
.ls2a{letter-spacing:-0.046080pt;}
.ls11{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls31{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.071467pt;}
.ls1f{letter-spacing:0.071680pt;}
.ls23{letter-spacing:0.093867pt;}
.ls28{letter-spacing:0.097067pt;}
.ls2c{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.132267pt;}
.ls3{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.227840pt;}
.ls33{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.243200pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.264533pt;}
.ls30{letter-spacing:0.265600pt;}
.ls2d{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.409067pt;}
.ls17{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:2.406400pt;}
.ls15{letter-spacing:3.994880pt;}
.ls20{letter-spacing:5.606400pt;}
.ls13{letter-spacing:18.112000pt;}
.ls6{letter-spacing:21.738667pt;}
.lsd{letter-spacing:928.656063pt;}
.ws1{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.ws2f{word-spacing:-16.704000pt;}
.ws1b{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.381948pt;}
.ws21{word-spacing:-16.256000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.032000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.168000pt;}
.ws2d{word-spacing:-14.991467pt;}
.ws28{word-spacing:-14.817067pt;}
.ws2c{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.448533pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws20{word-spacing:-13.600000pt;}
.ws3c{word-spacing:-13.545600pt;}
.ws3b{word-spacing:-13.312000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-12.960000pt;}
.ws2a{word-spacing:-12.907520pt;}
.ws1c{word-spacing:-12.894613pt;}
.ws30{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-10.558933pt;}
.ws10{word-spacing:-10.122667pt;}
.ws18{word-spacing:-9.810133pt;}
.ws2b{word-spacing:-9.565867pt;}
.ws13{word-spacing:-9.550843pt;}
.ws23{word-spacing:-9.527467pt;}
.ws25{word-spacing:-9.433600pt;}
.ws27{word-spacing:-9.348267pt;}
.ws24{word-spacing:-9.117867pt;}
.ws29{word-spacing:-8.708267pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:4.455040pt;}
.ws26{word-spacing:6.673280pt;}
.ws2e{word-spacing:7.304960pt;}
.ws38{word-spacing:49.390293pt;}
.ws40{word-spacing:56.910293pt;}
.ws39{word-spacing:64.423253pt;}
.ws41{word-spacing:71.943253pt;}
.ws37{word-spacing:83.682133pt;}
.ws6{word-spacing:84.960853pt;}
.ws7{word-spacing:97.494187pt;}
.ws42{word-spacing:98.666923pt;}
.ws3f{word-spacing:98.827947pt;}
.ws8{word-spacing:111.307520pt;}
.ws3d{word-spacing:113.512320pt;}
.ws9{word-spacing:126.240853pt;}
.wsa{word-spacing:130.400853pt;}
.wsb{word-spacing:143.840213pt;}
.wse{word-spacing:155.232000pt;}
.ws35{word-spacing:205.452373pt;}
.ws34{word-spacing:209.777387pt;}
.ws31{word-spacing:213.860907pt;}
.ws33{word-spacing:220.800533pt;}
.ws32{word-spacing:224.599040pt;}
.ws36{word-spacing:235.947733pt;}
.ws3e{word-spacing:243.467733pt;}
.ws3a{word-spacing:262.560853pt;}
.ws43{word-spacing:270.080853pt;}
.ws15{word-spacing:709.711931pt;}
.ws14{word-spacing:881.025179pt;}
._3f{margin-left:-858.213547pt;}
._38{margin-left:-379.716464pt;}
._33{margin-left:-374.398581pt;}
._31{margin-left:-351.380610pt;}
._2f{margin-left:-325.223694pt;}
._30{margin-left:-314.075549pt;}
._32{margin-left:-293.105380pt;}
._35{margin-left:-262.835627pt;}
._34{margin-left:-246.117428pt;}
._2d{margin-left:-240.851912pt;}
._36{margin-left:-231.521049pt;}
._2b{margin-left:-224.258660pt;}
._37{margin-left:-216.747869pt;}
._2e{margin-left:-202.749657pt;}
._2c{margin-left:-198.746534pt;}
._1f{margin-left:-4.608000pt;}
._1a{margin-left:-3.072000pt;}
._e{margin-left:-2.176000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._c{width:3.968000pt;}
._5{width:4.914773pt;}
._9{width:5.888000pt;}
._a{width:7.295147pt;}
._13{width:8.233600pt;}
._14{width:9.164160pt;}
._17{width:10.777600pt;}
._7{width:11.776000pt;}
._8{width:12.916053pt;}
._b{width:14.667947pt;}
._d{width:17.448107pt;}
._1b{width:18.735787pt;}
._1e{width:20.123307pt;}
._20{width:21.504000pt;}
._21{width:22.976000pt;}
._22{width:24.576000pt;}
._3e{width:25.756587pt;}
._41{width:26.688000pt;}
._18{width:27.690667pt;}
._19{width:28.664960pt;}
._16{width:30.111787pt;}
._15{width:31.712640pt;}
._12{width:32.704000pt;}
._11{width:33.792000pt;}
._10{width:34.752000pt;}
._f{width:35.684480pt;}
._23{width:36.735147pt;}
._3b{width:42.624000pt;}
._2a{width:48.490667pt;}
._46{width:52.288000pt;}
._47{width:54.019627pt;}
._4d{width:59.219627pt;}
._4e{width:60.412160pt;}
._25{width:63.936000pt;}
._26{width:64.920960pt;}
._24{width:66.410667pt;}
._3c{width:67.818667pt;}
._3d{width:68.924587pt;}
._42{width:84.544000pt;}
._43{width:85.550293pt;}
._1c{width:92.928000pt;}
._3a{width:100.458667pt;}
._29{width:102.229333pt;}
._27{width:103.402667pt;}
._28{width:104.400427pt;}
._4f{width:110.241920pt;}
._48{width:116.864000pt;}
._4c{width:121.666560pt;}
._50{width:123.735040pt;}
._51{width:130.026667pt;}
._1d{width:135.158400pt;}
._53{width:137.410347pt;}
._52{width:140.391253pt;}
._39{width:147.973760pt;}
._4a{width:170.431360pt;}
._49{width:194.387413pt;}
._4b{width:271.711360pt;}
._45{width:276.925867pt;}
._44{width:278.210133pt;}
._6{width:436.591787pt;}
._2{width:473.120000pt;}
._40{width:843.018667pt;}
._3{width:1353.935573pt;}
.fsd{font-size:34.560000pt;}
.fs7{font-size:36.429074pt;}
.fsa{font-size:38.203371pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fsb{font-size:65.527790pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y228{bottom:3.986667pt;}
.y234{bottom:3.992000pt;}
.y66{bottom:4.000000pt;}
.y100{bottom:4.079736pt;}
.y223{bottom:4.786667pt;}
.y296{bottom:4.792000pt;}
.y68{bottom:4.800000pt;}
.y6f{bottom:4.826667pt;}
.y209{bottom:5.266667pt;}
.y20b{bottom:5.280000pt;}
.y207{bottom:5.306667pt;}
.y205{bottom:5.440000pt;}
.y1c3{bottom:5.746667pt;}
.y1c7{bottom:5.752000pt;}
.y1ac{bottom:5.760000pt;}
.y1ae{bottom:5.800000pt;}
.y1b0{bottom:5.906667pt;}
.y1c0{bottom:5.920000pt;}
.y1db{bottom:6.880000pt;}
.y1b5{bottom:7.186667pt;}
.y1cc{bottom:7.360000pt;}
.y28b{bottom:7.840000pt;}
.y1d4{bottom:8.160000pt;}
.y1bc{bottom:8.800000pt;}
.y249{bottom:9.760000pt;}
.y1aa{bottom:12.000000pt;}
.y2d3{bottom:12.293333pt;}
.y231{bottom:13.106667pt;}
.y233{bottom:13.112000pt;}
.y21e{bottom:13.120000pt;}
.y253{bottom:13.146667pt;}
.y226{bottom:13.266667pt;}
.y224{bottom:13.280000pt;}
.y27a{bottom:13.440000pt;}
.y29a{bottom:13.600000pt;}
.ya2{bottom:15.173333pt;}
.y101{bottom:15.528951pt;}
.y1a8{bottom:17.280000pt;}
.y247{bottom:18.880000pt;}
.y227{bottom:22.386667pt;}
.y21f{bottom:22.400000pt;}
.y22b{bottom:22.426667pt;}
.y277{bottom:22.720000pt;}
.y293{bottom:25.426667pt;}
.y290{bottom:25.440000pt;}
.y2b5{bottom:25.600000pt;}
.y286{bottom:26.426667pt;}
.y282{bottom:27.346667pt;}
.y27e{bottom:27.506667pt;}
.y248{bottom:28.160000pt;}
.y289{bottom:28.960000pt;}
.y2d2{bottom:31.546667pt;}
.ya1{bottom:31.653333pt;}
.y279{bottom:31.840000pt;}
.y53{bottom:31.933333pt;}
.y299{bottom:32.000000pt;}
.y276{bottom:41.120000pt;}
.y278{bottom:50.240000pt;}
.y298{bottom:50.400000pt;}
.y2d1{bottom:50.813333pt;}
.y52{bottom:51.200000pt;}
.y2e6{bottom:51.226667pt;}
.y7{bottom:52.032000pt;}
.y2af{bottom:56.506667pt;}
.ya0{bottom:66.493333pt;}
.y28e{bottom:66.906667pt;}
.y51{bottom:67.906667pt;}
.y6{bottom:69.952000pt;}
.y2d0{bottom:70.080000pt;}
.y2e5{bottom:70.533333pt;}
.y2cf{bottom:88.773333pt;}
.y2e4{bottom:89.786667pt;}
.y2d4{bottom:98.146667pt;}
.y9f{bottom:101.413333pt;}
.y1c6{bottom:107.080000pt;}
.y2e3{bottom:109.053333pt;}
.y1e3{bottom:114.600000pt;}
.y2c{bottom:116.512000pt;}
.y232{bottom:116.520000pt;}
.y9e{bottom:117.920000pt;}
.y81{bottom:118.432000pt;}
.y50{bottom:118.466667pt;}
.y2a1{bottom:118.586667pt;}
.y2cd{bottom:118.752000pt;}
.y157{bottom:121.952000pt;}
.y21b{bottom:122.432000pt;}
.y275{bottom:123.392000pt;}
.yea{bottom:123.552000pt;}
.y13c{bottom:125.792000pt;}
.y28d{bottom:126.600000pt;}
.ybe{bottom:126.752000pt;}
.y27c{bottom:126.906667pt;}
.y2e2{bottom:127.746667pt;}
.y1c5{bottom:129.800000pt;}
.y2ae{bottom:129.960000pt;}
.y197{bottom:131.392000pt;}
.y2b{bottom:131.872000pt;}
.y2b9{bottom:132.032000pt;}
.y2d5{bottom:134.146667pt;}
.y127{bottom:134.426667pt;}
.y10c{bottom:134.746667pt;}
.y48{bottom:135.546667pt;}
.y2ca{bottom:135.866667pt;}
.y25c{bottom:136.666667pt;}
.y80{bottom:136.826667pt;}
.y2e7{bottom:137.093333pt;}
.y1e2{bottom:137.160000pt;}
.y4a{bottom:138.720000pt;}
.y156{bottom:140.346667pt;}
.ye9{bottom:141.946667pt;}
.yc8{bottom:144.186667pt;}
.y9d{bottom:144.546667pt;}
.ybd{bottom:145.146667pt;}
.y2a{bottom:147.226667pt;}
.y292{bottom:147.400000pt;}
.y2b8{bottom:148.986667pt;}
.y2cc{bottom:149.466667pt;}
.y196{bottom:149.786667pt;}
.y2ce{bottom:150.560000pt;}
.y2b4{bottom:150.600000pt;}
.y274{bottom:150.906667pt;}
.y187{bottom:151.866667pt;}
.y1c4{bottom:152.360000pt;}
.y126{bottom:152.826667pt;}
.y47{bottom:153.946667pt;}
.y230{bottom:153.960000pt;}
.y245{bottom:155.066667pt;}
.y21a{bottom:156.826667pt;}
.y16b{bottom:157.146667pt;}
.y155{bottom:158.746667pt;}
.y1e1{bottom:159.880000pt;}
.ye8{bottom:160.346667pt;}
.y9c{bottom:161.026667pt;}
.y4b{bottom:162.106667pt;}
.y29{bottom:162.586667pt;}
.y98{bottom:163.386667pt;}
.ybc{bottom:163.546667pt;}
.y25b{bottom:164.346667pt;}
.y10b{bottom:165.466667pt;}
.y2b7{bottom:165.786667pt;}
.y28{bottom:167.226667pt;}
.y295{bottom:168.040000pt;}
.y2d6{bottom:170.146667pt;}
.y186{bottom:170.266667pt;}
.y7f{bottom:171.226667pt;}
.y2b3{bottom:171.240000pt;}
.y46{bottom:172.346667pt;}
.y2e8{bottom:172.826667pt;}
.y10a{bottom:173.466667pt;}
.y1c2{bottom:175.080000pt;}
.y16a{bottom:175.546667pt;}
.y154{bottom:177.146667pt;}
.y13b{bottom:178.266667pt;}
.y27{bottom:178.746667pt;}
.y2e0{bottom:180.026667pt;}
.y2f2{bottom:180.346667pt;}
.yc7{bottom:180.986667pt;}
.y97{bottom:181.786667pt;}
.ybb{bottom:181.946667pt;}
.y1e0{bottom:182.600000pt;}
.y2b6{bottom:182.746667pt;}
.y13a{bottom:182.906667pt;}
.y195{bottom:184.186667pt;}
.y4c{bottom:185.946667pt;}
.y1a1{bottom:186.586667pt;}
.y9b{bottom:187.680000pt;}
.y244{bottom:187.906667pt;}
.y294{bottom:188.706667pt;}
.y7e{bottom:189.626667pt;}
.y45{bottom:190.746667pt;}
.y219{bottom:191.426667pt;}
.y273{bottom:191.586667pt;}
.y25a{bottom:191.906667pt;}
.y2b0{bottom:192.066667pt;}
.y139{bottom:194.906667pt;}
.y153{bottom:195.546667pt;}
.ye7{bottom:197.146667pt;}
.y1c1{bottom:197.826667pt;}
.yc6{bottom:199.386667pt;}
.y96{bottom:200.186667pt;}
.yba{bottom:200.346667pt;}
.y194{bottom:202.586667pt;}
.y2f1{bottom:202.973333pt;}
.y9a{bottom:204.160000pt;}
.y26{bottom:204.666667pt;}
.y2c9{bottom:204.706667pt;}
.y1a0{bottom:204.986667pt;}
.y1df{bottom:205.186667pt;}
.y2d7{bottom:206.146667pt;}
.y7d{bottom:208.026667pt;}
.y272{bottom:208.546667pt;}
.y44{bottom:209.146667pt;}
.y28f{bottom:209.346667pt;}
.y169{bottom:209.946667pt;}
.y4d{bottom:210.306667pt;}
.y2df{bottom:210.626667pt;}
.y2e1{bottom:211.680000pt;}
.y22f{bottom:212.066667pt;}
.y109{bottom:212.346667pt;}
.y2b2{bottom:212.706667pt;}
.y152{bottom:213.946667pt;}
.y138{bottom:215.386667pt;}
.ye6{bottom:215.546667pt;}
.yc5{bottom:217.786667pt;}
.y95{bottom:218.586667pt;}
.yb9{bottom:218.746667pt;}
.y259{bottom:219.586667pt;}
.y1bf{bottom:220.386667pt;}
.y243{bottom:220.706667pt;}
.y185{bottom:223.066667pt;}
.y19f{bottom:223.386667pt;}
.y271{bottom:225.346667pt;}
.y2f0{bottom:225.600000pt;}
.y218{bottom:225.986667pt;}
.y7c{bottom:226.426667pt;}
.y1de{bottom:227.906667pt;}
.y168{bottom:228.346667pt;}
.y291{bottom:229.986667pt;}
.y151{bottom:232.346667pt;}
.y2b1{bottom:233.346667pt;}
.y137{bottom:233.786667pt;}
.y4e{bottom:235.133333pt;}
.yc4{bottom:236.186667pt;}
.y94{bottom:236.986667pt;}
.yb8{bottom:237.146667pt;}
.y2c8{bottom:239.106667pt;}
.y25{bottom:240.506667pt;}
.y184{bottom:241.466667pt;}
.y2d8{bottom:242.146667pt;}
.y270{bottom:242.306667pt;}
.y1be{bottom:243.106667pt;}
.y43{bottom:243.426667pt;}
.y2e9{bottom:244.253333pt;}
.y7b{bottom:244.866667pt;}
.y1fb{bottom:245.026667pt;}
.y217{bottom:246.626667pt;}
.y108{bottom:246.786667pt;}
.y2ef{bottom:248.226667pt;}
.y22e{bottom:249.506667pt;}
.ye5{bottom:249.826667pt;}
.y1dd{bottom:250.626667pt;}
.y150{bottom:250.786667pt;}
.y258{bottom:250.946667pt;}
.y136{bottom:252.226667pt;}
.y242{bottom:253.346667pt;}
.y2a0{bottom:253.986667pt;}
.yc3{bottom:254.626667pt;}
.y93{bottom:255.426667pt;}
.y19e{bottom:257.826667pt;}
.y26f{bottom:259.106667pt;}
.y4f{bottom:260.480000pt;}
.y42{bottom:261.826667pt;}
.y216{bottom:262.626667pt;}
.y7a{bottom:263.266667pt;}
.y257{bottom:264.546667pt;}
.y167{bottom:265.186667pt;}
.y1bd{bottom:265.826667pt;}
.y14f{bottom:269.186667pt;}
.y215{bottom:269.986667pt;}
.y135{bottom:270.626667pt;}
.yb7{bottom:271.266667pt;}
.y27b{bottom:271.426667pt;}
.y256{bottom:271.906667pt;}
.yc2{bottom:273.026667pt;}
.y1dc{bottom:273.186667pt;}
.y2c7{bottom:273.506667pt;}
.y92{bottom:273.826667pt;}
.y2ad{bottom:274.626667pt;}
.y1fa{bottom:275.266667pt;}
.y183{bottom:275.906667pt;}
.y24{bottom:276.066667pt;}
.y2d9{bottom:278.173333pt;}
.y2ea{bottom:279.973333pt;}
.y107{bottom:281.186667pt;}
.y79{bottom:281.666667pt;}
.ye4{bottom:285.986667pt;}
.y241{bottom:286.146667pt;}
.y22d{bottom:287.106667pt;}
.y14e{bottom:287.586667pt;}
.y1bb{bottom:288.386667pt;}
.y134{bottom:289.026667pt;}
.y1f9{bottom:289.506667pt;}
.y193{bottom:289.826667pt;}
.y255{bottom:289.986667pt;}
.y214{bottom:290.626667pt;}
.y23{bottom:291.426667pt;}
.y28c{bottom:292.066667pt;}
.y41{bottom:292.226667pt;}
.y49{bottom:292.480000pt;}
.y26e{bottom:292.866667pt;}
.y182{bottom:294.306667pt;}
.y2ac{bottom:295.266667pt;}
.y1da{bottom:295.906667pt;}
.y1f8{bottom:296.866667pt;}
.y254{bottom:297.346667pt;}
.y213{bottom:297.986667pt;}
.y166{bottom:299.586667pt;}
.y78{bottom:300.066667pt;}
.ye3{bottom:304.386667pt;}
.y14d{bottom:305.986667pt;}
.y22{bottom:306.786667pt;}
.yb6{bottom:307.426667pt;}
.y22c{bottom:307.746667pt;}
.y2c6{bottom:307.906667pt;}
.y192{bottom:308.226667pt;}
.y26d{bottom:309.666667pt;}
.yc1{bottom:309.826667pt;}
.y91{bottom:310.626667pt;}
.y28a{bottom:313.666667pt;}
.y2da{bottom:314.173333pt;}
.y1f7{bottom:314.946667pt;}
.y106{bottom:315.586667pt;}
.y2eb{bottom:315.680000pt;}
.y2a9{bottom:316.066667pt;}
.y1ba{bottom:317.186667pt;}
.y165{bottom:317.986667pt;}
.y77{bottom:318.466667pt;}
.y212{bottom:318.626667pt;}
.y240{bottom:318.786667pt;}
.y1d9{bottom:320.546667pt;}
.y1f6{bottom:322.306667pt;}
.y14c{bottom:324.386667pt;}
.yb5{bottom:325.826667pt;}
.y211{bottom:325.986667pt;}
.y26c{bottom:326.626667pt;}
.yc0{bottom:328.226667pt;}
.y181{bottom:328.706667pt;}
.y90{bottom:329.026667pt;}
.y164{bottom:336.386667pt;}
.y2ab{bottom:336.706667pt;}
.y125{bottom:336.866667pt;}
.y21{bottom:338.786667pt;}
.y1b9{bottom:339.746667pt;}
.y285{bottom:340.386667pt;}
.y1f5{bottom:340.866667pt;}
.y2c5{bottom:342.306667pt;}
.y191{bottom:342.626667pt;}
.y14b{bottom:342.786667pt;}
.y1d8{bottom:343.266667pt;}
.yb4{bottom:344.226667pt;}
.y19d{bottom:345.026667pt;}
.y22a{bottom:345.186667pt;}
.y180{bottom:347.106667pt;}
.y8f{bottom:347.426667pt;}
.y1f4{bottom:348.226667pt;}
.y252{bottom:348.706667pt;}
.y105{bottom:349.986667pt;}
.y2db{bottom:350.173333pt;}
.y2ec{bottom:351.426667pt;}
.y23f{bottom:351.586667pt;}
.y76{bottom:352.866667pt;}
.y26b{bottom:356.546667pt;}
.y20{bottom:357.026667pt;}
.ye2{bottom:357.186667pt;}
.y2aa{bottom:357.346667pt;}
.y190{bottom:361.026667pt;}
.y14a{bottom:361.186667pt;}
.y288{bottom:362.013333pt;}
.y1b8{bottom:362.466667pt;}
.yb3{bottom:362.626667pt;}
.y19c{bottom:363.426667pt;}
.y17f{bottom:365.506667pt;}
.y1d7{bottom:365.986667pt;}
.y75{bottom:367.906667pt;}
.y104{bottom:368.386667pt;}
.y210{bottom:369.373333pt;}
.y1f3{bottom:369.986667pt;}
.y163{bottom:370.786667pt;}
.y124{bottom:371.266667pt;}
.y2c4{bottom:376.733333pt;}
.y26a{bottom:377.226667pt;}
.y2a6{bottom:378.013333pt;}
.y18f{bottom:379.426667pt;}
.y149{bottom:379.586667pt;}
.yb2{bottom:381.026667pt;}
.y8e{bottom:381.826667pt;}
.y229{bottom:382.666667pt;}
.y1f2{bottom:383.453333pt;}
.y287{bottom:383.773333pt;}
.y23e{bottom:384.253333pt;}
.y1b7{bottom:385.213333pt;}
.y2dc{bottom:386.173333pt;}
.y251{bottom:386.186667pt;}
.y2ed{bottom:387.133333pt;}
.y1d6{bottom:388.586667pt;}
.y74{bottom:388.706667pt;}
.y20f{bottom:388.893333pt;}
.y162{bottom:389.186667pt;}
.y123{bottom:389.666667pt;}
.y1f1{bottom:390.813333pt;}
.ye1{bottom:391.586667pt;}
.y1f{bottom:393.026667pt;}
.y19b{bottom:397.826667pt;}
.y269{bottom:397.853333pt;}
.y148{bottom:397.986667pt;}
.y2a8{bottom:398.666667pt;}
.yb1{bottom:399.426667pt;}
.y17e{bottom:399.906667pt;}
.y103{bottom:402.786667pt;}
.y225{bottom:403.306667pt;}
.y281{bottom:404.426667pt;}
.y161{bottom:407.586667pt;}
.y1b6{bottom:407.773333pt;}
.y122{bottom:408.066667pt;}
.y73{bottom:409.346667pt;}
.ye0{bottom:409.986667pt;}
.y2c3{bottom:411.133333pt;}
.y1d5{bottom:411.293333pt;}
.y1e{bottom:411.426667pt;}
.y1f0{bottom:411.613333pt;}
.y8d{bottom:412.226667pt;}
.y99{bottom:412.320000pt;}
.y18e{bottom:413.826667pt;}
.y19a{bottom:416.226667pt;}
.y147{bottom:416.386667pt;}
.y23d{bottom:417.053333pt;}
.yb0{bottom:417.826667pt;}
.y17d{bottom:418.306667pt;}
.y268{bottom:418.506667pt;}
.y20e{bottom:418.813333pt;}
.y1ef{bottom:418.973333pt;}
.y2a7{bottom:419.306667pt;}
.y2dd{bottom:422.213333pt;}
.y2ee{bottom:422.853333pt;}
.y121{bottom:426.466667pt;}
.y284{bottom:426.973333pt;}
.y250{bottom:429.546667pt;}
.y1d{bottom:429.826667pt;}
.y72{bottom:429.986667pt;}
.y1b4{bottom:430.506667pt;}
.y23c{bottom:430.973333pt;}
.y18d{bottom:432.226667pt;}
.y133{bottom:433.826667pt;}
.y1d3{bottom:434.013333pt;}
.y199{bottom:434.626667pt;}
.y146{bottom:434.786667pt;}
.yaf{bottom:436.226667pt;}
.y102{bottom:437.186667pt;}
.y267{bottom:439.293333pt;}
.y2a2{bottom:440.093333pt;}
.y2a5{bottom:440.106667pt;}
.y1ee{bottom:440.733333pt;}
.y20d{bottom:441.386667pt;}
.y160{bottom:441.986667pt;}
.ydf{bottom:444.386667pt;}
.y120{bottom:444.866667pt;}
.y2c2{bottom:445.533333pt;}
.y1c{bottom:448.226667pt;}
.y283{bottom:448.733333pt;}
.y71{bottom:450.626667pt;}
.y24f{bottom:451.146667pt;}
.y23b{bottom:451.626667pt;}
.y132{bottom:452.226667pt;}
.y17c{bottom:452.706667pt;}
.y145{bottom:453.186667pt;}
.y1ed{bottom:454.173333pt;}
.yae{bottom:454.626667pt;}
.y1b3{bottom:456.106667pt;}
.y2de{bottom:458.213333pt;}
.y266{bottom:459.946667pt;}
.y15f{bottom:460.386667pt;}
.y2a4{bottom:460.733333pt;}
.y1ec{bottom:461.533333pt;}
.y1d2{bottom:461.546667pt;}
.yde{bottom:462.786667pt;}
.y20c{bottom:463.146667pt;}
.y11f{bottom:463.266667pt;}
.y1b{bottom:466.626667pt;}
.y18c{bottom:469.026667pt;}
.y27d{bottom:470.346667pt;}
.y131{bottom:470.626667pt;}
.y17b{bottom:470.946667pt;}
.y70{bottom:471.266667pt;}
.yff{bottom:471.413333pt;}
.yfe{bottom:471.426667pt;}
.y144{bottom:471.586667pt;}
.yad{bottom:473.026667pt;}
.y222{bottom:478.186667pt;}
.y15e{bottom:478.786667pt;}
.y1b2{bottom:478.813333pt;}
.y1eb{bottom:479.933333pt;}
.y265{bottom:480.586667pt;}
.ydd{bottom:481.186667pt;}
.y2a3{bottom:481.386667pt;}
.y11e{bottom:481.666667pt;}
.y1d1{bottom:484.266667pt;}
.y20a{bottom:484.733333pt;}
.y1a{bottom:485.026667pt;}
.y1ea{bottom:487.293333pt;}
.y198{bottom:487.426667pt;}
.y24e{bottom:488.586667pt;}
.y130{bottom:489.026667pt;}
.y23a{bottom:489.066667pt;}
.y17a{bottom:489.826667pt;}
.y143{bottom:489.986667pt;}
.yac{bottom:491.426667pt;}
.y6e{bottom:491.906667pt;}
.y280{bottom:492.093333pt;}
.y221{bottom:498.973333pt;}
.ydc{bottom:499.453333pt;}
.y11d{bottom:500.093333pt;}
.y264{bottom:501.213333pt;}
.y1b1{bottom:501.533333pt;}
.y29c{bottom:502.013333pt;}
.y29f{bottom:502.026667pt;}
.y19{bottom:503.453333pt;}
.y1e9{bottom:505.373333pt;}
.y208{bottom:506.506667pt;}
.y1d0{bottom:506.973333pt;}
.y12f{bottom:507.453333pt;}
.y142{bottom:508.413333pt;}
.yab{bottom:509.853333pt;}
.y24d{bottom:510.346667pt;}
.y6d{bottom:512.733333pt;}
.y15d{bottom:513.213333pt;}
.y27f{bottom:513.693333pt;}
.y2c1{bottom:514.333333pt;}
.yfd{bottom:517.053333pt;}
.ydb{bottom:517.853333pt;}
.y18{bottom:521.853333pt;}
.y263{bottom:521.866667pt;}
.y29e{bottom:522.666667pt;}
.y1af{bottom:524.106667pt;}
.y179{bottom:524.253333pt;}
.y12e{bottom:525.853333pt;}
.y239{bottom:526.506667pt;}
.y141{bottom:526.813333pt;}
.y206{bottom:528.106667pt;}
.yaa{bottom:528.253333pt;}
.y1cf{bottom:529.533333pt;}
.y1e8{bottom:530.653333pt;}
.y15c{bottom:531.453333pt;}
.y24c{bottom:531.946667pt;}
.y6c{bottom:533.373333pt;}
.y11c{bottom:534.333333pt;}
.yfc{bottom:535.453333pt;}
.yda{bottom:536.253333pt;}
.y220{bottom:536.453333pt;}
.y1e7{bottom:538.013333pt;}
.y17{bottom:540.253333pt;}
.y262{bottom:542.533333pt;}
.y178{bottom:542.653333pt;}
.y29d{bottom:543.333333pt;}
.y12d{bottom:544.253333pt;}
.y140{bottom:545.213333pt;}
.ya9{bottom:546.653333pt;}
.y1ad{bottom:546.813333pt;}
.y238{bottom:547.333333pt;}
.y2c0{bottom:548.773333pt;}
.y204{bottom:549.733333pt;}
.y1ce{bottom:552.293333pt;}
.y24b{bottom:553.573333pt;}
.yfb{bottom:553.853333pt;}
.y6b{bottom:554.013333pt;}
.yd9{bottom:554.653333pt;}
.y16{bottom:558.653333pt;}
.y1e6{bottom:559.653333pt;}
.y12c{bottom:562.653333pt;}
.y261{bottom:563.333333pt;}
.y13f{bottom:563.453333pt;}
.y29b{bottom:564.133333pt;}
.ya8{bottom:565.053333pt;}
.y15b{bottom:565.853333pt;}
.y1ab{bottom:569.573333pt;}
.y11b{bottom:570.493333pt;}
.y203{bottom:571.493333pt;}
.yfa{bottom:572.253333pt;}
.yd8{bottom:573.053333pt;}
.y21d{bottom:573.893333pt;}
.y6a{bottom:574.653333pt;}
.y1cd{bottom:575.013333pt;}
.y24a{bottom:575.333333pt;}
.y1e5{bottom:576.453333pt;}
.y15{bottom:577.053333pt;}
.y12b{bottom:581.053333pt;}
.y13e{bottom:581.853333pt;}
.y2bf{bottom:582.693333pt;}
.ya7{bottom:583.453333pt;}
.y260{bottom:583.973333pt;}
.y15a{bottom:584.253333pt;}
.y237{bottom:584.773333pt;}
.y11a{bottom:588.893333pt;}
.yf9{bottom:590.653333pt;}
.y1a9{bottom:592.133333pt;}
.y18b{bottom:593.053333pt;}
.y1e4{bottom:593.413333pt;}
.y202{bottom:594.213333pt;}
.y69{bottom:595.293333pt;}
.y14{bottom:595.453333pt;}
.y246{bottom:596.933333pt;}
.y1cb{bottom:597.573333pt;}
.y129{bottom:599.453333pt;}
.y2be{bottom:599.653333pt;}
.y40{bottom:600.253333pt;}
.ya6{bottom:601.853333pt;}
.y25f{bottom:604.613333pt;}
.y297{bottom:605.413333pt;}
.y12a{bottom:605.533333pt;}
.y119{bottom:607.293333pt;}
.yd7{bottom:607.453333pt;}
.yf8{bottom:609.053333pt;}
.y18a{bottom:611.453333pt;}
.y67{bottom:615.933333pt;}
.y2bd{bottom:616.453333pt;}
.y128{bottom:617.853333pt;}
.y3f{bottom:618.653333pt;}
.ya5{bottom:620.253333pt;}
.y236{bottom:622.213333pt;}
.y1ca{bottom:623.333333pt;}
.y25e{bottom:625.253333pt;}
.y118{bottom:625.693333pt;}
.yd6{bottom:625.853333pt;}
.y1a7{bottom:627.173333pt;}
.yf7{bottom:627.453333pt;}
.y13{bottom:629.533333pt;}
.y177{bottom:629.853333pt;}
.y21c{bottom:631.333333pt;}
.y2cb{bottom:631.493333pt;}
.y2bc{bottom:633.253333pt;}
.y201{bottom:634.053333pt;}
.ybf{bottom:636.253333pt;}
.y65{bottom:636.733333pt;}
.y3e{bottom:637.053333pt;}
.y235{bottom:642.853333pt;}
.y117{bottom:644.093333pt;}
.yf6{bottom:645.853333pt;}
.y1c9{bottom:646.053333pt;}
.y176{bottom:648.253333pt;}
.y2bb{bottom:650.213333pt;}
.y8c{bottom:652.253333pt;}
.ya4{bottom:654.653333pt;}
.y3d{bottom:655.453333pt;}
.yd5{bottom:660.253333pt;}
.y116{bottom:662.493333pt;}
.yf5{bottom:664.253333pt;}
.y12{bottom:665.533333pt;}
.y200{bottom:665.733333pt;}
.y25d{bottom:665.893333pt;}
.y64{bottom:666.333333pt;}
.y2ba{bottom:667.013333pt;}
.y1c8{bottom:668.613333pt;}
.y8b{bottom:670.653333pt;}
.ya3{bottom:673.053333pt;}
.y3c{bottom:673.853333pt;}
.yd4{bottom:678.653333pt;}
.y115{bottom:680.893333pt;}
.y175{bottom:682.653333pt;}
.y1ff{bottom:687.813333pt;}
.y8a{bottom:689.053333pt;}
.y63{bottom:691.453333pt;}
.y159{bottom:692.253333pt;}
.y1a6{bottom:694.373333pt;}
.yf4{bottom:698.653333pt;}
.y114{bottom:699.293333pt;}
.y174{bottom:701.053333pt;}
.y11{bottom:702.013333pt;}
.y1fe{bottom:703.013333pt;}
.y89{bottom:707.453333pt;}
.y13d{bottom:708.093333pt;}
.y3b{bottom:708.253333pt;}
.y62{bottom:709.853333pt;}
.y1a5{bottom:710.053333pt;}
.yd3{bottom:713.053333pt;}
.yf3{bottom:717.053333pt;}
.y1fd{bottom:718.400000pt;}
.y10{bottom:722.173333pt;}
.y1a4{bottom:725.253333pt;}
.y88{bottom:725.853333pt;}
.y158{bottom:726.493333pt;}
.y3a{bottom:726.653333pt;}
.y61{bottom:728.253333pt;}
.yd2{bottom:731.453333pt;}
.y113{bottom:733.693333pt;}
.y1fc{bottom:733.760000pt;}
.y173{bottom:735.453333pt;}
.y1a3{bottom:740.640000pt;}
.y87{bottom:744.253333pt;}
.y39{bottom:745.053333pt;}
.y60{bottom:746.693333pt;}
.yf2{bottom:751.493333pt;}
.y172{bottom:753.893333pt;}
.y1a2{bottom:756.000000pt;}
.yf{bottom:759.333333pt;}
.y86{bottom:762.693333pt;}
.y38{bottom:763.493333pt;}
.y5f{bottom:765.093333pt;}
.yd1{bottom:765.893333pt;}
.y112{bottom:768.133333pt;}
.yf1{bottom:769.893333pt;}
.y171{bottom:772.293333pt;}
.yd{bottom:779.653333pt;}
.y85{bottom:781.093333pt;}
.y37{bottom:781.893333pt;}
.y5e{bottom:783.493333pt;}
.yd0{bottom:784.293333pt;}
.ye{bottom:786.373333pt;}
.y189{bottom:788.293333pt;}
.y84{bottom:799.493333pt;}
.y36{bottom:800.293333pt;}
.y5d{bottom:801.893333pt;}
.y111{bottom:802.533333pt;}
.ycf{bottom:802.693333pt;}
.yf0{bottom:804.293333pt;}
.y170{bottom:806.693333pt;}
.y83{bottom:817.893333pt;}
.yc{bottom:818.373333pt;}
.y35{bottom:818.693333pt;}
.y5c{bottom:820.293333pt;}
.yce{bottom:821.093333pt;}
.yef{bottom:822.693333pt;}
.y16f{bottom:825.093333pt;}
.y82{bottom:836.293333pt;}
.y110{bottom:836.933333pt;}
.y34{bottom:837.093333pt;}
.ycd{bottom:839.493333pt;}
.y188{bottom:841.093333pt;}
.y5b{bottom:854.693333pt;}
.y33{bottom:855.493333pt;}
.yee{bottom:857.093333pt;}
.ycc{bottom:857.893333pt;}
.y16e{bottom:859.493333pt;}
.yb{bottom:865.093333pt;}
.y10f{bottom:867.493333pt;}
.y5a{bottom:873.093333pt;}
.y32{bottom:873.893333pt;}
.yed{bottom:875.493333pt;}
.ycb{bottom:876.293333pt;}
.y16d{bottom:877.893333pt;}
.y59{bottom:891.493333pt;}
.y31{bottom:892.293333pt;}
.yec{bottom:893.893333pt;}
.yca{bottom:894.693333pt;}
.ya{bottom:895.813333pt;}
.y58{bottom:909.893333pt;}
.y30{bottom:910.693333pt;}
.yeb{bottom:912.293333pt;}
.y10e{bottom:914.693333pt;}
.y9{bottom:926.373333pt;}
.y57{bottom:928.293333pt;}
.yc9{bottom:928.933333pt;}
.y2f{bottom:929.093333pt;}
.y16c{bottom:930.693333pt;}
.y56{bottom:946.693333pt;}
.y2e{bottom:947.493333pt;}
.y10d{bottom:949.093333pt;}
.y55{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y2d{bottom:981.733333pt;}
.y54{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h11{height:18.400000pt;}
.h14{height:19.986667pt;}
.h57{height:19.992000pt;}
.h12{height:20.000000pt;}
.h47{height:20.018667pt;}
.h13{height:20.026667pt;}
.h49{height:20.032000pt;}
.h3f{height:20.946667pt;}
.h40{height:20.960000pt;}
.h3e{height:20.978667pt;}
.h51{height:20.992000pt;}
.h3d{height:21.106667pt;}
.h4f{height:21.120000pt;}
.h26{height:21.906667pt;}
.h2f{height:21.912000pt;}
.h29{height:21.920000pt;}
.h36{height:21.938667pt;}
.h27{height:21.940000pt;}
.h34{height:21.946667pt;}
.h2c{height:21.952000pt;}
.h28{height:22.066667pt;}
.h30{height:22.072000pt;}
.h2b{height:22.080000pt;}
.h2e{height:22.098667pt;}
.h32{height:22.100000pt;}
.h35{height:23.986667pt;}
.h20{height:24.840000pt;}
.h2a{height:24.946667pt;}
.h31{height:25.106667pt;}
.hd{height:25.294016pt;}
.h1a{height:25.933438pt;}
.h53{height:26.080000pt;}
.h33{height:26.880000pt;}
.h2d{height:27.986667pt;}
.h1f{height:29.773125pt;}
.h8{height:33.328125pt;}
.h25{height:34.386667pt;}
.h41{height:36.786667pt;}
.h46{height:36.792000pt;}
.h43{height:36.800000pt;}
.h45{height:36.818667pt;}
.h42{height:36.820000pt;}
.h44{height:36.826667pt;}
.h1b{height:37.475865pt;}
.h4{height:40.163750pt;}
.h4a{height:42.084375pt;}
.h24{height:47.826667pt;}
.h48{height:48.306667pt;}
.he{height:52.108438pt;}
.h2{height:52.134375pt;}
.h61{height:52.260000pt;}
.h3{height:53.535000pt;}
.h10{height:56.156250pt;}
.h37{height:57.787500pt;}
.h5d{height:61.266667pt;}
.h55{height:61.280000pt;}
.h56{height:61.298667pt;}
.h59{height:61.300000pt;}
.h5c{height:61.306667pt;}
.h5f{height:61.426667pt;}
.h21{height:62.781250pt;}
.hc{height:62.812500pt;}
.h16{height:62.938125pt;}
.h50{height:63.392000pt;}
.h38{height:65.254375pt;}
.h4e{height:65.266667pt;}
.h4d{height:65.458667pt;}
.h58{height:66.383042pt;}
.h22{height:66.383437pt;}
.h18{height:66.404375pt;}
.h19{height:66.511042pt;}
.h5a{height:66.564375pt;}
.h52{height:68.320000pt;}
.hb{height:69.660000pt;}
.h1d{height:70.286875pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h4b{height:74.226667pt;}
.h9{height:75.465000pt;}
.h1c{height:80.757411pt;}
.h3a{height:87.227500pt;}
.h39{height:94.694375pt;}
.h1e{height:94.812500pt;}
.h5{height:107.715000pt;}
.h5e{height:123.380000pt;}
.h17{height:128.964792pt;}
.h54{height:144.018667pt;}
.h15{height:236.000000pt;}
.h5b{height:247.386667pt;}
.h4c{height:264.386667pt;}
.hf{height:288.000000pt;}
.h62{height:436.960000pt;}
.h60{height:476.960000pt;}
.h3b{height:793.760000pt;}
.h3c{height:794.000000pt;}
.h23{height:816.000000pt;}
.h7{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4b{width:25.426667pt;}
.w4a{width:25.472000pt;}
.w48{width:25.746667pt;}
.w39{width:27.026667pt;}
.w19{width:35.040000pt;}
.w1e{width:35.186667pt;}
.w1f{width:37.746667pt;}
.w1a{width:37.760000pt;}
.w2a{width:50.226667pt;}
.w47{width:53.152000pt;}
.w41{width:53.746667pt;}
.w3e{width:53.778667pt;}
.w49{width:55.520000pt;}
.w2c{width:57.746667pt;}
.w25{width:57.760000pt;}
.w20{width:62.578667pt;}
.w3a{width:62.706667pt;}
.w1b{width:62.720000pt;}
.w27{width:65.312000pt;}
.w2d{width:65.426667pt;}
.w34{width:65.746667pt;}
.w26{width:65.760000pt;}
.w30{width:65.778667pt;}
.w31{width:67.840000pt;}
.w17{width:68.786667pt;}
.w33{width:68.832000pt;}
.w1c{width:68.992000pt;}
.w28{width:69.746667pt;}
.w21{width:71.232000pt;}
.w22{width:72.306667pt;}
.w35{width:72.786667pt;}
.w29{width:73.746667pt;}
.w2b{width:75.058667pt;}
.w6{width:76.480000pt;}
.w12{width:77.746667pt;}
.w36{width:82.098667pt;}
.w32{width:82.240000pt;}
.w7{width:83.506667pt;}
.w5{width:83.520000pt;}
.w2e{width:84.946667pt;}
.w46{width:85.586667pt;}
.w44{width:85.600000pt;}
.w13{width:85.746667pt;}
.w10{width:85.760000pt;}
.wf{width:85.778667pt;}
.w11{width:85.792000pt;}
.w43{width:86.240000pt;}
.w45{width:86.258667pt;}
.w38{width:86.592000pt;}
.we{width:93.746667pt;}
.w2f{width:101.746667pt;}
.w24{width:101.778667pt;}
.w3c{width:105.952000pt;}
.w40{width:107.712000pt;}
.w3d{width:111.506667pt;}
.w1d{width:116.306667pt;}
.w18{width:116.498667pt;}
.w23{width:117.746667pt;}
.w4{width:132.018667pt;}
.w8{width:133.773333pt;}
.wd{width:142.746667pt;}
.w3f{width:172.640000pt;}
.w42{width:172.653333pt;}
.w3b{width:179.533333pt;}
.wa{width:313.929474pt;}
.w37{width:424.493333pt;}
.w3{width:455.040000pt;}
.w4d{width:638.720000pt;}
.w4c{width:647.040000pt;}
.w16{width:647.440000pt;}
.w2{width:793.740000pt;}
.w9{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:826.680000pt;}
.wb{width:1056.000000pt;}
.w14{width:1122.560000pt;}
.w15{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:6.866667pt;}
.x61{left:8.160000pt;}
.x72{left:9.760000pt;}
.x46{left:10.906667pt;}
.x75{left:12.146667pt;}
.x67{left:13.440000pt;}
.x48{left:14.880000pt;}
.x80{left:16.640000pt;}
.x6a{left:17.600000pt;}
.x47{left:18.906667pt;}
.x68{left:19.840000pt;}
.x4a{left:20.786667pt;}
.x4c{left:21.920000pt;}
.x49{left:22.866667pt;}
.x20{left:24.160000pt;}
.x81{left:25.760000pt;}
.x44{left:26.880000pt;}
.x22{left:28.160000pt;}
.x19{left:29.986667pt;}
.x3c{left:31.706667pt;}
.x4d{left:32.826667pt;}
.x21{left:33.760000pt;}
.x3f{left:34.880000pt;}
.x2f{left:36.694040pt;}
.x1f{left:37.760000pt;}
.x8c{left:38.866667pt;}
.x69{left:40.146667pt;}
.x8b{left:41.106667pt;}
.x6b{left:44.146667pt;}
.xa1{left:45.346667pt;}
.x3a{left:46.866667pt;}
.x16{left:50.266667pt;}
.xa0{left:52.000000pt;}
.x45{left:55.226667pt;}
.x4b{left:56.666667pt;}
.x15{left:58.493333pt;}
.x14{left:60.026667pt;}
.x13{left:61.533333pt;}
.x12{left:63.040000pt;}
.x71{left:66.240000pt;}
.x11{left:71.133333pt;}
.x9f{left:78.693333pt;}
.xa5{left:81.626667pt;}
.x36{left:94.560000pt;}
.x37{left:104.960000pt;}
.x17{left:111.453333pt;}
.x1{left:113.472000pt;}
.x3{left:117.152000pt;}
.x35{left:118.272000pt;}
.x4e{left:123.072000pt;}
.x4{left:132.032000pt;}
.x73{left:138.280000pt;}
.x18{left:139.200000pt;}
.xc{left:141.786667pt;}
.x57{left:143.546667pt;}
.xb{left:160.666667pt;}
.x8f{left:161.586667pt;}
.x9a{left:167.880000pt;}
.x24{left:168.826667pt;}
.x8e{left:169.800000pt;}
.x9{left:175.706667pt;}
.x54{left:177.466667pt;}
.x10{left:178.720000pt;}
.x6c{left:180.346667pt;}
.x31{left:184.026667pt;}
.x6e{left:187.546667pt;}
.x52{left:192.506667pt;}
.x9b{left:194.280000pt;}
.x55{left:202.586667pt;}
.x74{left:211.240000pt;}
.x5d{left:213.146667pt;}
.x32{left:215.066667pt;}
.x93{left:220.840000pt;}
.xa3{left:231.386667pt;}
.xe{left:237.786667pt;}
.xa4{left:242.240000pt;}
.x83{left:247.080000pt;}
.x39{left:248.680000pt;}
.x28{left:259.906655pt;}
.x29{left:269.853322pt;}
.x53{left:271.866667pt;}
.x1b{left:273.666667pt;}
.x6{left:306.146667pt;}
.x5e{left:307.080000pt;}
.x2e{left:308.117689pt;}
.xf{left:317.826667pt;}
.x27{left:319.226655pt;}
.xa{left:329.186667pt;}
.x5{left:333.346667pt;}
.x6d{left:335.866667pt;}
.x3b{left:343.080000pt;}
.x38{left:344.226667pt;}
.x33{left:346.606667pt;}
.x84{left:349.480000pt;}
.x34{left:352.066667pt;}
.x1c{left:357.826667pt;}
.x25{left:362.653322pt;}
.x76{left:368.040000pt;}
.x26{left:377.053322pt;}
.x2a{left:378.693322pt;}
.x94{left:387.426667pt;}
.x2b{left:392.573322pt;}
.x2{left:406.466667pt;}
.x85{left:415.906667pt;}
.x5f{left:424.226667pt;}
.x2c{left:425.759988pt;}
.x2d{left:427.999988pt;}
.x3d{left:429.506667pt;}
.x1d{left:434.986667pt;}
.x58{left:437.666667pt;}
.x82{left:449.026667pt;}
.x30{left:453.373333pt;}
.x5c{left:458.626667pt;}
.x60{left:459.906667pt;}
.x5a{left:461.986667pt;}
.x77{left:470.466667pt;}
.x98{left:474.466667pt;}
.x70{left:483.426667pt;}
.x86{left:484.386667pt;}
.x62{left:498.306667pt;}
.x7{left:500.553333pt;}
.x8{left:506.653333pt;}
.x3e{left:515.906667pt;}
.x1e{left:519.146667pt;}
.x78{left:528.866667pt;}
.x4f{left:534.146667pt;}
.xa6{left:552.000000pt;}
.x5b{left:561.346667pt;}
.x87{left:567.266667pt;}
.x56{left:591.293333pt;}
.x79{left:595.266667pt;}
.x40{left:602.346667pt;}
.x23{left:606.333333pt;}
.x51{left:610.973333pt;}
.x9c{left:617.026667pt;}
.x63{left:631.306667pt;}
.xd{left:633.893333pt;}
.x88{left:636.746667pt;}
.x9d{left:643.146667pt;}
.x7a{left:661.226667pt;}
.x95{left:669.386667pt;}
.x41{left:680.746667pt;}
.x90{left:682.346667pt;}
.x91{left:710.026667pt;}
.x7b{left:731.626667pt;}
.x89{left:739.146667pt;}
.x64{left:748.266667pt;}
.x42{left:767.146667pt;}
.x92{left:773.386667pt;}
.x6f{left:774.493333pt;}
.x59{left:775.773333pt;}
.x50{left:778.813333pt;}
.x96{left:781.546667pt;}
.x65{left:784.106667pt;}
.x7c{left:806.026667pt;}
.x66{left:822.506667pt;}
.x8d{left:824.413333pt;}
.x97{left:835.946667pt;}
.x43{left:853.573333pt;}
.x7d{left:856.906667pt;}
.x8a{left:879.146667pt;}
.xa2{left:882.373333pt;}
.x9e{left:887.333333pt;}
.x99{left:923.013333pt;}
.x7e{left:932.613333pt;}
.x7f{left:991.013333pt;}
}




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