
    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_131d8bdf9e1f3957cf692d05.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2b012d19f1e0f88796a4d393.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_1d1e9ad55e150929396d66ce.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_b3e6ec066d057245a77d13f8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.045000;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_be4383026ee2575fe0f78464.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1620025c13b8c0e93bc097c8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_980f7f8e16476c0701f3bf1c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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_885e46f7179926abdc22f36a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_66fdea07b654e53611329801.woff')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_6a2febf4090c3ca88f42c94d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_fbf9ab971ef93b617cb58f37.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_fbf9ab971ef93b617cb58f37.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_9959079655743adeed1f6508.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_3f3b660f6ef5abd6d65ed4e6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.694336;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_5159692430f4876ca5913d2d.woff')format("woff");}.fff{font-family:fff;line-height:0.895996;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_e3e213bbe7aee0487902a9ba.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_1d2e9c8d508191bd3f87806c.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a85239bb354c2c6220bfb922.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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_491a1c51355b2c280b68384f.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d7f4b6a3f6b546c200fd4759.woff')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;}
.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(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);}
.v2{vertical-align:-30.245443px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.364925px;}
.v1{vertical-align:30.245443px;}
.ls24{letter-spacing:-0.852153px;}
.ls1f{letter-spacing:-0.768138px;}
.ls12{letter-spacing:-0.702126px;}
.ls21{letter-spacing:-0.587506px;}
.ls1b{letter-spacing:-0.570103px;}
.ls31{letter-spacing:-0.524494px;}
.ls5{letter-spacing:-0.472285px;}
.ls4{letter-spacing:-0.463883px;}
.lsc{letter-spacing:-0.420676px;}
.ls52{letter-spacing:-0.414675px;}
.ls43{letter-spacing:-0.407478px;}
.ls42{letter-spacing:-0.356543px;}
.ls3c{letter-spacing:-0.356438px;}
.ls4b{letter-spacing:-0.324058px;}
.lsd{letter-spacing:-0.310856px;}
.ls1e{letter-spacing:-0.291052px;}
.ls7{letter-spacing:-0.282051px;}
.ls49{letter-spacing:-0.270049px;}
.ls34{letter-spacing:-0.250845px;}
.ls2a{letter-spacing:-0.238843px;}
.ls50{letter-spacing:-0.234042px;}
.lsb{letter-spacing:-0.216039px;}
.ls2d{letter-spacing:-0.207637px;}
.ls35{letter-spacing:-0.195635px;}
.lsa{letter-spacing:-0.193235px;}
.ls14{letter-spacing:-0.175832px;}
.ls17{letter-spacing:-0.174031px;}
.ls3b{letter-spacing:-0.152759px;}
.ls16{letter-spacing:-0.132624px;}
.ls15{letter-spacing:-0.115221px;}
.ls26{letter-spacing:-0.109220px;}
.ls40{letter-spacing:-0.077251px;}
.ls39{letter-spacing:-0.077228px;}
.ls3{letter-spacing:-0.048969px;}
.ls2b{letter-spacing:-0.043208px;}
.ls1a{letter-spacing:-0.025925px;}
.ls4a{letter-spacing:-0.018003px;}
.ls1{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.012734px;}
.ls4d{letter-spacing:0.018003px;}
.ls29{letter-spacing:0.020164px;}
.ls45{letter-spacing:0.036006px;}
.ls4f{letter-spacing:0.054010px;}
.ls13{letter-spacing:0.069012px;}
.ls23{letter-spacing:0.070573px;}
.ls3f{letter-spacing:0.076402px;}
.ls27{letter-spacing:0.086416px;}
.ls19{letter-spacing:0.089296px;}
.ls25{letter-spacing:0.089416px;}
.ls44{letter-spacing:0.101870px;}
.ls20{letter-spacing:0.129623px;}
.ls10{letter-spacing:0.132624px;}
.ls8{letter-spacing:0.141025px;}
.ls2{letter-spacing:0.142586px;}
.ls1d{letter-spacing:0.149787px;}
.ls22{letter-spacing:0.150027px;}
.ls3a{letter-spacing:0.152759px;}
.ls3d{letter-spacing:0.152804px;}
.ls41{letter-spacing:0.165538px;}
.ls4c{letter-spacing:0.180032px;}
.ls32{letter-spacing:0.181473px;}
.ls46{letter-spacing:0.198036px;}
.ls18{letter-spacing:0.198756px;}
.ls36{letter-spacing:0.203679px;}
.ls47{letter-spacing:0.216039px;}
.ls1c{letter-spacing:0.238843px;}
.ls6{letter-spacing:0.247845px;}
.lse{letter-spacing:0.256246px;}
.ls2f{letter-spacing:0.256366px;}
.ls30{letter-spacing:0.262127px;}
.ls4e{letter-spacing:0.288052px;}
.ls11{letter-spacing:0.305335px;}
.ls51{letter-spacing:0.305455px;}
.ls33{letter-spacing:0.319858px;}
.lsf{letter-spacing:0.371467px;}
.ls48{letter-spacing:0.468084px;}
.ls9{letter-spacing:0.610670px;}
.ls28{letter-spacing:0.790702px;}
.ls37{letter-spacing:1.731268px;}
.ls38{letter-spacing:2.749661px;}
.ls0{letter-spacing:18.281123px;}
.ls2e{letter-spacing:117.506907px;}
.ls2c{letter-spacing:150.632869px;}
.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;}
}
.ws38{word-spacing:-38.201075px;}
.ws44{word-spacing:-18.723490px;}
.ws27{word-spacing:-18.418035px;}
.ws24{word-spacing:-18.308815px;}
.ws3{word-spacing:-18.279445px;}
.ws28{word-spacing:-17.893540px;}
.ws16{word-spacing:-15.344401px;}
.ws2d{word-spacing:-15.229301px;}
.ws15{word-spacing:-15.229181px;}
.ws22{word-spacing:-15.211778px;}
.ws1d{word-spacing:-15.171690px;}
.ws11{word-spacing:-15.113960px;}
.ws17{word-spacing:-15.105559px;}
.ws21{word-spacing:-15.102558px;}
.ws23{word-spacing:-15.062351px;}
.ws19{word-spacing:-15.041947px;}
.wsd{word-spacing:-14.972935px;}
.ws1e{word-spacing:-14.947010px;}
.wsf{word-spacing:-14.923966px;}
.ws2c{word-spacing:-14.863715px;}
.ws1b{word-spacing:-14.857714px;}
.ws25{word-spacing:-14.840311px;}
.ws1a{word-spacing:-14.797103px;}
.ws2b{word-spacing:-14.777299px;}
.ws29{word-spacing:-14.765297px;}
.ws12{word-spacing:-14.756896px;}
.ws26{word-spacing:-14.734092px;}
.ws2a{word-spacing:-14.722089px;}
.ws1f{word-spacing:-14.681882px;}
.ws14{word-spacing:-14.662079px;}
.ws13{word-spacing:-14.552259px;}
.ws10{word-spacing:-14.509051px;}
.ws18{word-spacing:-14.270808px;}
.ws20{word-spacing:-14.204796px;}
.ws33{word-spacing:-12.949825px;}
.ws2e{word-spacing:-12.945980px;}
.ws40{word-spacing:-12.404232px;}
.ws41{word-spacing:-12.260206px;}
.ws42{word-spacing:-12.224200px;}
.ws3b{word-spacing:-12.206197px;}
.ws3d{word-spacing:-12.188193px;}
.ws43{word-spacing:-11.972155px;}
.ws3c{word-spacing:-11.936148px;}
.ws3f{word-spacing:-11.882138px;}
.ws30{word-spacing:-11.507840px;}
.ws31{word-spacing:-11.355081px;}
.ws32{word-spacing:-11.151402px;}
.ws36{word-spacing:-10.785437px;}
.ws35{word-spacing:-10.772703px;}
.ws3a{word-spacing:-10.721768px;}
.ws34{word-spacing:-10.619899px;}
.ws37{word-spacing:-10.263355px;}
.ws39{word-spacing:-10.212421px;}
.wse{word-spacing:-9.439459px;}
.ws1c{word-spacing:-9.265427px;}
.ws3e{word-spacing:-8.137464px;}
.ws8{word-spacing:-3.945204px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.920548px;}
.wsb{word-spacing:1.117808px;}
.wsc{word-spacing:2.235616px;}
.wsa{word-spacing:3.024656px;}
.ws9{word-spacing:3.221917px;}
.ws5{word-spacing:5.786299px;}
.ws4{word-spacing:18.213692px;}
.ws7{word-spacing:19.134239px;}
.ws2f{word-spacing:25.765340px;}
.ws2{word-spacing:492.427213px;}
.ws1{word-spacing:528.920350px;}
._5{margin-left:-7.298627px;}
._3{margin-left:-4.865752px;}
._d{margin-left:-3.550684px;}
._0{margin-left:-2.432876px;}
._2{margin-left:-1.183561px;}
._e{width:1.056913px;}
._f{width:2.987286px;}
._10{width:4.302710px;}
._9{width:14.926022px;}
._c{width:18.279445px;}
._a{width:33.073960px;}
._1{width:36.558890px;}
._b{width:38.005465px;}
._7{width:207.320470px;}
._8{width:243.879361px;}
._6{width:265.803595px;}
._4{width:324.295769px;}
._12{width:845.893513px;}
._11{width:849.338613px;}
.fc9{color:rgb(14,40,65);}
.fc8{color:rgb(21,96,130);}
.fc7{color:rgb(69,176,225);}
.fc6{color:rgb(149,220,247);}
.fc4{color:rgb(70,120,134);}
.fc5{color:transparent;}
.fc3{color:rgb(131,202,235);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:8.400000px;}
.fse{font-size:36.006480px;}
.fsc{font-size:38.201075px;}
.fs5{font-size:41.767517px;}
.fs8{font-size:42.263304px;}
.fs7{font-size:46.846072px;}
.fsb{font-size:46.859985px;}
.fs9{font-size:50.919644px;}
.fsa{font-size:51.021483px;}
.fsd{font-size:54.009720px;}
.fs2{font-size:65.753400px;}
.fs3{font-size:66.251923px;}
.fsf{font-size:72.012960px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:84.255163px;}
.fs1{font-size:89.664000px;}
.y1e6{bottom:-31.335493px;}
.y1a9{bottom:-21.647276px;}
.y1c0{bottom:-21.275876px;}
.y1e5{bottom:-19.493160px;}
.y1ca{bottom:-12.224344px;}
.y1a8{bottom:-9.804943px;}
.y1bf{bottom:-9.433543px;}
.y193{bottom:-9.072755px;}
.y1ef{bottom:-8.414848px;}
.y196{bottom:-8.308734px;}
.y1b0{bottom:-8.276900px;}
.y1b5{bottom:-7.894889px;}
.y1d4{bottom:-7.650826px;}
.y1d9{bottom:-7.385541px;}
.y1c9{bottom:-0.382011px;}
.y1e2{bottom:-0.254674px;}
.y0{bottom:0.000000px;}
.y1a7{bottom:2.037391px;}
.y1a0{bottom:2.048002px;}
.y1be{bottom:2.408790px;}
.y192{bottom:2.801412px;}
.y194{bottom:3.056086px;}
.y14e{bottom:3.182478px;}
.y1ee{bottom:3.427485px;}
.y188{bottom:3.565434px;}
.y26f{bottom:3.600648px;}
.y1b9{bottom:3.682159px;}
.y261{bottom:3.780680px;}
.y1b4{bottom:3.947444px;}
.y1d3{bottom:4.191507px;}
.y1a3{bottom:4.329455px;}
.y1d8{bottom:4.456792px;}
.y25a{bottom:4.680842px;}
.y200{bottom:4.860875px;}
.y1ea{bottom:4.966140px;}
.y225{bottom:5.025905px;}
.y22e{bottom:5.033406px;}
.y1fe{bottom:5.040907px;}
.y1ed{bottom:5.093477px;}
.y184{bottom:5.348150px;}
.y1ae{bottom:5.602824px;}
.y208{bottom:5.941069px;}
.y22a{bottom:6.106099px;}
.y23c{bottom:6.301134px;}
.y222{bottom:6.661199px;}
.y205{bottom:6.841231px;}
.y18b{bottom:7.130867px;}
.y230{bottom:7.201296px;}
.y18e{bottom:7.385541px;}
.y263{bottom:7.561361px;}
.y1cf{bottom:7.767552px;}
.y1f2{bottom:7.894889px;}
.y26b{bottom:8.101458px;}
.y23f{bottom:8.281490px;}
.y1f{bottom:8.913000px;}
.y269{bottom:9.001620px;}
.y242{bottom:10.801944px;}
.y1c4{bottom:10.950975px;}
.y1c8{bottom:11.460322px;}
.y1e1{bottom:11.587659px;}
.y160{bottom:11.913075px;}
.y19e{bottom:13.805444px;}
.y19c{bottom:13.879724px;}
.y1bd{bottom:14.251123px;}
.y191{bottom:14.643745px;}
.y1ac{bottom:14.887808px;}
.y1b8{bottom:15.301653px;}
.y187{bottom:15.407767px;}
.y1b3{bottom:15.789778px;}
.y14c{bottom:15.912389px;}
.y1a2{bottom:15.917115px;}
.y1d2{bottom:16.065674px;}
.y1e4{bottom:16.193011px;}
.y149{bottom:16.294286px;}
.y1d7{bottom:16.299125px;}
.y1e9{bottom:16.553799px;}
.y1ec{bottom:16.808473px;}
.y183{bottom:17.190484px;}
.y274{bottom:18.903402px;}
.y18d{bottom:18.973201px;}
.y18a{bottom:19.100537px;}
.y1ce{bottom:19.355211px;}
.y1f1{bottom:19.609885px;}
.y267{bottom:20.163629px;}
.y27a{bottom:20.193634px;}
.y260{bottom:20.343661px;}
.y258{bottom:22.504050px;}
.y1c3{bottom:22.538634px;}
.y224{bottom:22.669080px;}
.y1ff{bottom:22.684082px;}
.y228{bottom:22.849112px;}
.y22d{bottom:22.856613px;}
.y212{bottom:22.864115px;}
.y239{bottom:22.909123px;}
.y256{bottom:23.224180px;}
.y1c7{bottom:23.302656px;}
.y1fc{bottom:23.404212px;}
.y1e0{bottom:23.429993px;}
.y207{bottom:23.764277px;}
.y221{bottom:24.484406px;}
.y204{bottom:24.664439px;}
.y1a6{bottom:25.722057px;}
.y19b{bottom:25.849394px;}
.y23e{bottom:26.104698px;}
.y1bc{bottom:26.125291px;}
.y190{bottom:26.486079px;}
.y1b7{bottom:27.143986px;}
.y1ab{bottom:27.239489px;}
.y186{bottom:27.250100px;}
.y1af{bottom:27.377437px;}
.y1b2{bottom:27.632111px;}
.y1d1{bottom:27.908008px;}
.y1e3{bottom:28.035344px;}
.y1d6{bottom:28.141459px;}
.y241{bottom:28.625152px;}
.y182{bottom:29.032817px;}
.y1dd{bottom:31.070208px;}
.y1cd{bottom:31.197545px;}
.y14b{bottom:31.570179px;}
.y148{bottom:31.952077px;}
.y1c2{bottom:34.380967px;}
.y14a{bottom:35.134554px;}
.y1df{bottom:35.272326px;}
.y26e{bottom:36.546577px;}
.y279{bottom:36.576583px;}
.y25f{bottom:36.726610px;}
.y15f{bottom:37.245598px;}
.y1a5{bottom:37.564390px;}
.y19a{bottom:37.691727px;}
.y1bb{bottom:37.967624px;}
.y168{bottom:39.983792px;}
.y139{bottom:40.124679px;}
.y22c{bottom:40.493788px;}
.y214{bottom:40.507290px;}
.y21a{bottom:40.537295px;}
.y227{bottom:40.672320px;}
.y211{bottom:40.687322px;}
.y238{bottom:40.732331px;}
.y255{bottom:40.867355px;}
.y1fb{bottom:41.227420px;}
.y282{bottom:41.587484px;}
.y289{bottom:41.632493px;}
.y28b{bottom:41.767517px;}
.y220{bottom:42.127582px;}
.y1dc{bottom:42.912541px;}
.y1cc{bottom:43.039878px;}
.y157{bottom:45.647339px;}
.y153{bottom:47.153712px;}
.y1a4{bottom:49.406724px;}
.y199{bottom:49.534061px;}
.y45{bottom:50.740500px;}
.y266{bottom:53.109558px;}
.y25e{bottom:53.289590px;}
.y167{bottom:53.379635px;}
.y138{bottom:53.491086px;}
.y272{bottom:54.909882px;}
.y22{bottom:56.746212px;}
.y219{bottom:58.360503px;}
.y237{bottom:58.375506px;}
.y210{bottom:58.510530px;}
.y21f{bottom:59.950789px;}
.y28d{bottom:60.490886px;}
.y286{bottom:60.670919px;}
.y288{bottom:60.715927px;}
.y15e{bottom:62.450822px;}
.y162{bottom:69.229499px;}
.y265{bottom:74.173349px;}
.y26d{bottom:74.713446px;}
.y21{bottom:75.649614px;}
.y20f{bottom:76.153705px;}
.y218{bottom:76.183711px;}
.y236{bottom:76.198713px;}
.y285{bottom:79.574321px;}
.y180{bottom:82.667126px;}
.y15d{bottom:87.783344px;}
.y25c{bottom:89.836168px;}
.y151{bottom:90.535127px;}
.y20e{bottom:93.976913px;}
.y217{bottom:94.006918px;}
.y291{bottom:98.687761px;}
.y17f{bottom:106.602222px;}
.y20d{bottom:111.800120px;}
.y216{bottom:111.830126px;}
.y15c{bottom:113.020393px;}
.y150{bottom:114.463116px;}
.y2{bottom:115.350000px;}
.y87{bottom:124.438395px;}
.y5f{bottom:128.759172px;}
.y20c{bottom:129.668336px;}
.y17e{bottom:130.414225px;}
.yd0{bottom:130.559496px;}
.y44{bottom:131.459658px;}
.y252{bottom:131.639691px;}
.y22b{bottom:133.178864px;}
.y10d{bottom:134.700242px;}
.y14f{bottom:135.085572px;}
.yd5{bottom:136.500566px;}
.y123{bottom:136.860630px;}
.y15b{bottom:138.225617px;}
.yfb{bottom:139.201052px;}
.y132{bottom:139.381084px;}
.y96{bottom:140.821343px;}
.ye4{bottom:141.361440px;}
.ybc{bottom:142.441635px;}
.y20b{bottom:147.491544px;}
.ya4{bottom:148.562736px;}
.y72{bottom:149.822963px;}
.y155{bottom:152.684674px;}
.y17d{bottom:154.353566px;}
.y15a{bottom:163.558139px;}
.y86{bottom:164.759651px;}
.y43{bottom:165.119716px;}
.y251{bottom:165.299749px;}
.y154{bottom:168.087866px;}
.ycf{bottom:170.700721px;}
.y10c{bottom:174.841466px;}
.yd4{bottom:176.821822px;}
.y122{bottom:177.181887px;}
.y17c{bottom:178.165569px;}
.yfa{bottom:179.522308px;}
.y5e{bottom:180.962567px;}
.ye3{bottom:181.502665px;}
.ybb{bottom:182.762891px;}
.y42{bottom:186.723604px;}
.y229{bottom:187.370117px;}
.ya3{bottom:188.703961px;}
.y95{bottom:193.024738px;}
.y250{bottom:199.145840px;}
.y17b{bottom:202.009407px;}
.y71{bottom:202.026358px;}
.y85{bottom:205.086909px;}
.y226{bottom:206.993648px;}
.yce{bottom:211.027978px;}
.y10b{bottom:215.168723px;}
.yd3{bottom:216.969047px;}
.y121{bottom:217.509145px;}
.y276{bottom:219.669533px;}
.yf9{bottom:219.849566px;}
.y41{bottom:220.569695px;}
.y5d{bottom:221.289825px;}
.ye2{bottom:221.649890px;}
.y11d{bottom:222.189987px;}
.yba{bottom:222.910117px;}
.y17a{bottom:225.948747px;}
.ya2{bottom:229.031218px;}
.y24f{bottom:232.811899px;}
.y94{bottom:233.351996px;}
.yad{bottom:245.414167px;}
.y179{bottom:249.760750px;}
.ycd{bottom:251.355236px;}
.y40{bottom:254.235754px;}
.y70{bottom:254.415787px;}
.y10a{bottom:255.315949px;}
.y129{bottom:255.495981px;}
.y84{bottom:257.296305px;}
.y120{bottom:257.656370px;}
.ye1{bottom:259.816759px;}
.yf8{bottom:259.996791px;}
.y223{bottom:261.183401px;}
.y5c{bottom:261.617083px;}
.y11c{bottom:262.337212px;}
.y24e{bottom:266.657990px;}
.ya1{bottom:269.358476px;}
.y93{bottom:273.679253px;}
.y178{bottom:273.700091px;}
.y165{bottom:281.373000px;}
.yb9{bottom:281.420647px;}
.y146{bottom:283.548159px;}
.yac{bottom:285.561392px;}
.y3f{bottom:288.126854px;}
.y1f8{bottom:289.567113px;}
.ycc{bottom:291.727502px;}
.y109{bottom:295.688214px;}
.y11f{bottom:295.868247px;}
.y177{bottom:297.512094px;}
.y83{bottom:297.668571px;}
.yf7{bottom:298.208668px;}
.ye0{bottom:300.008992px;}
.y131{bottom:300.369057px;}
.y5b{bottom:301.989348px;}
.y11b{bottom:302.709478px;}
.y145{bottom:305.210224px;}
.y6f{bottom:306.670191px;}
.y3e{bottom:309.730742px;}
.y1e{bottom:311.443500px;}
.y92{bottom:314.051519px;}
.y21e{bottom:315.223126px;}
.y176{bottom:321.451434px;}
.yb8{bottom:321.612880px;}
.y1f7{bottom:323.233172px;}
.y136{bottom:324.699000px;}
.yab{bottom:325.933657px;}
.y144{bottom:326.851072px;}
.y1d{bottom:330.870000px;}
.y24d{bottom:334.035116px;}
.y108{bottom:336.015472px;}
.y82{bottom:337.995828px;}
.yf6{bottom:338.355893px;}
.ydf{bottom:340.336250px;}
.y130{bottom:340.696314px;}
.y5a{bottom:342.316606px;}
.y11a{bottom:343.036736px;}
.y3d{bottom:343.576833px;}
.ycb{bottom:343.936897px;}
.y175{bottom:345.263438px;}
.y143{bottom:348.491921px;}
.ya0{bottom:350.057999px;}
.y158{bottom:352.692792px;}
.y91{bottom:354.198744px;}
.y1f6{bottom:357.079263px;}
.y6e{bottom:359.059619px;}
.yb7{bottom:361.940137px;}
.yaa{bottom:366.260915px;}
.y24c{bottom:367.881207px;}
.y174{bottom:369.096664px;}
.y142{bottom:370.132770px;}
.y128{bottom:374.182341px;}
.y1c{bottom:374.208000px;}
.y107{bottom:376.342730px;}
.y3c{bottom:377.242892px;}
.y81{bottom:378.323086px;}
.yde{bottom:378.503118px;}
.yf5{bottom:378.683151px;}
.y12f{bottom:381.023572px;}
.y119{bottom:381.203604px;}
.y59{bottom:382.463831px;}
.yca{bottom:384.264155px;}
.y21d{bottom:388.676345px;}
.y9f{bottom:390.205224px;}
.y141{bottom:391.773618px;}
.y173{bottom:393.036004px;}
.y1b{bottom:393.634500px;}
.y294{bottom:398.486715px;}
.y27e{bottom:398.846780px;}
.y24b{bottom:401.547266px;}
.yb6{bottom:402.267395px;}
.y1aa{bottom:402.374905px;}
.y90{bottom:406.588173px;}
.y1f5{bottom:408.028432px;}
.y3b{bottom:411.088983px;}
.y6d{bottom:411.269015px;}
.y1a{bottom:413.062500px;}
.y140{bottom:413.414467px;}
.y127{bottom:414.329566px;}
.y106{bottom:416.669987px;}
.y172{bottom:416.848008px;}
.y80{bottom:418.470311px;}
.yf4{bottom:419.010408px;}
.y118{bottom:421.350830px;}
.y58{bottom:422.791089px;}
.yc9{bottom:424.591413px;}
.y9e{bottom:430.532482px;}
.y27d{bottom:430.892547px;}
.y293{bottom:431.252612px;}
.y19{bottom:432.489000px;}
.y3a{bottom:432.692871px;}
.y13f{bottom:435.087140px;}
.y24a{bottom:435.393357px;}
.y171{bottom:440.787348px;}
.yb5{bottom:442.594653px;}
.y21c{bottom:442.866098px;}
.ya9{bottom:446.915430px;}
.y27c{bottom:448.535722px;}
.y18{bottom:451.917000px;}
.y126{bottom:454.476791px;}
.y1ba{bottom:455.729073px;}
.y13e{bottom:456.727989px;}
.y105{bottom:456.817212px;}
.y7f{bottom:458.797569px;}
.yf3{bottom:459.157634px;}
.y152{bottom:461.290945px;}
.y117{bottom:461.498055px;}
.y57{bottom:463.118346px;}
.y6c{bottom:463.478411px;}
.y292{bottom:463.658444px;}
.y170{bottom:464.599351px;}
.yc8{bottom:464.918670px;}
.y39{bottom:466.538962px;}
.y1b6{bottom:467.189395px;}
.y1d0{bottom:467.316732px;}
.y249{bottom:469.059416px;}
.y9d{bottom:470.859740px;}
.y275{bottom:470.951152px;}
.y1f4{bottom:471.039772px;}
.y17{bottom:471.343500px;}
.y13d{bottom:478.368838px;}
.yb4{bottom:482.921910px;}
.y164{bottom:485.624887px;}
.ya8{bottom:487.062656px;}
.y16f{bottom:488.411355px;}
.y290{bottom:488.594327px;}
.y125{bottom:494.804049px;}
.y21b{bottom:496.875817px;}
.y104{bottom:497.144470px;}
.y7e{bottom:499.124826px;}
.yf2{bottom:499.484891px;}
.y12e{bottom:499.664923px;}
.y13c{bottom:500.009686px;}
.y38{bottom:500.205021px;}
.y116{bottom:501.825312px;}
.y248{bottom:502.905507px;}
.y56{bottom:503.445604px;}
.yc7{bottom:505.065896px;}
.y163{bottom:510.830111px;}
.y8f{bottom:511.186997px;}
.y16e{bottom:512.382529px;}
.y6b{bottom:515.867840px;}
.y27b{bottom:521.180191px;}
.y13b{bottom:521.777834px;}
.yb3{bottom:523.069136px;}
.ya7{bottom:527.389913px;}
.y19f{bottom:527.430368px;}
.y198{bottom:527.440980px;}
.y19d{bottom:527.515260px;}
.y1cb{bottom:533.043804px;}
.y1db{bottom:533.425815px;}
.y37{bottom:534.051112px;}
.y124{bottom:535.131306px;}
.y16d{bottom:536.194533px;}
.y247{bottom:536.571566px;}
.y103{bottom:537.471728px;}
.y1de{bottom:537.500596px;}
.y7d{bottom:539.452084px;}
.yf1{bottom:539.812149px;}
.y14d{bottom:541.797023px;}
.y115{bottom:542.152570px;}
.y1c1{bottom:542.594073px;}
.y13a{bottom:544.182478px;}
.yc6{bottom:545.393153px;}
.y215{bottom:551.065570px;}
.y8e{bottom:551.514255px;}
.y55{bottom:555.655000px;}
.y147{bottom:557.200216px;}
.y16c{bottom:560.133873px;}
.y16{bottom:562.501500px;}
.yb2{bottom:563.396393px;}
.y36{bottom:566.096879px;}
.ya6{bottom:567.747176px;}
.y6a{bottom:568.107241px;}
.y246{bottom:570.267630px;}
.y278{bottom:571.409231px;}
.yd7{bottom:575.488569px;}
.y102{bottom:577.828991px;}
.y7c{bottom:579.809347px;}
.yf0{bottom:580.169412px;}
.y15{bottom:581.929500px;}
.y114{bottom:582.509833px;}
.y137{bottom:583.157222px;}
.y16b{bottom:583.945876px;}
.y8d{bottom:591.691485px;}
.yc5{bottom:597.812587px;}
.y35{bottom:598.352684px;}
.y14{bottom:601.356000px;}
.y28f{bottom:603.304971px;}
.yb1{bottom:603.753656px;}
.y245{bottom:604.113721px;}
.y16a{bottom:607.885217px;}
.y54{bottom:608.074434px;}
.yd6{bottom:615.815827px;}
.y101{bottom:618.156248px;}
.y7b{bottom:619.956572px;}
.y69{bottom:620.496669px;}
.y13{bottom:620.784000px;}
.y277{bottom:621.668276px;}
.y113{bottom:622.837091px;}
.y28e{bottom:623.108535px;}
.y244{bottom:624.637414px;}
.y34{bottom:630.398451px;}
.y169{bottom:630.933199px;}
.y1f0{bottom:631.114453px;}
.y8c{bottom:632.018743px;}
.y1da{bottom:632.133148px;}
.yc4{bottom:637.959812px;}
.y12{bottom:640.210500px;}
.y243{bottom:642.280590px;}
.yd2{bottom:644.080914px;}
.y53{bottom:648.401691px;}
.yb0{bottom:655.963052px;}
.y159{bottom:656.440480px;}
.y156{bottom:656.949676px;}
.y100{bottom:658.303473px;}
.y12d{bottom:658.483506px;}
.ya5{bottom:660.283830px;}
.yef{bottom:660.643894px;}
.y112{bottom:660.823927px;}
.y28c{bottom:661.815501px;}
.y33{bottom:662.624251px;}
.y240{bottom:664.876052px;}
.y166{bottom:669.919518px;}
.y273{bottom:671.717283px;}
.y7a{bottom:672.346001px;}
.y68{bottom:672.706065px;}
.y1c6{bottom:673.644983px;}
.y1b1{bottom:673.772320px;}
.y213{bottom:676.398126px;}
.y1f3{bottom:677.337753px;}
.yc3{bottom:678.287070px;}
.y1a1{bottom:680.139165px;}
.y1eb{bottom:680.393839px;}
.y1e8{bottom:681.794545px;}
.y11{bottom:683.548500px;}
.yd1{bottom:684.408171px;}
.y52{bottom:688.548917px;}
.y32{bottom:694.670018px;}
.yaf{bottom:696.290310px;}
.yff{bottom:698.630731px;}
.ydd{bottom:700.611087px;}
.yee{bottom:700.971152px;}
.y10{bottom:702.975000px;}
.y271{bottom:704.123115px;}
.y23d{bottom:707.003634px;}
.y79{bottom:712.673258px;}
.y1ad{bottom:718.467577px;}
.yc2{bottom:718.614327px;}
.y1d5{bottom:721.268990px;}
.yf{bottom:722.401500px;}
.y8b{bottom:724.555397px;}
.y1e7{bottom:724.834423px;}
.y67{bottom:725.095494px;}
.y31{bottom:726.895818px;}
.y197{bottom:726.999151px;}
.y1c5{bottom:728.399857px;}
.y51{bottom:728.876174px;}
.y20a{bottom:730.407846px;}
.yae{bottom:736.617567px;}
.y11e{bottom:736.797600px;}
.y28a{bottom:738.329271px;}
.yfe{bottom:738.957989px;}
.ydc{bottom:740.938345px;}
.yed{bottom:741.298410px;}
.y23b{bottom:746.610762px;}
.y78{bottom:753.000516px;}
.y270{bottom:754.352155px;}
.yc1{bottom:758.941585px;}
.y30{bottom:759.121617px;}
.y135{bottom:764.162525px;}
.y8a{bottom:764.882654px;}
.ye{bottom:765.739500px;}
.y26c{bottom:772.715460px;}
.y9c{bottom:776.944825px;}
.y66{bottom:777.304890px;}
.yfd{bottom:779.285246px;}
.y195{bottom:779.875805px;}
.y50{bottom:781.265602px;}
.yec{bottom:781.625667px;}
.y161{bottom:782.975795px;}
.y23a{bottom:782.977306px;}
.y18f{bottom:785.987977px;}
.y18c{bottom:787.134010px;}
.y2f{bottom:791.167384px;}
.y77{bottom:793.147741px;}
.y134{bottom:797.828583px;}
.yc0{bottom:799.268843px;}
.y89{bottom:805.209912px;}
.y287{bottom:815.023074px;}
.y9b{bottom:817.272083px;}
.yfc{bottom:817.452115px;}
.y2e{bottom:818.892374px;}
.y12c{bottom:819.612504px;}
.y111{bottom:819.792536px;}
.yd{bottom:821.032500px;}
.ydb{bottom:821.412828px;}
.yeb{bottom:821.952925px;}
.y65{bottom:829.694318px;}
.y4f{bottom:833.474998px;}
.y235{bottom:836.987026px;}
.y26a{bottom:839.327448px;}
.ybf{bottom:839.416068px;}
.yc{bottom:840.459000px;}
.y2d{bottom:843.556813px;}
.y88{bottom:845.582177px;}
.y133{bottom:850.263020px;}
.y9a{bottom:857.464316px;}
.y189{bottom:859.461378px;}
.y110{bottom:859.804737px;}
.yb{bottom:859.887000px;}
.y185{bottom:860.098063px;}
.y268{bottom:860.976344px;}
.yda{bottom:861.785093px;}
.yea{bottom:862.145158px;}
.y2c{bottom:871.326811px;}
.y4e{bottom:873.847264px;}
.ybe{bottom:879.788333px;}
.y64{bottom:881.948722px;}
.y264{bottom:883.480394px;}
.y76{bottom:885.909435px;}
.y209{bottom:891.401819px;}
.y284{bottom:891.761884px;}
.y2b{bottom:895.811217px;}
.y99{bottom:897.791573px;}
.y10f{bottom:900.131995px;}
.ye9{bottom:900.312027px;}
.yd9{bottom:902.112351px;}
.ya{bottom:903.223500px;}
.y4d{bottom:914.174522px;}
.ybd{bottom:919.935559px;}
.y9{bottom:922.651500px;}
.y2a{bottom:923.536207px;}
.y75{bottom:926.056660px;}
.y234{bottom:926.688170px;}
.y206{bottom:927.768364px;}
.y181{bottom:932.064643px;}
.y98{bottom:938.118831px;}
.ye8{bottom:940.459252px;}
.y8{bottom:942.078000px;}
.yd8{bottom:942.439609px;}
.y29{bottom:948.200645px;}
.y262{bottom:950.092382px;}
.y4c{bottom:954.321747px;}
.y7{bottom:961.506000px;}
.y203{bottom:965.035071px;}
.y63{bottom:966.383918px;}
.y28{bottom:968.184242px;}
.y25b{bottom:971.156173px;}
.y97{bottom:978.446089px;}
.ye7{bottom:980.786510px;}
.y233{bottom:980.877922px;}
.y283{bottom:987.359089px;}
.y4b{bottom:994.649005px;}
.y27{bottom:1000.410041px;}
.y202{bottom:1003.201940px;}
.y6{bottom:1004.842500px;}
.y74{bottom:1006.711175px;}
.y62{bottom:1018.773346px;}
.y10e{bottom:1018.953379px;}
.ye6{bottom:1021.113767px;}
.y201{bottom:1021.745277px;}
.y5{bottom:1024.270500px;}
.y26{bottom:1032.635841px;}
.y232{bottom:1034.887642px;}
.y4a{bottom:1034.976262px;}
.y25d{bottom:1037.948193px;}
.y1fa{bottom:1040.288614px;}
.y4{bottom:1043.697000px;}
.y281{bottom:1045.149489px;}
.y73{bottom:1047.038433px;}
.y259{bottom:1056.311498px;}
.y61{bottom:1058.920571px;}
.ye5{bottom:1059.100604px;}
.y12b{bottom:1061.260993px;}
.y25{bottom:1067.742159px;}
.y254{bottom:1074.494770px;}
.y1fd{bottom:1076.475127px;}
.y49{bottom:1087.365691px;}
.y231{bottom:1089.077395px;}
.y60{bottom:1099.247829px;}
.y12a{bottom:1099.427861px;}
.y280{bottom:1102.759857px;}
.y1f9{bottom:1105.728995px;}
.y24{bottom:1107.349287px;}
.y257{bottom:1110.501250px;}
.y3{bottom:1125.889500px;}
.y23{bottom:1135.104282px;}
.y253{bottom:1139.425060px;}
.y48{bottom:1139.605092px;}
.y27f{bottom:1139.785124px;}
.y22f{bottom:1143.297152px;}
.y1{bottom:1145.659500px;}
.y46{bottom:1149.156000px;}
.y47{bottom:1150.628715px;}
.y20{bottom:1194.695006px;}
.h2{height:5.598633px;}
.h17{height:14.628789px;}
.h59{height:17.448140px;}
.h63{height:17.463143px;}
.h42{height:17.628173px;}
.h40{height:17.808205px;}
.h4d{height:18.888399px;}
.h71{height:18.903402px;}
.h4f{height:19.983596px;}
.h5c{height:20.328658px;}
.h60{height:20.906262px;}
.h5f{height:21.768918px;}
.h2c{height:24.830699px;}
.h3b{height:25.467383px;}
.h3c{height:25.722057px;}
.h24{height:27.748836px;}
.h2a{height:27.830080px;}
.h25{height:27.876173px;}
.h28{height:27.886785px;}
.h3d{height:28.523469px;}
.hc{height:29.979614px;}
.h66{height:31.685702px;}
.h34{height:32.216240px;}
.h18{height:33.624866px;}
.h20{height:33.634853px;}
.h11{height:34.013725px;}
.h58{height:35.271348px;}
.h26{height:35.389051px;}
.h41{height:35.451380px;}
.h53{height:35.466383px;}
.h23{height:35.898399px;}
.h31{height:36.051203px;}
.h27{height:36.153073px;}
.h2f{height:36.291021px;}
.h45{height:36.531575px;}
.h30{height:36.545695px;}
.h15{height:36.548768px;}
.h1a{height:36.621865px;}
.h36{height:36.815225px;}
.h3a{height:36.942562px;}
.h14{height:36.971441px;}
.h37{height:37.055043px;}
.h44{height:37.431737px;}
.h21{height:37.691727px;}
.h70{height:37.806804px;}
.h2e{height:37.946401px;}
.h3f{height:38.766742px;}
.h54{height:38.886998px;}
.h22{height:39.842527px;}
.h55{height:41.407452px;}
.h33{height:43.283940px;}
.h12{height:43.440017px;}
.h39{height:44.175299px;}
.h13{height:46.580866px;}
.h32{height:46.874841px;}
.ha{height:47.553871px;}
.h4{height:47.868475px;}
.h9{height:48.103813px;}
.h10{height:48.858990px;}
.h1f{height:48.873500px;}
.h68{height:49.328878px;}
.h69{height:49.358883px;}
.h6a{height:49.493907px;}
.h65{height:49.508910px;}
.h5{height:50.827378px;}
.h56{height:51.688990px;}
.h38{height:51.815514px;}
.h35{height:51.942851px;}
.h16{height:52.337370px;}
.h43{height:53.209420px;}
.h4a{height:53.274588px;}
.h4e{height:53.282089px;}
.h47{height:53.289590px;}
.h4c{height:53.310594px;}
.h50{height:53.319596px;}
.h51{height:53.329441px;}
.h49{height:53.454620px;}
.h57{height:53.634653px;}
.h3e{height:53.994717px;}
.h6b{height:56.875236px;}
.he{height:57.372000px;}
.h2d{height:58.309696px;}
.h29{height:58.441278px;}
.h2b{height:58.447645px;}
.h19{height:59.321385px;}
.hb{height:60.225057px;}
.h1b{height:60.594376px;}
.h8{height:61.175502px;}
.h3{height:65.275392px;}
.h5e{height:65.876856px;}
.h62{height:65.891858px;}
.h5b{height:66.056888px;}
.h64{height:67.692182px;}
.h7{height:69.098686px;}
.h4b{height:72.718087px;}
.h6f{height:75.793640px;}
.h6e{height:75.973673px;}
.h6d{height:75.996177px;}
.h1d{height:84.272011px;}
.h5d{height:86.940647px;}
.h61{height:87.518250px;}
.h52{height:88.958510px;}
.h6c{height:94.862072px;}
.h5a{height:102.603465px;}
.h72{height:113.990515px;}
.h1{height:117.340500px;}
.h48{height:124.612426px;}
.h46{height:160.258841px;}
.h1c{height:178.346053px;}
.h67{height:232.451834px;}
.hf{height:631.530883px;}
.h1e{height:718.180209px;}
.hd{height:1212.259500px;}
.h6{height:1254.087000px;}
.h0{height:1263.000000px;}
.w20{width:59.608533px;}
.w2b{width:62.996337px;}
.w32{width:65.156726px;}
.w1{width:71.317500px;}
.w18{width:71.556980px;}
.w19{width:71.563347px;}
.w21{width:74.506952px;}
.w1e{width:74.608822px;}
.w1d{width:74.619433px;}
.w1a{width:74.634289px;}
.w24{width:74.736159px;}
.w25{width:74.761626px;}
.w23{width:76.009528px;}
.w22{width:77.690375px;}
.w16{width:80.466320px;}
.w15{width:80.593657px;}
.w14{width:80.604268px;}
.w13{width:80.619124px;}
.wb{width:82.224617px;}
.w2a{width:84.276167px;}
.w9{width:85.314803px;}
.w17{width:89.507241px;}
.w1f{width:89.634578px;}
.w1b{width:93.337960px;}
.w27{width:94.877075px;}
.w12{width:104.685801px;}
.w31{width:116.141902px;}
.w30{width:116.336937px;}
.w2c{width:126.957348px;}
.w29{width:126.958848px;}
.wd{width:149.703753px;}
.w11{width:159.192368px;}
.w7{width:166.772442px;}
.w6{width:170.473664px;}
.w8{width:170.729323px;}
.w2d{width:180.047403px;}
.w33{width:214.078027px;}
.wf{width:242.886701px;}
.w2e{width:273.668752px;}
.w28{width:275.884650px;}
.wc{width:284.768108px;}
.we{width:288.459783px;}
.w2f{width:299.288862px;}
.w26{width:307.748885px;}
.wa{width:341.585944px;}
.w34{width:477.881003px;}
.w1c{width:756.062942px;}
.w3{width:870.583500px;}
.w5{width:874.877054px;}
.w2{width:874.887236px;}
.w10{width:874.887632px;}
.w4{width:878.553000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:6.163399px;}
.x35{left:8.011614px;}
.x4b{left:9.157647px;}
.x45{left:10.685690px;}
.x17{left:12.114632px;}
.x2c{left:14.123786px;}
.x1{left:15.367500px;}
.x30{left:16.808473px;}
.x2b{left:18.453241px;}
.x38{left:19.737222px;}
.x2e{left:21.647276px;}
.x2f{left:23.812003px;}
.xe{left:25.029258px;}
.xf{left:26.477154px;}
.x3b{left:27.908008px;}
.x40{left:29.160154px;}
.x60{left:30.245443px;}
.x29{left:31.823618px;}
.x37{left:33.107598px;}
.x32{left:35.007041px;}
.x1b{left:36.556061px;}
.x27{left:38.986319px;}
.x24{left:40.875150px;}
.x59{left:42.157587px;}
.x23{left:43.421889px;}
.x43{left:44.811983px;}
.x3d{left:46.605311px;}
.x5a{left:48.998818px;}
.x61{left:50.574102px;}
.x39{left:51.847348px;}
.xc{left:58.125966px;}
.x2{left:59.776500px;}
.x55{left:61.421054px;}
.x13{left:62.885760px;}
.x3{left:64.345500px;}
.x25{left:66.109082px;}
.x10{left:69.525470px;}
.x5b{left:81.710990px;}
.x4{left:89.801946px;}
.x5d{left:102.288409px;}
.x14{left:110.605024px;}
.x3e{left:111.789326px;}
.x6{left:113.026126px;}
.x41{left:131.271874px;}
.x16{left:140.233892px;}
.xb{left:143.805665px;}
.x1f{left:145.325856px;}
.x18{left:152.348524px;}
.x42{left:161.450723px;}
.x34{left:163.615451px;}
.x7{left:169.190234px;}
.x36{left:170.353696px;}
.x19{left:171.443390px;}
.x20{left:175.644261px;}
.x58{left:188.108639px;}
.x1a{left:194.590611px;}
.x11{left:196.277325px;}
.x2a{left:212.640164px;}
.x21{left:252.564748px;}
.x1c{left:253.583141px;}
.x3a{left:268.668407px;}
.x26{left:272.488515px;}
.x62{left:296.878214px;}
.x9{left:311.083500px;}
.x3c{left:356.934113px;}
.x2d{left:361.390905px;}
.x12{left:363.824170px;}
.x53{left:368.891174px;}
.x50{left:375.525303px;}
.x3f{left:398.700622px;}
.x1d{left:415.836464px;}
.xa{left:419.120213px;}
.xd{left:421.872564px;}
.x5{left:423.801056px;}
.x22{left:426.205396px;}
.x8{left:428.301866px;}
.x5c{left:451.706077px;}
.x15{left:452.710773px;}
.x54{left:464.488378px;}
.x46{left:514.227039px;}
.x44{left:531.417523px;}
.x47{left:551.536756px;}
.x48{left:559.558982px;}
.x5e{left:568.772146px;}
.x31{left:578.150171px;}
.x56{left:592.176358px;}
.x49{left:635.069773px;}
.x4a{left:640.927271px;}
.x28{left:642.455314px;}
.x4f{left:645.638737px;}
.x57{left:677.361688px;}
.x51{left:679.882142px;}
.x5f{left:685.823211px;}
.x33{left:723.972164px;}
.x4d{left:726.773576px;}
.x4c{left:728.428956px;}
.x4e{left:770.959486px;}
.x52{left:837.050427px;}
@media print{
.v2{vertical-align:-26.884838pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.324378pt;}
.v1{vertical-align:26.884838pt;}
.ls24{letter-spacing:-0.757470pt;}
.ls1f{letter-spacing:-0.682790pt;}
.ls12{letter-spacing:-0.624112pt;}
.ls21{letter-spacing:-0.522227pt;}
.ls1b{letter-spacing:-0.506758pt;}
.ls31{letter-spacing:-0.466217pt;}
.ls5{letter-spacing:-0.419809pt;}
.ls4{letter-spacing:-0.412341pt;}
.lsc{letter-spacing:-0.373934pt;}
.ls52{letter-spacing:-0.368600pt;}
.ls43{letter-spacing:-0.362203pt;}
.ls42{letter-spacing:-0.316927pt;}
.ls3c{letter-spacing:-0.316833pt;}
.ls4b{letter-spacing:-0.288052pt;}
.lsd{letter-spacing:-0.276316pt;}
.ls1e{letter-spacing:-0.258713pt;}
.ls7{letter-spacing:-0.250712pt;}
.ls49{letter-spacing:-0.240043pt;}
.ls34{letter-spacing:-0.222973pt;}
.ls2a{letter-spacing:-0.212305pt;}
.ls50{letter-spacing:-0.208037pt;}
.lsb{letter-spacing:-0.192035pt;}
.ls2d{letter-spacing:-0.184567pt;}
.ls35{letter-spacing:-0.173898pt;}
.lsa{letter-spacing:-0.171764pt;}
.ls14{letter-spacing:-0.156295pt;}
.ls17{letter-spacing:-0.154695pt;}
.ls3b{letter-spacing:-0.135786pt;}
.ls16{letter-spacing:-0.117888pt;}
.ls15{letter-spacing:-0.102418pt;}
.ls26{letter-spacing:-0.097084pt;}
.ls40{letter-spacing:-0.068668pt;}
.ls39{letter-spacing:-0.068647pt;}
.ls3{letter-spacing:-0.043528pt;}
.ls2b{letter-spacing:-0.038407pt;}
.ls1a{letter-spacing:-0.023044pt;}
.ls4a{letter-spacing:-0.016003pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.011319pt;}
.ls4d{letter-spacing:0.016003pt;}
.ls29{letter-spacing:0.017923pt;}
.ls45{letter-spacing:0.032006pt;}
.ls4f{letter-spacing:0.048009pt;}
.ls13{letter-spacing:0.061344pt;}
.ls23{letter-spacing:0.062731pt;}
.ls3f{letter-spacing:0.067913pt;}
.ls27{letter-spacing:0.076814pt;}
.ls19{letter-spacing:0.079374pt;}
.ls25{letter-spacing:0.079481pt;}
.ls44{letter-spacing:0.090551pt;}
.ls20{letter-spacing:0.115221pt;}
.ls10{letter-spacing:0.117888pt;}
.ls8{letter-spacing:0.125356pt;}
.ls2{letter-spacing:0.126743pt;}
.ls1d{letter-spacing:0.133144pt;}
.ls22{letter-spacing:0.133357pt;}
.ls3a{letter-spacing:0.135786pt;}
.ls3d{letter-spacing:0.135826pt;}
.ls41{letter-spacing:0.147145pt;}
.ls4c{letter-spacing:0.160029pt;}
.ls32{letter-spacing:0.161309pt;}
.ls46{letter-spacing:0.176032pt;}
.ls18{letter-spacing:0.176672pt;}
.ls36{letter-spacing:0.181048pt;}
.ls47{letter-spacing:0.192035pt;}
.ls1c{letter-spacing:0.212305pt;}
.ls6{letter-spacing:0.220306pt;}
.lse{letter-spacing:0.227774pt;}
.ls2f{letter-spacing:0.227881pt;}
.ls30{letter-spacing:0.233002pt;}
.ls4e{letter-spacing:0.256046pt;}
.ls11{letter-spacing:0.271409pt;}
.ls51{letter-spacing:0.271516pt;}
.ls33{letter-spacing:0.284318pt;}
.lsf{letter-spacing:0.330193pt;}
.ls48{letter-spacing:0.416075pt;}
.ls9{letter-spacing:0.542818pt;}
.ls28{letter-spacing:0.702846pt;}
.ls37{letter-spacing:1.538905pt;}
.ls38{letter-spacing:2.444143pt;}
.ls0{letter-spacing:16.249887pt;}
.ls2e{letter-spacing:104.450584pt;}
.ls2c{letter-spacing:133.895884pt;}
.ws38{word-spacing:-33.956511pt;}
.ws44{word-spacing:-16.643102pt;}
.ws27{word-spacing:-16.371586pt;}
.ws24{word-spacing:-16.274502pt;}
.ws3{word-spacing:-16.248396pt;}
.ws28{word-spacing:-15.905369pt;}
.ws16{word-spacing:-13.639468pt;}
.ws2d{word-spacing:-13.537156pt;}
.ws15{word-spacing:-13.537050pt;}
.ws22{word-spacing:-13.521580pt;}
.ws1d{word-spacing:-13.485947pt;}
.ws11{word-spacing:-13.434631pt;}
.ws17{word-spacing:-13.427163pt;}
.ws21{word-spacing:-13.424496pt;}
.ws23{word-spacing:-13.388756pt;}
.ws19{word-spacing:-13.370620pt;}
.wsd{word-spacing:-13.309275pt;}
.ws1e{word-spacing:-13.286231pt;}
.wsf{word-spacing:-13.265747pt;}
.ws2c{word-spacing:-13.212191pt;}
.ws1b{word-spacing:-13.206857pt;}
.ws25{word-spacing:-13.191387pt;}
.ws1a{word-spacing:-13.152980pt;}
.ws2b{word-spacing:-13.135377pt;}
.ws29{word-spacing:-13.124709pt;}
.ws12{word-spacing:-13.117241pt;}
.ws26{word-spacing:-13.096970pt;}
.ws2a{word-spacing:-13.086302pt;}
.ws1f{word-spacing:-13.050562pt;}
.ws14{word-spacing:-13.032959pt;}
.ws13{word-spacing:-12.935341pt;}
.ws10{word-spacing:-12.896934pt;}
.ws18{word-spacing:-12.685163pt;}
.ws20{word-spacing:-12.626486pt;}
.ws33{word-spacing:-11.510955pt;}
.ws2e{word-spacing:-11.507538pt;}
.ws40{word-spacing:-11.025984pt;}
.ws41{word-spacing:-10.897961pt;}
.ws42{word-spacing:-10.865956pt;}
.ws3b{word-spacing:-10.849953pt;}
.ws3d{word-spacing:-10.833950pt;}
.ws43{word-spacing:-10.641915pt;}
.ws3c{word-spacing:-10.609909pt;}
.ws3f{word-spacing:-10.561901pt;}
.ws30{word-spacing:-10.229191pt;}
.ws31{word-spacing:-10.093405pt;}
.ws32{word-spacing:-9.912357pt;}
.ws36{word-spacing:-9.587055pt;}
.ws35{word-spacing:-9.575736pt;}
.ws3a{word-spacing:-9.530461pt;}
.ws34{word-spacing:-9.439910pt;}
.ws37{word-spacing:-9.122983pt;}
.ws39{word-spacing:-9.077707pt;}
.wse{word-spacing:-8.390630pt;}
.ws1c{word-spacing:-8.235936pt;}
.ws3e{word-spacing:-7.233302pt;}
.ws8{word-spacing:-3.506848pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.818265pt;}
.wsb{word-spacing:0.993607pt;}
.wsc{word-spacing:1.987214pt;}
.wsa{word-spacing:2.688583pt;}
.ws9{word-spacing:2.863926pt;}
.ws5{word-spacing:5.143377pt;}
.ws4{word-spacing:16.189948pt;}
.ws7{word-spacing:17.008213pt;}
.ws2f{word-spacing:22.902524pt;}
.ws2{word-spacing:437.713078pt;}
.ws1{word-spacing:470.151422pt;}
._5{margin-left:-6.487669pt;}
._3{margin-left:-4.325113pt;}
._d{margin-left:-3.156163pt;}
._0{margin-left:-2.162556pt;}
._2{margin-left:-1.052054pt;}
._e{width:0.939478pt;}
._f{width:2.655365pt;}
._10{width:3.824631pt;}
._9{width:13.267575pt;}
._c{width:16.248396pt;}
._a{width:29.399076pt;}
._1{width:32.496791pt;}
._b{width:33.782636pt;}
._7{width:184.284862pt;}
._8{width:216.781654pt;}
._6{width:236.269862pt;}
._4{width:288.262906pt;}
._12{width:751.905345pt;}
._11{width:754.967656pt;}
.fs0{font-size:7.466667pt;}
.fse{font-size:32.005760pt;}
.fsc{font-size:33.956511pt;}
.fs5{font-size:37.126682pt;}
.fs8{font-size:37.567382pt;}
.fs7{font-size:41.640953pt;}
.fsb{font-size:41.653320pt;}
.fs9{font-size:45.261906pt;}
.fsa{font-size:45.352429pt;}
.fsd{font-size:48.008640pt;}
.fs2{font-size:58.447467pt;}
.fs3{font-size:58.890598pt;}
.fsf{font-size:64.011520pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:74.893478pt;}
.fs1{font-size:79.701333pt;}
.y1e6{bottom:-27.853771pt;}
.y1a9{bottom:-19.242023pt;}
.y1c0{bottom:-18.911890pt;}
.y1e5{bottom:-17.327253pt;}
.y1ca{bottom:-10.866084pt;}
.y1a8{bottom:-8.715505pt;}
.y1bf{bottom:-8.385372pt;}
.y193{bottom:-8.064671pt;}
.y1ef{bottom:-7.479865pt;}
.y196{bottom:-7.385541pt;}
.y1b0{bottom:-7.357244pt;}
.y1b5{bottom:-7.017679pt;}
.y1d4{bottom:-6.800735pt;}
.y1d9{bottom:-6.564925pt;}
.y1c9{bottom:-0.339565pt;}
.y1e2{bottom:-0.226377pt;}
.y0{bottom:0.000000pt;}
.y1a7{bottom:1.811014pt;}
.y1a0{bottom:1.820446pt;}
.y1be{bottom:2.141147pt;}
.y192{bottom:2.490144pt;}
.y194{bottom:2.716521pt;}
.y14e{bottom:2.828869pt;}
.y1ee{bottom:3.046654pt;}
.y188{bottom:3.169274pt;}
.y26f{bottom:3.200576pt;}
.y1b9{bottom:3.273030pt;}
.y261{bottom:3.360605pt;}
.y1b4{bottom:3.508839pt;}
.y1d3{bottom:3.725784pt;}
.y1a3{bottom:3.848405pt;}
.y1d8{bottom:3.961593pt;}
.y25a{bottom:4.160749pt;}
.y200{bottom:4.320778pt;}
.y1ea{bottom:4.414346pt;}
.y225{bottom:4.467471pt;}
.y22e{bottom:4.474139pt;}
.y1fe{bottom:4.480806pt;}
.y1ed{bottom:4.527535pt;}
.y184{bottom:4.753912pt;}
.y1ae{bottom:4.980288pt;}
.y208{bottom:5.280950pt;}
.y22a{bottom:5.427643pt;}
.y23c{bottom:5.601008pt;}
.y222{bottom:5.921066pt;}
.y205{bottom:6.081094pt;}
.y18b{bottom:6.338549pt;}
.y230{bottom:6.401152pt;}
.y18e{bottom:6.564925pt;}
.y263{bottom:6.721210pt;}
.y1cf{bottom:6.904491pt;}
.y1f2{bottom:7.017679pt;}
.y26b{bottom:7.201296pt;}
.y23f{bottom:7.361325pt;}
.y1f{bottom:7.922667pt;}
.y269{bottom:8.001440pt;}
.y242{bottom:9.601728pt;}
.y1c4{bottom:9.734200pt;}
.y1c8{bottom:10.186953pt;}
.y1e1{bottom:10.300142pt;}
.y160{bottom:10.589400pt;}
.y19e{bottom:12.271506pt;}
.y19c{bottom:12.337532pt;}
.y1bd{bottom:12.667665pt;}
.y191{bottom:13.016663pt;}
.y1ac{bottom:13.233607pt;}
.y1b8{bottom:13.601469pt;}
.y187{bottom:13.695793pt;}
.y1b3{bottom:14.035358pt;}
.y14c{bottom:14.144346pt;}
.y1a2{bottom:14.148546pt;}
.y1d2{bottom:14.280599pt;}
.y1e4{bottom:14.393788pt;}
.y149{bottom:14.483810pt;}
.y1d7{bottom:14.488111pt;}
.y1e9{bottom:14.714488pt;}
.y1ec{bottom:14.940865pt;}
.y183{bottom:15.280430pt;}
.y274{bottom:16.803024pt;}
.y18d{bottom:16.865067pt;}
.y18a{bottom:16.978256pt;}
.y1ce{bottom:17.204632pt;}
.y1f1{bottom:17.431009pt;}
.y267{bottom:17.923226pt;}
.y27a{bottom:17.949897pt;}
.y260{bottom:18.083254pt;}
.y258{bottom:20.003600pt;}
.y1c3{bottom:20.034342pt;}
.y224{bottom:20.150293pt;}
.y1ff{bottom:20.163629pt;}
.y228{bottom:20.310322pt;}
.y22d{bottom:20.316990pt;}
.y212{bottom:20.323658pt;}
.y239{bottom:20.363665pt;}
.y256{bottom:20.643715pt;}
.y1c7{bottom:20.713472pt;}
.y1fc{bottom:20.803744pt;}
.y1e0{bottom:20.826660pt;}
.y207{bottom:21.123802pt;}
.y221{bottom:21.763917pt;}
.y204{bottom:21.923946pt;}
.y1a6{bottom:22.864051pt;}
.y19b{bottom:22.977239pt;}
.y23e{bottom:23.204176pt;}
.y1bc{bottom:23.222481pt;}
.y190{bottom:23.543181pt;}
.y1b7{bottom:24.127988pt;}
.y1ab{bottom:24.212879pt;}
.y186{bottom:24.222311pt;}
.y1af{bottom:24.335500pt;}
.y1b2{bottom:24.561876pt;}
.y1d1{bottom:24.807118pt;}
.y1e3{bottom:24.920306pt;}
.y1d6{bottom:25.014630pt;}
.y241{bottom:25.444579pt;}
.y182{bottom:25.806948pt;}
.y1dd{bottom:27.617962pt;}
.y1cd{bottom:27.731151pt;}
.y14b{bottom:28.062382pt;}
.y148{bottom:28.401846pt;}
.y1c2{bottom:30.560860pt;}
.y14a{bottom:31.230715pt;}
.y1df{bottom:31.353179pt;}
.y26e{bottom:32.485846pt;}
.y279{bottom:32.512518pt;}
.y25f{bottom:32.645875pt;}
.y15f{bottom:33.107198pt;}
.y1a5{bottom:33.390569pt;}
.y19a{bottom:33.503758pt;}
.y1bb{bottom:33.748999pt;}
.y168{bottom:35.541148pt;}
.y139{bottom:35.666382pt;}
.y22c{bottom:35.994478pt;}
.y214{bottom:36.006480pt;}
.y21a{bottom:36.033151pt;}
.y227{bottom:36.153173pt;}
.y211{bottom:36.166509pt;}
.y238{bottom:36.206516pt;}
.y255{bottom:36.326538pt;}
.y1fb{bottom:36.646595pt;}
.y282{bottom:36.966653pt;}
.y289{bottom:37.006660pt;}
.y28b{bottom:37.126682pt;}
.y220{bottom:37.446739pt;}
.y1dc{bottom:38.144481pt;}
.y1cc{bottom:38.257669pt;}
.y157{bottom:40.575413pt;}
.y153{bottom:41.914411pt;}
.y1a4{bottom:43.917088pt;}
.y199{bottom:44.030276pt;}
.y45{bottom:45.102667pt;}
.y266{bottom:47.208496pt;}
.y25e{bottom:47.368525pt;}
.y167{bottom:47.448565pt;}
.y138{bottom:47.547632pt;}
.y272{bottom:48.808784pt;}
.y22{bottom:50.441078pt;}
.y219{bottom:51.876003pt;}
.y237{bottom:51.889338pt;}
.y210{bottom:52.009360pt;}
.y21f{bottom:53.289590pt;}
.y28d{bottom:53.769677pt;}
.y286{bottom:53.929706pt;}
.y288{bottom:53.969713pt;}
.y15e{bottom:55.511841pt;}
.y162{bottom:61.537333pt;}
.y265{bottom:65.931866pt;}
.y26d{bottom:66.411952pt;}
.y21{bottom:67.244102pt;}
.y20f{bottom:67.692182pt;}
.y218{bottom:67.718854pt;}
.y236{bottom:67.732190pt;}
.y285{bottom:70.732730pt;}
.y180{bottom:73.481890pt;}
.y15d{bottom:78.029639pt;}
.y25c{bottom:79.854371pt;}
.y151{bottom:80.475668pt;}
.y20e{bottom:83.535034pt;}
.y217{bottom:83.561705pt;}
.y291{bottom:87.722454pt;}
.y17f{bottom:94.757531pt;}
.y20d{bottom:99.377885pt;}
.y216{bottom:99.404556pt;}
.y15c{bottom:100.462571pt;}
.y150{bottom:101.744992pt;}
.y2{bottom:102.533333pt;}
.y87{bottom:110.611907pt;}
.y5f{bottom:114.452598pt;}
.y20c{bottom:115.260743pt;}
.y17e{bottom:115.923756pt;}
.yd0{bottom:116.052886pt;}
.y44{bottom:116.853030pt;}
.y252{bottom:117.013059pt;}
.y22b{bottom:118.381212pt;}
.y10d{bottom:119.733548pt;}
.y14f{bottom:120.076064pt;}
.yd5{bottom:121.333836pt;}
.y123{bottom:121.653894pt;}
.y15b{bottom:122.867215pt;}
.yfb{bottom:123.734268pt;}
.y132{bottom:123.894297pt;}
.y96{bottom:125.174527pt;}
.ye4{bottom:125.654614pt;}
.ybc{bottom:126.614787pt;}
.y20b{bottom:131.103594pt;}
.ya4{bottom:132.055766pt;}
.y72{bottom:133.175967pt;}
.y155{bottom:135.719710pt;}
.y17d{bottom:137.203169pt;}
.y15a{bottom:145.385013pt;}
.y86{bottom:146.453023pt;}
.y43{bottom:146.773081pt;}
.y251{bottom:146.933110pt;}
.y154{bottom:149.411437pt;}
.ycf{bottom:151.733974pt;}
.y10c{bottom:155.414636pt;}
.yd4{bottom:157.174953pt;}
.y122{bottom:157.495011pt;}
.y17c{bottom:158.369395pt;}
.yfa{bottom:159.575385pt;}
.y5e{bottom:160.855615pt;}
.ye3{bottom:161.335702pt;}
.ybb{bottom:162.455903pt;}
.y42{bottom:165.976537pt;}
.y229{bottom:166.551215pt;}
.ya3{bottom:167.736854pt;}
.y95{bottom:171.577545pt;}
.y250{bottom:177.018524pt;}
.y17b{bottom:179.563917pt;}
.y71{bottom:179.578985pt;}
.y85{bottom:182.299475pt;}
.y226{bottom:183.994354pt;}
.yce{bottom:187.580425pt;}
.y10b{bottom:191.261087pt;}
.yd3{bottom:192.861375pt;}
.y121{bottom:193.341462pt;}
.y276{bottom:195.261807pt;}
.yf9{bottom:195.421836pt;}
.y41{bottom:196.061951pt;}
.y5d{bottom:196.702067pt;}
.ye2{bottom:197.022124pt;}
.y11d{bottom:197.502211pt;}
.yba{bottom:198.142326pt;}
.y17a{bottom:200.843331pt;}
.ya2{bottom:203.583305pt;}
.y24f{bottom:206.943910pt;}
.y94{bottom:207.423996pt;}
.yad{bottom:218.145926pt;}
.y179{bottom:222.009556pt;}
.ycd{bottom:223.426876pt;}
.y40{bottom:225.987337pt;}
.y70{bottom:226.147366pt;}
.y10a{bottom:226.947510pt;}
.y129{bottom:227.107539pt;}
.y84{bottom:228.707827pt;}
.y120{bottom:229.027884pt;}
.ye1{bottom:230.948230pt;}
.yf8{bottom:231.108259pt;}
.y223{bottom:232.163023pt;}
.y5c{bottom:232.548518pt;}
.y11c{bottom:233.188633pt;}
.y24e{bottom:237.029324pt;}
.ya1{bottom:239.429756pt;}
.y93{bottom:243.270447pt;}
.y178{bottom:243.288969pt;}
.y165{bottom:250.109333pt;}
.yb9{bottom:250.151686pt;}
.y146{bottom:252.042808pt;}
.yac{bottom:253.832348pt;}
.y3f{bottom:256.112759pt;}
.y1f8{bottom:257.392989pt;}
.ycc{bottom:259.313335pt;}
.y109{bottom:262.833968pt;}
.y11f{bottom:262.993997pt;}
.y177{bottom:264.455195pt;}
.y83{bottom:264.594285pt;}
.yf7{bottom:265.074371pt;}
.ye0{bottom:266.674659pt;}
.y131{bottom:266.994717pt;}
.y5b{bottom:268.434976pt;}
.y11b{bottom:269.075091pt;}
.y145{bottom:271.297977pt;}
.y6f{bottom:272.595725pt;}
.y3e{bottom:275.316215pt;}
.y1e{bottom:276.838667pt;}
.y92{bottom:279.156906pt;}
.y21e{bottom:280.198334pt;}
.y176{bottom:285.734608pt;}
.yb8{bottom:285.878115pt;}
.y1f7{bottom:287.318375pt;}
.y136{bottom:288.621333pt;}
.yab{bottom:289.718807pt;}
.y144{bottom:290.534287pt;}
.y1d{bottom:294.106667pt;}
.y24d{bottom:296.920103pt;}
.y108{bottom:298.680419pt;}
.y82{bottom:300.440736pt;}
.yf6{bottom:300.760794pt;}
.ydf{bottom:302.521111pt;}
.y130{bottom:302.841168pt;}
.y5a{bottom:304.281427pt;}
.y11a{bottom:304.921543pt;}
.y3d{bottom:305.401629pt;}
.ycb{bottom:305.721687pt;}
.y175{bottom:306.900834pt;}
.y143{bottom:309.770597pt;}
.ya0{bottom:311.162666pt;}
.y158{bottom:313.504704pt;}
.y91{bottom:314.843328pt;}
.y1f6{bottom:317.403789pt;}
.y6e{bottom:319.164106pt;}
.yb7{bottom:321.724567pt;}
.yaa{bottom:325.565258pt;}
.y24c{bottom:327.005517pt;}
.y174{bottom:328.085924pt;}
.y142{bottom:329.006906pt;}
.y128{bottom:332.606525pt;}
.y1c{bottom:332.629333pt;}
.y107{bottom:334.526871pt;}
.y3c{bottom:335.327015pt;}
.y81{bottom:336.287187pt;}
.yde{bottom:336.447216pt;}
.yf5{bottom:336.607245pt;}
.y12f{bottom:338.687619pt;}
.y119{bottom:338.847648pt;}
.y59{bottom:339.967850pt;}
.yca{bottom:341.568138pt;}
.y21d{bottom:345.490085pt;}
.y9f{bottom:346.849088pt;}
.y141{bottom:348.243216pt;}
.y173{bottom:349.365337pt;}
.y1b{bottom:349.897333pt;}
.y294{bottom:354.210413pt;}
.y27e{bottom:354.530471pt;}
.y24b{bottom:356.930903pt;}
.yb6{bottom:357.571018pt;}
.y1aa{bottom:357.666582pt;}
.y90{bottom:361.411709pt;}
.y1f5{bottom:362.691939pt;}
.y3b{bottom:365.412429pt;}
.y6d{bottom:365.572458pt;}
.y1a{bottom:367.166667pt;}
.y140{bottom:367.479526pt;}
.y127{bottom:368.292947pt;}
.y106{bottom:370.373322pt;}
.y172{bottom:370.531562pt;}
.y80{bottom:371.973610pt;}
.yf4{bottom:372.453696pt;}
.y118{bottom:374.534071pt;}
.y58{bottom:375.814301pt;}
.yc9{bottom:377.414589pt;}
.y9e{bottom:382.695539pt;}
.y27d{bottom:383.015597pt;}
.y293{bottom:383.335655pt;}
.y19{bottom:384.434667pt;}
.y3a{bottom:384.615885pt;}
.y13f{bottom:386.744125pt;}
.y24a{bottom:387.016317pt;}
.y171{bottom:391.810976pt;}
.yb5{bottom:393.417469pt;}
.y21c{bottom:393.658753pt;}
.ya9{bottom:397.258160pt;}
.y27c{bottom:398.698419pt;}
.y18{bottom:401.704000pt;}
.y126{bottom:403.979370pt;}
.y1ba{bottom:405.092509pt;}
.y13e{bottom:405.980435pt;}
.y105{bottom:406.059744pt;}
.y7f{bottom:407.820061pt;}
.yf3{bottom:408.140119pt;}
.y152{bottom:410.036395pt;}
.y117{bottom:410.220493pt;}
.y57{bottom:411.660752pt;}
.y6c{bottom:411.980810pt;}
.y292{bottom:412.140839pt;}
.y170{bottom:412.977201pt;}
.yc8{bottom:413.261040pt;}
.y39{bottom:414.701299pt;}
.y1b6{bottom:415.279463pt;}
.y1d0{bottom:415.392651pt;}
.y249{bottom:416.941703pt;}
.y9d{bottom:418.541991pt;}
.y275{bottom:418.623246pt;}
.y1f4{bottom:418.702019pt;}
.y17{bottom:418.972000pt;}
.y13d{bottom:425.216745pt;}
.yb4{bottom:429.263920pt;}
.y164{bottom:431.666566pt;}
.ya8{bottom:432.944583pt;}
.y16f{bottom:434.143426pt;}
.y290{bottom:434.306069pt;}
.y125{bottom:439.825821pt;}
.y21b{bottom:441.667393pt;}
.y104{bottom:441.906195pt;}
.y7e{bottom:443.666512pt;}
.yf2{bottom:443.986570pt;}
.y12e{bottom:444.146599pt;}
.y13c{bottom:444.453055pt;}
.y38{bottom:444.626685pt;}
.y116{bottom:446.066944pt;}
.y248{bottom:447.027117pt;}
.y56{bottom:447.507203pt;}
.yc7{bottom:448.947463pt;}
.y163{bottom:454.071210pt;}
.y8f{bottom:454.388442pt;}
.y16e{bottom:455.451137pt;}
.y6b{bottom:458.549191pt;}
.y27b{bottom:463.271281pt;}
.y13b{bottom:463.802519pt;}
.yb3{bottom:464.950343pt;}
.ya7{bottom:468.791034pt;}
.y19f{bottom:468.826994pt;}
.y198{bottom:468.836426pt;}
.y19d{bottom:468.902453pt;}
.y1cb{bottom:473.816715pt;}
.y1db{bottom:474.156280pt;}
.y37{bottom:474.712099pt;}
.y124{bottom:475.672272pt;}
.y16d{bottom:476.617362pt;}
.y247{bottom:476.952503pt;}
.y103{bottom:477.752647pt;}
.y1de{bottom:477.778308pt;}
.y7d{bottom:479.512963pt;}
.yf1{bottom:479.833021pt;}
.y14d{bottom:481.597354pt;}
.y115{bottom:481.913395pt;}
.y1c1{bottom:482.305843pt;}
.y13a{bottom:483.717758pt;}
.yc6{bottom:484.793914pt;}
.y215{bottom:489.836062pt;}
.y8e{bottom:490.234893pt;}
.y55{bottom:493.915555pt;}
.y147{bottom:495.289081pt;}
.y16c{bottom:497.896776pt;}
.y16{bottom:500.001333pt;}
.yb2{bottom:500.796794pt;}
.y36{bottom:503.197226pt;}
.ya6{bottom:504.664157pt;}
.y6a{bottom:504.984214pt;}
.y246{bottom:506.904560pt;}
.y278{bottom:507.919317pt;}
.yd7{bottom:511.545395pt;}
.y102{bottom:513.625769pt;}
.y7c{bottom:515.386086pt;}
.yf0{bottom:515.706144pt;}
.y15{bottom:517.270667pt;}
.y114{bottom:517.786518pt;}
.y137{bottom:518.361975pt;}
.y16b{bottom:519.063001pt;}
.y8d{bottom:525.947987pt;}
.yc5{bottom:531.388966pt;}
.y35{bottom:531.869053pt;}
.y14{bottom:534.538667pt;}
.y28f{bottom:536.271086pt;}
.yb1{bottom:536.669917pt;}
.y245{bottom:536.989974pt;}
.y16a{bottom:540.342415pt;}
.y54{bottom:540.510608pt;}
.yd6{bottom:547.391846pt;}
.y101{bottom:549.472221pt;}
.y7b{bottom:551.072509pt;}
.y69{bottom:551.552595pt;}
.y13{bottom:551.808000pt;}
.y277{bottom:552.594023pt;}
.y113{bottom:553.632969pt;}
.y28e{bottom:553.874254pt;}
.y244{bottom:555.233257pt;}
.y34{bottom:560.354179pt;}
.y169{bottom:560.829510pt;}
.y1f0{bottom:560.990625pt;}
.y8c{bottom:561.794438pt;}
.y1da{bottom:561.896132pt;}
.yc4{bottom:567.075389pt;}
.y12{bottom:569.076000pt;}
.y243{bottom:570.916080pt;}
.yd2{bottom:572.516368pt;}
.y53{bottom:576.357059pt;}
.yb0{bottom:583.078269pt;}
.y159{bottom:583.502649pt;}
.y156{bottom:583.955268pt;}
.y100{bottom:585.158643pt;}
.y12d{bottom:585.318672pt;}
.ya5{bottom:586.918960pt;}
.yef{bottom:587.239017pt;}
.y112{bottom:587.399046pt;}
.y28c{bottom:588.280446pt;}
.y33{bottom:588.999334pt;}
.y240{bottom:591.000935pt;}
.y166{bottom:595.484016pt;}
.y273{bottom:597.082030pt;}
.y7a{bottom:597.640889pt;}
.y68{bottom:597.960947pt;}
.y1c6{bottom:598.795540pt;}
.y1b1{bottom:598.908729pt;}
.y213{bottom:601.242778pt;}
.y1f3{bottom:602.078003pt;}
.yc3{bottom:602.921840pt;}
.y1a1{bottom:604.568147pt;}
.y1eb{bottom:604.794524pt;}
.y1e8{bottom:606.039596pt;}
.y11{bottom:607.598667pt;}
.yd1{bottom:608.362819pt;}
.y52{bottom:612.043481pt;}
.y32{bottom:617.484461pt;}
.yaf{bottom:618.924720pt;}
.yff{bottom:621.005094pt;}
.ydd{bottom:622.765411pt;}
.yee{bottom:623.085469pt;}
.y10{bottom:624.866667pt;}
.y271{bottom:625.887214pt;}
.y23d{bottom:628.447674pt;}
.y79{bottom:633.487341pt;}
.y1ad{bottom:638.637847pt;}
.yc2{bottom:638.768291pt;}
.y1d5{bottom:641.127991pt;}
.yf{bottom:642.134667pt;}
.y8b{bottom:644.049241pt;}
.y1e7{bottom:644.297265pt;}
.y67{bottom:644.529328pt;}
.y31{bottom:646.129616pt;}
.y197{bottom:646.221467pt;}
.y1c5{bottom:647.466539pt;}
.y51{bottom:647.889933pt;}
.y20a{bottom:649.251418pt;}
.yae{bottom:654.771171pt;}
.y11e{bottom:654.931200pt;}
.y28a{bottom:656.292686pt;}
.yfe{bottom:656.851545pt;}
.ydc{bottom:658.611862pt;}
.yed{bottom:658.931920pt;}
.y23b{bottom:663.654010pt;}
.y78{bottom:669.333792pt;}
.y270{bottom:670.535249pt;}
.yc1{bottom:674.614742pt;}
.y30{bottom:674.774771pt;}
.y135{bottom:679.255577pt;}
.y8a{bottom:679.895693pt;}
.ye{bottom:680.657333pt;}
.y26c{bottom:686.858186pt;}
.y9c{bottom:690.617622pt;}
.y66{bottom:690.937680pt;}
.yfd{bottom:692.697997pt;}
.y195{bottom:693.222938pt;}
.y50{bottom:694.458313pt;}
.yec{bottom:694.778371pt;}
.y161{bottom:695.978484pt;}
.y23a{bottom:695.979828pt;}
.y18f{bottom:698.655980pt;}
.y18c{bottom:699.674675pt;}
.y2f{bottom:703.259897pt;}
.y77{bottom:705.020214pt;}
.y134{bottom:709.180963pt;}
.yc0{bottom:710.461193pt;}
.y89{bottom:715.742144pt;}
.y287{bottom:724.464954pt;}
.y9b{bottom:726.464073pt;}
.yfc{bottom:726.624102pt;}
.y2e{bottom:727.904333pt;}
.y12c{bottom:728.544448pt;}
.y111{bottom:728.704477pt;}
.yd{bottom:729.806667pt;}
.ydb{bottom:730.144736pt;}
.yeb{bottom:730.624822pt;}
.y65{bottom:737.506061pt;}
.y4f{bottom:740.866665pt;}
.y235{bottom:743.988468pt;}
.y26a{bottom:746.068842pt;}
.ybf{bottom:746.147616pt;}
.yc{bottom:747.074667pt;}
.y2d{bottom:749.828278pt;}
.y88{bottom:751.628602pt;}
.y133{bottom:755.789351pt;}
.y9a{bottom:762.190503pt;}
.y189{bottom:763.965669pt;}
.y110{bottom:764.270877pt;}
.yb{bottom:764.344000pt;}
.y185{bottom:764.531611pt;}
.y268{bottom:765.312306pt;}
.yda{bottom:766.031194pt;}
.yea{bottom:766.351252pt;}
.y2c{bottom:774.512721pt;}
.y4e{bottom:776.753124pt;}
.ybe{bottom:782.034074pt;}
.y64{bottom:783.954420pt;}
.y264{bottom:785.315906pt;}
.y76{bottom:787.475053pt;}
.y209{bottom:792.357173pt;}
.y284{bottom:792.677230pt;}
.y2b{bottom:796.276637pt;}
.y99{bottom:798.036954pt;}
.y10f{bottom:800.117329pt;}
.ye9{bottom:800.277357pt;}
.yd9{bottom:801.877645pt;}
.ya{bottom:802.865333pt;}
.y4d{bottom:812.599575pt;}
.ybd{bottom:817.720497pt;}
.y9{bottom:820.134667pt;}
.y2a{bottom:820.921073pt;}
.y75{bottom:823.161476pt;}
.y234{bottom:823.722818pt;}
.y206{bottom:824.682990pt;}
.y181{bottom:828.501905pt;}
.y98{bottom:833.883405pt;}
.ye8{bottom:835.963780pt;}
.y8{bottom:837.402667pt;}
.yd8{bottom:837.724097pt;}
.y29{bottom:842.845018pt;}
.y262{bottom:844.526562pt;}
.y4c{bottom:848.285997pt;}
.y7{bottom:854.672000pt;}
.y203{bottom:857.808952pt;}
.y63{bottom:859.007927pt;}
.y28{bottom:860.608215pt;}
.y25b{bottom:863.249931pt;}
.y97{bottom:869.729857pt;}
.ye7{bottom:871.810231pt;}
.y233{bottom:871.891486pt;}
.y283{bottom:877.652523pt;}
.y4b{bottom:884.132449pt;}
.y27{bottom:889.253370pt;}
.y202{bottom:891.735058pt;}
.y6{bottom:893.193333pt;}
.y74{bottom:894.854378pt;}
.y62{bottom:905.576308pt;}
.y10e{bottom:905.736337pt;}
.ye6{bottom:907.656682pt;}
.y201{bottom:908.218024pt;}
.y5{bottom:910.462667pt;}
.y26{bottom:917.898525pt;}
.y232{bottom:919.900126pt;}
.y4a{bottom:919.978900pt;}
.y25d{bottom:922.620616pt;}
.y1fa{bottom:924.700990pt;}
.y4{bottom:927.730667pt;}
.y281{bottom:929.021768pt;}
.y73{bottom:930.700829pt;}
.y259{bottom:938.943554pt;}
.y61{bottom:941.262730pt;}
.ye5{bottom:941.422759pt;}
.y12b{bottom:943.343105pt;}
.y25{bottom:949.104141pt;}
.y254{bottom:955.106462pt;}
.y1fd{bottom:956.866779pt;}
.y49{bottom:966.547281pt;}
.y231{bottom:968.068795pt;}
.y60{bottom:977.109181pt;}
.y12a{bottom:977.269210pt;}
.y280{bottom:980.230984pt;}
.y1f9{bottom:982.870218pt;}
.y24{bottom:984.310477pt;}
.y257{bottom:987.112222pt;}
.y3{bottom:1000.790667pt;}
.y23{bottom:1008.981584pt;}
.y253{bottom:1012.822275pt;}
.y48{bottom:1012.982304pt;}
.y27f{bottom:1013.142333pt;}
.y22f{bottom:1016.264135pt;}
.y1{bottom:1018.364000pt;}
.y46{bottom:1021.472000pt;}
.y47{bottom:1022.781080pt;}
.y20{bottom:1061.951117pt;}
.h2{height:4.976563pt;}
.h17{height:13.003368pt;}
.h59{height:15.509458pt;}
.h63{height:15.522794pt;}
.h42{height:15.669487pt;}
.h40{height:15.829515pt;}
.h4d{height:16.789688pt;}
.h71{height:16.803024pt;}
.h4f{height:17.763197pt;}
.h5c{height:18.069919pt;}
.h60{height:18.583344pt;}
.h5f{height:19.350149pt;}
.h2c{height:22.071732pt;}
.h3b{height:22.637674pt;}
.h3c{height:22.864051pt;}
.h24{height:24.665632pt;}
.h2a{height:24.737849pt;}
.h25{height:24.778821pt;}
.h28{height:24.788253pt;}
.h3d{height:25.354195pt;}
.hc{height:26.648546pt;}
.h66{height:28.165069pt;}
.h34{height:28.636658pt;}
.h18{height:29.888770pt;}
.h20{height:29.897647pt;}
.h11{height:30.234423pt;}
.h58{height:31.352309pt;}
.h26{height:31.456935pt;}
.h41{height:31.512338pt;}
.h53{height:31.525674pt;}
.h23{height:31.909688pt;}
.h31{height:32.045514pt;}
.h27{height:32.136065pt;}
.h2f{height:32.258686pt;}
.h45{height:32.472511pt;}
.h30{height:32.485062pt;}
.h15{height:32.487794pt;}
.h1a{height:32.552769pt;}
.h36{height:32.724644pt;}
.h3a{height:32.837833pt;}
.h14{height:32.863503pt;}
.h37{height:32.937816pt;}
.h44{height:33.272655pt;}
.h21{height:33.503758pt;}
.h70{height:33.606048pt;}
.h2e{height:33.730134pt;}
.h3f{height:34.459327pt;}
.h54{height:34.566221pt;}
.h22{height:35.415580pt;}
.h55{height:36.806624pt;}
.h33{height:38.474614pt;}
.h12{height:38.613349pt;}
.h39{height:39.266932pt;}
.h13{height:41.405214pt;}
.h32{height:41.666526pt;}
.ha{height:42.270107pt;}
.h4{height:42.549756pt;}
.h9{height:42.758945pt;}
.h10{height:43.430213pt;}
.h1f{height:43.443111pt;}
.h68{height:43.847891pt;}
.h69{height:43.874563pt;}
.h6a{height:43.994584pt;}
.h65{height:44.007920pt;}
.h5{height:45.179892pt;}
.h56{height:45.945769pt;}
.h38{height:46.058234pt;}
.h35{height:46.171423pt;}
.h16{height:46.522107pt;}
.h43{height:47.297262pt;}
.h4a{height:47.355189pt;}
.h4e{height:47.361857pt;}
.h47{height:47.368525pt;}
.h4c{height:47.387195pt;}
.h50{height:47.395196pt;}
.h51{height:47.403948pt;}
.h49{height:47.515218pt;}
.h57{height:47.675247pt;}
.h3e{height:47.995304pt;}
.h6b{height:50.555765pt;}
.he{height:50.997333pt;}
.h2d{height:51.830841pt;}
.h29{height:51.947803pt;}
.h2b{height:51.953462pt;}
.h19{height:52.730120pt;}
.hb{height:53.533384pt;}
.h1b{height:53.861668pt;}
.h8{height:54.378224pt;}
.h3{height:58.022571pt;}
.h5e{height:58.557205pt;}
.h62{height:58.570541pt;}
.h5b{height:58.717234pt;}
.h64{height:60.170829pt;}
.h7{height:61.421054pt;}
.h4b{height:64.638299pt;}
.h6f{height:67.372125pt;}
.h6e{height:67.532154pt;}
.h6d{height:67.552157pt;}
.h1d{height:74.908454pt;}
.h5d{height:77.280575pt;}
.h61{height:77.794000pt;}
.h52{height:79.074231pt;}
.h6c{height:84.321842pt;}
.h5a{height:91.203080pt;}
.h72{height:101.324902pt;}
.h1{height:104.302667pt;}
.h48{height:110.766601pt;}
.h46{height:142.452303pt;}
.h1c{height:158.529825pt;}
.h67{height:206.623852pt;}
.hf{height:561.360785pt;}
.h1e{height:638.382408pt;}
.hd{height:1077.564000pt;}
.h6{height:1114.744000pt;}
.h0{height:1122.666667pt;}
.w20{width:52.985363pt;}
.w2b{width:55.996744pt;}
.w32{width:57.917090pt;}
.w1{width:63.393333pt;}
.w18{width:63.606205pt;}
.w19{width:63.611864pt;}
.w21{width:66.228402pt;}
.w1e{width:66.318953pt;}
.w1d{width:66.328385pt;}
.w1a{width:66.341590pt;}
.w24{width:66.432141pt;}
.w25{width:66.454779pt;}
.w23{width:67.564025pt;}
.w22{width:69.058111pt;}
.w16{width:71.525618pt;}
.w15{width:71.638806pt;}
.w14{width:71.648238pt;}
.w13{width:71.661444pt;}
.wb{width:73.088548pt;}
.w2a{width:74.912148pt;}
.w9{width:75.835380pt;}
.w17{width:79.561992pt;}
.w1f{width:79.675180pt;}
.w1b{width:82.967075pt;}
.w27{width:84.335178pt;}
.w12{width:93.054046pt;}
.w31{width:103.237246pt;}
.w30{width:103.410611pt;}
.w2c{width:112.850976pt;}
.w29{width:112.852310pt;}
.wd{width:133.070003pt;}
.w11{width:141.504328pt;}
.w7{width:148.242171pt;}
.w6{width:151.532145pt;}
.w8{width:151.759398pt;}
.w2d{width:160.042136pt;}
.w33{width:190.291580pt;}
.wf{width:215.899290pt;}
.w2e{width:243.261112pt;}
.w28{width:245.230800pt;}
.wc{width:253.127207pt;}
.we{width:256.408696pt;}
.w2f{width:266.034544pt;}
.w26{width:273.554564pt;}
.wa{width:303.631951pt;}
.w34{width:424.783114pt;}
.w1c{width:672.055948pt;}
.w3{width:773.852000pt;}
.w5{width:777.668492pt;}
.w2{width:777.677543pt;}
.w10{width:777.677896pt;}
.w4{width:780.936000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:5.478576pt;}
.x35{left:7.121435pt;}
.x4b{left:8.140130pt;}
.x45{left:9.498391pt;}
.x17{left:10.768562pt;}
.x2c{left:12.554477pt;}
.x1{left:13.660000pt;}
.x30{left:14.940865pt;}
.x2b{left:16.402881pt;}
.x38{left:17.544197pt;}
.x2e{left:19.242023pt;}
.x2f{left:21.166225pt;}
.xe{left:22.248229pt;}
.xf{left:23.535248pt;}
.x3b{left:24.807118pt;}
.x40{left:25.920137pt;}
.x60{left:26.884838pt;}
.x29{left:28.287660pt;}
.x37{left:29.428976pt;}
.x32{left:31.117369pt;}
.x1b{left:32.494276pt;}
.x27{left:34.654506pt;}
.x24{left:36.333467pt;}
.x59{left:37.473411pt;}
.x23{left:38.597234pt;}
.x43{left:39.832874pt;}
.x3d{left:41.426944pt;}
.x5a{left:43.554505pt;}
.x61{left:44.954757pt;}
.x39{left:46.086531pt;}
.xc{left:51.667525pt;}
.x2{left:53.134667pt;}
.x55{left:54.596492pt;}
.x13{left:55.898454pt;}
.x3{left:57.196000pt;}
.x25{left:58.763629pt;}
.x10{left:61.800417pt;}
.x5b{left:72.631991pt;}
.x4{left:79.823952pt;}
.x5d{left:90.923030pt;}
.x14{left:98.315577pt;}
.x3e{left:99.368290pt;}
.x6{left:100.467668pt;}
.x41{left:116.686110pt;}
.x16{left:124.652348pt;}
.xb{left:127.827258pt;}
.x1f{left:129.178539pt;}
.x18{left:135.420910pt;}
.x42{left:143.511754pt;}
.x34{left:145.435956pt;}
.x7{left:150.391319pt;}
.x36{left:151.425508pt;}
.x19{left:152.394124pt;}
.x20{left:156.128232pt;}
.x58{left:167.207679pt;}
.x1a{left:172.969432pt;}
.x11{left:174.468733pt;}
.x2a{left:189.013479pt;}
.x21{left:224.501998pt;}
.x1c{left:225.407236pt;}
.x3a{left:238.816362pt;}
.x26{left:242.212013pt;}
.x62{left:263.891745pt;}
.x9{left:276.518667pt;}
.x3c{left:317.274767pt;}
.x2d{left:321.236360pt;}
.x12{left:323.399262pt;}
.x53{left:327.903265pt;}
.x50{left:333.800269pt;}
.x3f{left:354.400553pt;}
.x1d{left:369.632413pt;}
.xa{left:372.551301pt;}
.xd{left:374.997834pt;}
.x5{left:376.712049pt;}
.x22{left:378.849241pt;}
.x8{left:380.712769pt;}
.x5c{left:401.516513pt;}
.x15{left:402.409576pt;}
.x54{left:412.878558pt;}
.x46{left:457.090702pt;}
.x44{left:472.371132pt;}
.x47{left:490.254894pt;}
.x48{left:497.385761pt;}
.x5e{left:505.575241pt;}
.x31{left:513.911263pt;}
.x56{left:526.378985pt;}
.x49{left:564.506465pt;}
.x4a{left:569.713130pt;}
.x28{left:571.071390pt;}
.x4f{left:573.901100pt;}
.x57{left:602.099278pt;}
.x51{left:604.339682pt;}
.x5f{left:609.620632pt;}
.x33{left:643.530812pt;}
.x4d{left:646.020956pt;}
.x4c{left:647.492405pt;}
.x4e{left:685.297321pt;}
.x52{left:744.044824pt;}
}




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