
    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_6f400ed162cfab73af3cf5fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_886c091909640f1c32b240bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_b27ff46eeebd55c51ada0bdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_68099e8b4140d9518a4c941a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947000;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_6349b501e73560cc12af591f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_273d5af5a22791e0e56368ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_b2fdee26aae85dce5140459e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_2c1d3eadab12b12514d9e212.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.718000;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_f3dedbfaaef9f8712538a0f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705000;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;}
.m4{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-11.699700px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.980200px;}
.v2{vertical-align:11.701800px;}
.ls6{letter-spacing:-3.282862px;}
.ls12{letter-spacing:-2.025334px;}
.ls13{letter-spacing:-1.240465px;}
.ls1b{letter-spacing:-1.122525px;}
.ls1e{letter-spacing:-0.884550px;}
.ls1a{letter-spacing:-0.664535px;}
.ls5{letter-spacing:-0.648670px;}
.lsf{letter-spacing:-0.493612px;}
.lse{letter-spacing:-0.490618px;}
.ls17{letter-spacing:-0.440030px;}
.ls9{letter-spacing:-0.390000px;}
.ls18{letter-spacing:-0.359208px;}
.ls19{letter-spacing:-0.354718px;}
.ls7{letter-spacing:-0.316103px;}
.lsa{letter-spacing:-0.304200px;}
.ls1f{letter-spacing:-0.264018px;}
.ls4{letter-spacing:-0.239173px;}
.ls16{letter-spacing:-0.220015px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.003000px;}
.ls1d{letter-spacing:0.220015px;}
.ls3{letter-spacing:0.316103px;}
.ls15{letter-spacing:0.648670px;}
.ls1c{letter-spacing:0.664535px;}
.lsd{letter-spacing:8.778145px;}
.ls10{letter-spacing:9.047851px;}
.lsb{letter-spacing:9.765369px;}
.ls14{letter-spacing:9.846789px;}
.lsc{letter-spacing:10.360756px;}
.ls8{letter-spacing:10.543952px;}
.ls0{letter-spacing:12.808459px;}
.ls1{letter-spacing:23.946548px;}
.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;}
}
.wse{word-spacing:-38.099696px;}
.ws2{word-spacing:-32.888901px;}
.ws80{word-spacing:-31.372029px;}
.ws12{word-spacing:-25.291237px;}
.ws57{word-spacing:-24.797625px;}
.ws1e{word-spacing:-23.803517px;}
.ws8e{word-spacing:-22.315797px;}
.wsd0{word-spacing:-21.961079px;}
.ws16{word-spacing:-20.828077px;}
.ws81{word-spacing:-19.587612px;}
.ws35{word-spacing:-16.513091px;}
.ws30{word-spacing:-16.497825px;}
.ws87{word-spacing:-16.482558px;}
.ws4c{word-spacing:-16.462203px;}
.ws7a{word-spacing:-16.431671px;}
.wsb{word-spacing:-16.411316px;}
.ws2a{word-spacing:-16.364918px;}
.ws79{word-spacing:-16.309540px;}
.ws84{word-spacing:-16.294274px;}
.ws59{word-spacing:-16.279007px;}
.ws54{word-spacing:-16.141610px;}
.ws37{word-spacing:-16.121255px;}
.ws52{word-spacing:-16.090722px;}
.ws51{word-spacing:-16.048815px;}
.ws56{word-spacing:-16.039835px;}
.ws58{word-spacing:-15.953325px;}
.ws5c{word-spacing:-15.887171px;}
.ws4a{word-spacing:-15.866816px;}
.ws83{word-spacing:-15.836283px;}
.wsd{word-spacing:-15.815928px;}
.ws9{word-spacing:-15.765040px;}
.ws40{word-spacing:-15.749774px;}
.ws63{word-spacing:-15.734508px;}
.ws26{word-spacing:-15.716248px;}
.ws11{word-spacing:-15.663265px;}
.ws72{word-spacing:-15.647998px;}
.ws25{word-spacing:-15.612377px;}
.ws31{word-spacing:-15.597111px;}
.ws1c{word-spacing:-15.536943px;}
.ws3d{word-spacing:-15.530957px;}
.ws6{word-spacing:-15.525868px;}
.ws29{word-spacing:-15.510601px;}
.ws3c{word-spacing:-15.444447px;}
.ws85{word-spacing:-15.424092px;}
.ws33{word-spacing:-15.408826px;}
.ws74{word-spacing:-15.373204px;}
.ws89{word-spacing:-15.342672px;}
.ws50{word-spacing:-15.322317px;}
.ws34{word-spacing:-15.307050px;}
.ws49{word-spacing:-15.271429px;}
.ws4f{word-spacing:-15.190008px;}
.ws27{word-spacing:-15.154387px;}
.ws3f{word-spacing:-15.118765px;}
.ws86{word-spacing:-15.067878px;}
.ws60{word-spacing:-15.052611px;}
.ws17{word-spacing:-15.047522px;}
.ws1b{word-spacing:-15.024473px;}
.ws2f{word-spacing:-14.986457px;}
.ws75{word-spacing:-14.966102px;}
.ws2c{word-spacing:-14.950836px;}
.ws4e{word-spacing:-14.935569px;}
.ws4d{word-spacing:-14.930481px;}
.ws36{word-spacing:-14.864326px;}
.ws61{word-spacing:-14.828705px;}
.ws2e{word-spacing:-14.813439px;}
.ws4b{word-spacing:-14.777817px;}
.ws8a{word-spacing:-14.762551px;}
.ws3e{word-spacing:-14.747284px;}
.ws7{word-spacing:-14.726929px;}
.ws3b{word-spacing:-14.696397px;}
.ws55{word-spacing:-14.676042px;}
.ws28{word-spacing:-14.670953px;}
.wsf{word-spacing:-14.625154px;}
.ws1a{word-spacing:-14.617371px;}
.ws5a{word-spacing:-14.609887px;}
.wsac{word-spacing:-14.579355px;}
.ws93{word-spacing:-14.574865px;}
.wsa{word-spacing:-14.559000px;}
.ws95{word-spacing:-14.507513px;}
.wsa1{word-spacing:-14.408731px;}
.ws7b{word-spacing:-14.350360px;}
.wscd{word-spacing:-14.269538px;}
.wsb6{word-spacing:-14.256067px;}
.wscc{word-spacing:-14.184226px;}
.wsd7{word-spacing:-14.134835px;}
.wsca{word-spacing:-14.116874px;}
.wsc0{word-spacing:-14.085444px;}
.ws5d{word-spacing:-14.080654px;}
.ws73{word-spacing:-14.075565px;}
.wsbd{word-spacing:-14.049523px;}
.ws98{word-spacing:-14.031562px;}
.ws92{word-spacing:-14.000132px;}
.ws8c{word-spacing:-13.982171px;}
.wsa0{word-spacing:-13.946251px;}
.wsba{word-spacing:-13.860939px;}
.ws99{word-spacing:-13.847468px;}
.wsab{word-spacing:-13.829508px;}
.wsdc{word-spacing:-13.811548px;}
.wsbb{word-spacing:-13.793587px;}
.wsdf{word-spacing:-13.775627px;}
.ws90{word-spacing:-13.762157px;}
.ws9a{word-spacing:-13.726236px;}
.ws68{word-spacing:-13.720548px;}
.wsc4{word-spacing:-13.717255px;}
.wsc8{word-spacing:-13.712765px;}
.ws3{word-spacing:-13.708275px;}
.wscf{word-spacing:-13.703785px;}
.ws1d{word-spacing:-13.702588px;}
.wsbf{word-spacing:-13.676845px;}
.wsbe{word-spacing:-13.640924px;}
.ws39{word-spacing:-13.609493px;}
.wsa4{word-spacing:-13.524181px;}
.ws66{word-spacing:-13.515201px;}
.wsa9{word-spacing:-13.506221px;}
.wsa5{word-spacing:-13.488260px;}
.wsaa{word-spacing:-13.470300px;}
.wsaf{word-spacing:-13.456830px;}
.ws9b{word-spacing:-13.420909px;}
.wsb2{word-spacing:-13.402949px;}
.ws46{word-spacing:-13.389478px;}
.wsb5{word-spacing:-13.371518px;}
.wsc6{word-spacing:-13.353557px;}
.ws9c{word-spacing:-13.317637px;}
.ws7d{word-spacing:-13.309854px;}
.wsb3{word-spacing:-13.299676px;}
.wsa6{word-spacing:-13.268246px;}
.wsad{word-spacing:-13.250285px;}
.ws9e{word-spacing:-13.214364px;}
.wsa2{word-spacing:-13.200894px;}
.ws6d{word-spacing:-13.192512px;}
.wsa8{word-spacing:-13.182934px;}
.ws96{word-spacing:-13.164973px;}
.wsae{word-spacing:-13.147013px;}
.wsd8{word-spacing:-13.133542px;}
.wsa3{word-spacing:-13.097622px;}
.ws2b{word-spacing:-13.082056px;}
.wsc5{word-spacing:-13.061701px;}
.ws94{word-spacing:-12.994349px;}
.wsb1{word-spacing:-12.976389px;}
.wsbc{word-spacing:-12.962919px;}
.wsb4{word-spacing:-12.944958px;}
.ws22{word-spacing:-12.886587px;}
.ws9d{word-spacing:-12.859646px;}
.ws15{word-spacing:-12.798581px;}
.ws6c{word-spacing:-12.731529px;}
.ws7e{word-spacing:-12.664477px;}
.ws10{word-spacing:-12.482777px;}
.ws7c{word-spacing:-12.442366px;}
.ws7f{word-spacing:-12.425603px;}
.ws67{word-spacing:-12.358551px;}
.ws77{word-spacing:-12.274736px;}
.ws6e{word-spacing:-12.086152px;}
.ws45{word-spacing:-12.002337px;}
.ws76{word-spacing:-11.470110px;}
.ws47{word-spacing:-10.284125px;}
.ws65{word-spacing:-9.052042px;}
.ws70{word-spacing:-8.432108px;}
.ws6a{word-spacing:-8.424000px;}
.wsd4{word-spacing:-0.709436px;}
.wsd5{word-spacing:-0.264916px;}
.ws4{word-spacing:-0.065854px;}
.wsc3{word-spacing:-0.044901px;}
.ws6b{word-spacing:-0.039000px;}
.ws64{word-spacing:-0.004191px;}
.ws24{word-spacing:0.000000px;}
.wsc7{word-spacing:0.175114px;}
.wsce{word-spacing:0.314307px;}
.wscb{word-spacing:0.395129px;}
.wsd1{word-spacing:0.619634px;}
.wsd6{word-spacing:0.839649px;}
.wsd3{word-spacing:1.077624px;}
.wsc1{word-spacing:7.763383px;}
.ws44{word-spacing:7.878000px;}
.ws42{word-spacing:7.881900px;}
.ws43{word-spacing:7.885800px;}
.ws20{word-spacing:7.898086px;}
.ws21{word-spacing:7.899583px;}
.ws14{word-spacing:7.987589px;}
.ws41{word-spacing:8.203413px;}
.ws91{word-spacing:8.270764px;}
.ws8b{word-spacing:8.288725px;}
.ws9f{word-spacing:8.324645px;}
.wsb9{word-spacing:8.409957px;}
.wsda{word-spacing:8.441388px;}
.wsdb{word-spacing:8.459348px;}
.wsd9{word-spacing:8.472819px;}
.wsdd{word-spacing:8.477309px;}
.wsde{word-spacing:8.486289px;}
.wse0{word-spacing:8.490779px;}
.wse1{word-spacing:8.495269px;}
.ws8f{word-spacing:8.508740px;}
.wsb8{word-spacing:8.558131px;}
.ws8d{word-spacing:8.562621px;}
.ws38{word-spacing:8.656015px;}
.ws0{word-spacing:8.946075px;}
.wsc{word-spacing:9.424421px;}
.ws18{word-spacing:9.472315px;}
.ws8{word-spacing:9.475308px;}
.ws13{word-spacing:9.577084px;}
.ws71{word-spacing:9.592350px;}
.ws5e{word-spacing:9.627972px;}
.ws32{word-spacing:9.643238px;}
.ws2d{word-spacing:9.992867px;}
.ws62{word-spacing:10.411644px;}
.ws5b{word-spacing:10.630461px;}
.ws1{word-spacing:17.780697px;}
.ws19{word-spacing:20.446119px;}
.ws1f{word-spacing:20.450909px;}
.ws5{word-spacing:21.724002px;}
.ws69{word-spacing:118.026000px;}
.ws97{word-spacing:791.215488px;}
.wsd2{word-spacing:793.411446px;}
.wse3{word-spacing:793.495261px;}
.wsc2{word-spacing:794.157402px;}
.wsb0{word-spacing:796.504227px;}
.wsc9{word-spacing:796.793390px;}
.wsb7{word-spacing:796.843679px;}
.wse2{word-spacing:799.856835px;}
.wsa7{word-spacing:804.143983px;}
.ws6f{word-spacing:807.391822px;}
.ws82{word-spacing:807.475637px;}
.ws88{word-spacing:807.798325px;}
.ws53{word-spacing:808.137777px;}
.ws3a{word-spacing:810.484602px;}
.ws5f{word-spacing:810.773765px;}
.ws48{word-spacing:810.828245px;}
.ws78{word-spacing:813.837210px;}
.ws23{word-spacing:877.989365px;}
._1e{margin-left:-2537.975700px;}
._1d{margin-left:-310.992000px;}
._21{margin-left:-14.952314px;}
._8{margin-left:-13.946867px;}
._20{margin-left:-12.499196px;}
._53{margin-left:-10.663134px;}
._4{margin-left:-5.916123px;}
._5{margin-left:-4.320374px;}
._3{margin-left:-3.087084px;}
._0{margin-left:-1.496101px;}
._2{width:1.470657px;}
._1f{width:2.573118px;}
._d{width:4.264098px;}
._11{width:7.107529px;}
._7{width:8.396487px;}
._10{width:10.543952px;}
._16{width:11.600024px;}
._9{width:12.737216px;}
._e{width:13.795683px;}
._b{width:15.442951px;}
._54{width:19.082925px;}
._1{width:21.271100px;}
._6{width:22.281963px;}
._42{width:29.838211px;}
._a{width:35.711825px;}
._17{width:43.898211px;}
._50{width:49.618598px;}
._1a{width:50.699814px;}
._1b{width:51.860655px;}
._4d{width:55.028870px;}
._44{width:59.131624px;}
._41{width:65.279469px;}
._c{width:70.853179px;}
._51{width:72.671969px;}
._46{width:75.802467px;}
._48{width:78.698282px;}
._4a{width:89.694836px;}
._23{width:97.414216px;}
._4b{width:103.013072px;}
._4e{width:104.421167px;}
._30{width:106.290246px;}
._13{width:107.945596px;}
._52{width:112.744016px;}
._25{width:115.954138px;}
._2a{width:117.010210px;}
._2d{width:123.166436px;}
._4f{width:126.062252px;}
._49{width:127.470347px;}
._18{width:130.056046px;}
._27{width:134.799986px;}
._4c{width:144.560266px;}
._39{width:148.365476px;}
._15{width:151.944385px;}
._2c{width:155.887890px;}
._19{width:175.848480px;}
._33{width:177.248194px;}
._34{width:178.937070px;}
._2b{width:195.788116px;}
._47{width:198.352862px;}
._38{width:200.297374px;}
._31{width:202.702870px;}
._3b{width:208.792045px;}
._37{width:212.023121px;}
._45{width:215.040468px;}
._2f{width:218.837296px;}
._36{width:224.088319px;}
._43{width:232.046572px;}
._14{width:248.025940px;}
._28{width:250.188372px;}
._35{width:262.639120px;}
._12{width:269.914279px;}
._24{width:272.990297px;}
._26{width:285.319513px;}
._32{width:304.001921px;}
._22{width:307.853230px;}
._3f{width:315.509748px;}
._29{width:322.696902px;}
._40{width:389.329986px;}
._1c{width:416.970000px;}
._f{width:688.720826px;}
._3d{width:1097.509755px;}
._3c{width:1141.470827px;}
._3a{width:1245.066414px;}
._2e{width:1291.164774px;}
._3e{width:1314.213954px;}
.fc3{color:rgb(191,25,49);}
.fc2{color:rgb(78,109,188);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(236,7,114);}
.fse{font-size:26.940600px;}
.fs8{font-size:29.934000px;}
.fsd{font-size:30.420000px;}
.fs4{font-size:32.927400px;}
.fsf{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs5{font-size:41.907600px;}
.fs2{font-size:44.901000px;}
.fs7{font-size:47.894400px;}
.fsa{font-size:48.000000px;}
.fs0{font-size:50.887800px;}
.fs6{font-size:53.881200px;}
.fsb{font-size:56.874600px;}
.fs3{font-size:65.854200px;}
.fs9{font-size:95.788200px;}
.fs1{font-size:107.761800px;}
.y0{bottom:0.000000px;}
.y48{bottom:2.604000px;}
.y47{bottom:3.000000px;}
.y92{bottom:74.834550px;}
.y46{bottom:74.834700px;}
.y45{bottom:101.775150px;}
.y181{bottom:110.378405px;}
.y1cf{bottom:110.380052px;}
.yd3{bottom:110.380801px;}
.y90{bottom:110.381100px;}
.y8e{bottom:110.381249px;}
.y130{bottom:110.381697px;}
.y304{bottom:113.348148px;}
.y1d7{bottom:114.122850px;}
.y182{bottom:114.497100px;}
.y292{bottom:114.844474px;}
.y8f{bottom:115.619550px;}
.y23b{bottom:116.742150px;}
.y10a{bottom:116.742299px;}
.y1d6{bottom:118.238700px;}
.y2b7{bottom:119.334574px;}
.y224{bottom:121.605901px;}
.y256{bottom:123.096612px;}
.yd2{bottom:123.103050px;}
.y180{bottom:125.345704px;}
.y216{bottom:125.346603px;}
.y18a{bottom:125.347351px;}
.ycf{bottom:125.347651px;}
.yd1{bottom:125.348100px;}
.yd0{bottom:129.463950px;}
.y2d2{bottom:129.812222px;}
.y8d{bottom:129.838199px;}
.y12f{bottom:129.838647px;}
.y291{bottom:131.308548px;}
.y1d5{bottom:132.828906px;}
.y2b6{bottom:135.798648px;}
.y23a{bottom:136.199100px;}
.y109{bottom:136.199249px;}
.y238{bottom:136.199398px;}
.y223{bottom:136.573200px;}
.y255{bottom:139.560686px;}
.y17f{bottom:140.313003px;}
.y215{bottom:140.313902px;}
.ycc{bottom:140.314201px;}
.y189{bottom:140.314651px;}
.yce{bottom:140.314950px;}
.y222{bottom:140.688900px;}
.y239{bottom:141.437550px;}
.y392{bottom:141.809479px;}
.ycd{bottom:144.430800px;}
.y366{bottom:144.800932px;}
.y2d1{bottom:146.276296px;}
.y290{bottom:147.772622px;}
.y1d4{bottom:147.796205px;}
.y29{bottom:148.172700px;}
.y8c{bottom:149.295150px;}
.y12e{bottom:149.295597px;}
.y2b5{bottom:152.262722px;}
.y17e{bottom:155.280303px;}
.y214{bottom:155.281201px;}
.ycb{bottom:155.281501px;}
.y188{bottom:155.281950px;}
.y108{bottom:155.656200px;}
.y237{bottom:155.656349px;}
.y254{bottom:156.024760px;}
.y391{bottom:158.273553px;}
.y1ce{bottom:159.397650px;}
.y187{bottom:159.397800px;}
.y365{bottom:161.265007px;}
.y2d0{bottom:162.740370px;}
.y1d3{bottom:162.763504px;}
.y28f{bottom:164.236696px;}
.yd8{bottom:166.506751px;}
.y303{bottom:167.230470px;}
.y27{bottom:167.629650px;}
.y2b4{bottom:168.726796px;}
.y8b{bottom:168.752100px;}
.y89{bottom:168.752250px;}
.y12d{bottom:168.752548px;}
.yc8{bottom:170.247602px;}
.y186{bottom:170.248501px;}
.yca{bottom:170.248800px;}
.yd9{bottom:170.623050px;}
.y253{bottom:172.488834px;}
.y28{bottom:172.867950px;}
.y1cc{bottom:173.990101px;}
.y8a{bottom:173.990550px;}
.yc9{bottom:174.364650px;}
.y390{bottom:174.737627px;}
.y107{bottom:175.113150px;}
.y236{bottom:175.113299px;}
.y333{bottom:177.729081px;}
.y1d2{bottom:177.730804px;}
.y1cd{bottom:178.106550px;}
.y2cf{bottom:179.204445px;}
.y28e{bottom:180.700770px;}
.yd7{bottom:181.474050px;}
.y364{bottom:182.219181px;}
.y302{bottom:183.694545px;}
.y2b3{bottom:185.190870px;}
.yc7{bottom:185.214901px;}
.y185{bottom:185.215800px;}
.yd6{bottom:185.589750px;}
.y26{bottom:187.086600px;}
.y87{bottom:188.209200px;}
.y12c{bottom:188.209498px;}
.y252{bottom:188.952908px;}
.y1cb{bottom:188.957400px;}
.y221{bottom:189.331500px;}
.y184{bottom:189.331650px;}
.y38f{bottom:191.201702px;}
.y1d1{bottom:192.698103px;}
.y1ca{bottom:193.073400px;}
.y88{bottom:193.447650px;}
.y332{bottom:194.193155px;}
.y235{bottom:194.570249px;}
.y105{bottom:194.570547px;}
.y2ce{bottom:195.668519px;}
.y28d{bottom:197.164845px;}
.y363{bottom:198.683255px;}
.y106{bottom:199.808550px;}
.y301{bottom:200.158619px;}
.yc6{bottom:200.182201px;}
.y2b2{bottom:201.654945px;}
.y21f{bottom:203.923651px;}
.yd5{bottom:204.298650px;}
.y251{bottom:205.416982px;}
.y1d0{bottom:207.665402px;}
.y38e{bottom:207.665776px;}
.y1c9{bottom:207.665925px;}
.y86{bottom:207.666150px;}
.y84{bottom:207.666299px;}
.y12b{bottom:207.666448px;}
.y220{bottom:208.040400px;}
.y331{bottom:210.657229px;}
.y2cd{bottom:212.132593px;}
.y85{bottom:212.904600px;}
.y28c{bottom:213.628919px;}
.y234{bottom:214.027200px;}
.y104{bottom:214.027498px;}
.y25{bottom:214.775400px;}
.yc5{bottom:215.149500px;}
.y183{bottom:215.150100px;}
.y300{bottom:216.622693px;}
.y2b1{bottom:218.119019px;}
.y21e{bottom:218.890951px;}
.yd4{bottom:219.265500px;}
.y362{bottom:219.637429px;}
.y38b{bottom:224.127005px;}
.y38d{bottom:224.129850px;}
.y250{bottom:226.371157px;}
.y83{bottom:227.123249px;}
.y12a{bottom:227.123399px;}
.y2cc{bottom:228.596667px;}
.y38c{bottom:228.619950px;}
.y28b{bottom:230.092993px;}
.y1c8{bottom:231.238950px;}
.y330{bottom:231.611403px;}
.y2ff{bottom:233.086767px;}
.y233{bottom:233.484150px;}
.y103{bottom:233.484448px;}
.y213{bottom:233.857951px;}
.y21d{bottom:233.858250px;}
.y2b0{bottom:234.583093px;}
.y361{bottom:236.101503px;}
.y21c{bottom:237.974100px;}
.y1c6{bottom:239.284012px;}
.y38a{bottom:240.591079px;}
.y24f{bottom:242.835231px;}
.y1c7{bottom:243.399750px;}
.y2cb{bottom:245.060741px;}
.y28a{bottom:246.557067px;}
.y82{bottom:246.580199px;}
.y129{bottom:246.580349px;}
.y163{bottom:247.347300px;}
.y32f{bottom:248.075477px;}
.y211{bottom:248.824800px;}
.y212{bottom:248.825250px;}
.y1c5{bottom:249.199350px;}
.y2fe{bottom:249.550841px;}
.y2af{bottom:251.047167px;}
.y360{bottom:252.565577px;}
.y21b{bottom:252.566551px;}
.y231{bottom:252.941249px;}
.y102{bottom:252.941398px;}
.yc4{bottom:253.348350px;}
.y389{bottom:257.055153px;}
.y232{bottom:258.179550px;}
.y162{bottom:258.596850px;}
.y24e{bottom:259.299305px;}
.y2ca{bottom:261.524815px;}
.y289{bottom:263.021141px;}
.y32e{bottom:264.539552px;}
.y1c3{bottom:265.289099px;}
.yc2{bottom:265.348050px;}
.yc3{bottom:265.348350px;}
.y2fd{bottom:266.014915px;}
.y81{bottom:266.037150px;}
.y128{bottom:266.037299px;}
.y2ae{bottom:267.511241px;}
.y210{bottom:267.533401px;}
.y21a{bottom:267.533850px;}
.y218{bottom:267.534301px;}
.y24{bottom:269.404650px;}
.y219{bottom:271.649850px;}
.y161{bottom:271.972350px;}
.y230{bottom:272.398199px;}
.y101{bottom:272.398349px;}
.y388{bottom:273.519227px;}
.y35f{bottom:273.519752px;}
.y24d{bottom:275.763379px;}
.y1c2{bottom:276.514050px;}
.yc1{bottom:277.348350px;}
.y2c9{bottom:277.988890px;}
.y288{bottom:279.485215px;}
.y20e{bottom:280.255800px;}
.y32d{bottom:281.003626px;}
.y2fc{bottom:282.478990px;}
.y20d{bottom:282.500625px;}
.y20f{bottom:282.500700px;}
.y217{bottom:282.501600px;}
.y2ad{bottom:283.975315px;}
.y80{bottom:285.494100px;}
.y7e{bottom:285.494250px;}
.y1c1{bottom:287.739000px;}
.y1c4{bottom:287.740048px;}
.y387{bottom:289.983302px;}
.y35e{bottom:289.983826px;}
.y7f{bottom:290.732550px;}
.y22f{bottom:291.855150px;}
.y2c8{bottom:294.452964px;}
.y178{bottom:294.536850px;}
.y177{bottom:294.537075px;}
.y170{bottom:294.537300px;}
.y17c{bottom:294.537600px;}
.y287{bottom:295.949290px;}
.y24c{bottom:296.717553px;}
.y32c{bottom:297.467700px;}
.y2fb{bottom:298.943064px;}
.y2ac{bottom:300.439390px;}
.y7d{bottom:304.951200px;}
.y7b{bottom:304.951498px;}
.y1c0{bottom:305.699550px;}
.y20b{bottom:306.073650px;}
.y386{bottom:306.447376px;}
.y35d{bottom:306.447900px;}
.y23{bottom:306.822149px;}
.y179{bottom:309.640575px;}
.y175{bottom:309.640650px;}
.y176{bottom:309.640800px;}
.y16f{bottom:309.641025px;}
.y17b{bottom:309.641325px;}
.y20c{bottom:310.189500px;}
.y7c{bottom:310.189650px;}
.y22e{bottom:311.312100px;}
.y100{bottom:311.312249px;}
.y286{bottom:312.413364px;}
.yc0{bottom:312.815775px;}
.y24b{bottom:313.181627px;}
.y32b{bottom:313.911935px;}
.y2c7{bottom:315.407138px;}
.y2ab{bottom:316.903464px;}
.y1bd{bottom:322.724063px;}
.y385{bottom:322.892135px;}
.y35c{bottom:322.893931px;}
.ybf{bottom:323.315550px;}
.y1bf{bottom:323.659950px;}
.y209{bottom:324.034050px;}
.y127{bottom:324.408150px;}
.y125{bottom:324.408299px;}
.y7a{bottom:324.408449px;}
.y169{bottom:324.668025px;}
.y22{bottom:326.279099px;}
.y1be{bottom:326.840250px;}
.y20a{bottom:328.149900px;}
.y285{bottom:328.877438px;}
.y126{bottom:329.646600px;}
.y22d{bottom:330.020850px;}
.yff{bottom:330.769200px;}
.y2c6{bottom:331.871212px;}
.y2aa{bottom:333.367538px;}
.y24a{bottom:334.135802px;}
.y32a{bottom:334.866109px;}
.ybe{bottom:335.315850px;}
.y384{bottom:339.356209px;}
.y174{bottom:339.668700px;}
.y16e{bottom:339.669075px;}
.y168{bottom:339.669375px;}
.y208{bottom:340.123799px;}
.y1bc{bottom:341.620200px;}
.y35b{bottom:343.848106px;}
.y124{bottom:343.865250px;}
.y79{bottom:343.865399px;}
.y284{bottom:345.341512px;}
.y21{bottom:345.736050px;}
.y2fa{bottom:348.335286px;}
.y206{bottom:349.103700px;}
.y2a9{bottom:349.831612px;}
.yfd{bottom:350.226150px;}
.y329{bottom:351.330183px;}
.y205{bottom:351.348450px;}
.y207{bottom:351.348750px;}
.y2c5{bottom:352.825386px;}
.y173{bottom:354.617400px;}
.y172{bottom:354.617625px;}
.y16d{bottom:354.617775px;}
.y167{bottom:354.618075px;}
.y249{bottom:355.089976px;}
.yfe{bottom:355.464600px;}
.y383{bottom:355.820283px;}
.y1bb{bottom:359.580300px;}
.y35a{bottom:360.312180px;}
.y283{bottom:361.805586px;}
.y123{bottom:363.322200px;}
.y78{bottom:363.322349px;}
.y2f9{bottom:364.799360px;}
.y20{bottom:365.193000px;}
.y2a8{bottom:366.295686px;}
.y2c4{bottom:369.289460px;}
.y203{bottom:369.309000px;}
.y171{bottom:369.657000px;}
.y16c{bottom:369.657150px;}
.y166{bottom:369.657450px;}
.yfc{bottom:369.683100px;}
.yfa{bottom:369.683249px;}
.y22c{bottom:369.683846px;}
.y248{bottom:371.554050px;}
.y328{bottom:372.284357px;}
.y204{bottom:373.424850px;}
.yfb{bottom:374.921550px;}
.y1ba{bottom:377.540850px;}
.y282{bottom:378.269660px;}
.y2f8{bottom:381.263435px;}
.y359{bottom:381.266354px;}
.y122{bottom:382.030800px;}
.y2a7{bottom:382.759760px;}
.y77{bottom:382.779300px;}
.y165{bottom:384.734850px;}
.y202{bottom:385.398599px;}
.y1b8{bottom:385.585762px;}
.y2c3{bottom:385.753535px;}
.ybd{bottom:387.587250px;}
.y327{bottom:388.748431px;}
.yf9{bottom:389.140200px;}
.y22b{bottom:389.140796px;}
.y1b9{bottom:389.701350px;}
.y281{bottom:394.733735px;}
.y1b7{bottom:395.501100px;}
.y200{bottom:396.623550px;}
.y2f7{bottom:397.727509px;}
.y358{bottom:397.730428px;}
.y2a6{bottom:399.223835px;}
.ybc{bottom:399.586950px;}
.y16b{bottom:399.667650px;}
.y164{bottom:399.667950px;}
.y17a{bottom:399.668400px;}
.y201{bottom:400.739550px;}
.y1e{bottom:401.113650px;}
.y2c2{bottom:402.217609px;}
.y75{bottom:402.236250px;}
.y1f{bottom:404.107050px;}
.y1d{bottom:404.107349px;}
.y382{bottom:405.212506px;}
.y44{bottom:406.725901px;}
.y76{bottom:407.474550px;}
.yf8{bottom:408.597150px;}
.yf6{bottom:408.597299px;}
.y22a{bottom:408.597746px;}
.y326{bottom:409.702606px;}
.y280{bottom:411.197809px;}
.y16a{bottom:411.367650px;}
.y17d{bottom:411.367950px;}
.ybb{bottom:411.587250px;}
.y1b6{bottom:413.461200px;}
.yf7{bottom:413.835600px;}
.y2f6{bottom:414.191583px;}
.y1fe{bottom:414.584324px;}
.y2a5{bottom:415.687909px;}
.y2c1{bottom:418.681683px;}
.y357{bottom:418.684602px;}
.y1ff{bottom:418.699800px;}
.y381{bottom:421.676580px;}
.y43{bottom:421.693200px;}
.y73{bottom:421.693499px;}
.y1c{bottom:423.564299px;}
.y325{bottom:426.166680px;}
.y74{bottom:426.931650px;}
.y27f{bottom:427.661883px;}
.yf5{bottom:428.054250px;}
.y229{bottom:428.054697px;}
.y2f5{bottom:430.655657px;}
.y1fd{bottom:430.673699px;}
.y1b4{bottom:431.421750px;}
.y2a4{bottom:432.151983px;}
.y2c0{bottom:435.145757px;}
.y356{bottom:435.148676px;}
.y1b5{bottom:435.537600px;}
.y160{bottom:437.085450px;}
.y380{bottom:438.140654px;}
.y72{bottom:441.150449px;}
.y1fb{bottom:441.898650px;}
.y247{bottom:442.272899px;}
.y1b{bottom:443.021249px;}
.yba{bottom:443.072100px;}
.y27e{bottom:444.125957px;}
.y42{bottom:444.517800px;}
.y1fc{bottom:446.014500px;}
.y2f4{bottom:447.119731px;}
.y324{bottom:447.120854px;}
.yf3{bottom:447.511200px;}
.y228{bottom:447.511647px;}
.y2a3{bottom:448.616057px;}
.y1b2{bottom:449.382000px;}
.y2bf{bottom:451.609831px;}
.y355{bottom:451.612751px;}
.yf4{bottom:452.749500px;}
.y1b3{bottom:453.498000px;}
.y37f{bottom:454.604728px;}
.y1f9{bottom:459.858900px;}
.y27d{bottom:460.590031px;}
.y71{bottom:460.607399px;}
.y246{bottom:461.729849px;}
.y1a{bottom:462.478200px;}
.y2f3{bottom:463.583806px;}
.y323{bottom:463.584928px;}
.y1fa{bottom:463.974750px;}
.y2a2{bottom:465.080131px;}
.yf2{bottom:466.968150px;}
.yf0{bottom:466.968598px;}
.y1b1{bottom:467.342400px;}
.y2be{bottom:468.073906px;}
.y37e{bottom:471.068802px;}
.yf1{bottom:472.206600px;}
.y354{bottom:472.566925px;}
.y1f8{bottom:475.948350px;}
.y27c{bottom:477.054106px;}
.y15f{bottom:479.741100px;}
.y2f2{bottom:480.047880px;}
.y322{bottom:480.049002px;}
.y70{bottom:480.064350px;}
.y245{bottom:481.186800px;}
.y2a1{bottom:481.544206px;}
.y19{bottom:481.935150px;}
.y17{bottom:481.935299px;}
.y15e{bottom:483.857100px;}
.y2bd{bottom:484.537980px;}
.y1af{bottom:485.302650px;}
.yb9{bottom:486.425100px;}
.yb7{bottom:486.425250px;}
.yef{bottom:486.425548px;}
.y1f7{bottom:487.173300px;}
.y18{bottom:487.173450px;}
.y353{bottom:489.030999px;}
.y1b0{bottom:489.418650px;}
.yb8{bottom:491.663700px;}
.y1ad{bottom:493.347562px;}
.y27b{bottom:493.518180px;}
.y41{bottom:494.656200px;}
.y2f1{bottom:496.511954px;}
.y1ae{bottom:497.463300px;}
.y2a0{bottom:498.008280px;}
.y15d{bottom:498.449401px;}
.y6f{bottom:499.521300px;}
.y244{bottom:500.643750px;}
.y2bc{bottom:501.002054px;}
.y321{bottom:501.003176px;}
.y16{bottom:501.392249px;}
.y1ac{bottom:503.262900px;}
.y1f5{bottom:505.133850px;}
.y37d{bottom:505.493276px;}
.yb5{bottom:505.882200px;}
.yee{bottom:505.882498px;}
.y1f6{bottom:509.249700px;}
.y27a{bottom:509.982254px;}
.y352{bottom:509.985173px;}
.yb6{bottom:511.120650px;}
.y2f0{bottom:512.976028px;}
.y15c{bottom:513.416700px;}
.y40{bottom:514.113300px;}
.y29f{bottom:514.472354px;}
.y2bb{bottom:517.466128px;}
.y320{bottom:517.467251px;}
.y15b{bottom:517.532550px;}
.y121{bottom:518.978250px;}
.y6d{bottom:518.978697px;}
.y15{bottom:520.849199px;}
.y1aa{bottom:521.223000px;}
.y1ab{bottom:521.223300px;}
.y37c{bottom:521.957351px;}
.y1f3{bottom:523.094100px;}
.y6e{bottom:524.216700px;}
.yb4{bottom:525.339150px;}
.yb2{bottom:525.339300px;}
.yed{bottom:525.339449px;}
.y279{bottom:526.446328px;}
.y351{bottom:526.449247px;}
.y1f4{bottom:527.210100px;}
.y243{bottom:528.332550px;}
.y2ef{bottom:529.440102px;}
.yb3{bottom:530.577600px;}
.y29e{bottom:530.936428px;}
.y15a{bottom:532.124252px;}
.y3f{bottom:533.570400px;}
.y120{bottom:537.686850px;}
.y2ba{bottom:538.420302px;}
.y31f{bottom:538.421425px;}
.y6c{bottom:538.435647px;}
.y1a8{bottom:539.183550px;}
.y14{bottom:540.306150px;}
.y1f2{bottom:541.054575px;}
.y278{bottom:542.910402px;}
.y37b{bottom:542.911525px;}
.y1a9{bottom:543.299550px;}
.yb1{bottom:544.796250px;}
.yec{bottom:544.796399px;}
.yaf{bottom:544.796548px;}
.y2ee{bottom:545.904176px;}
.y159{bottom:547.091551px;}
.y29d{bottom:547.400502px;}
.y350{bottom:547.403421px;}
.yb0{bottom:550.034700px;}
.y3e{bottom:553.027500px;}
.y2b9{bottom:554.884376px;}
.y31e{bottom:554.885499px;}
.y1a6{bottom:557.143950px;}
.y6b{bottom:557.892598px;}
.y277{bottom:559.374476px;}
.y37a{bottom:559.375599px;}
.y13{bottom:559.763100px;}
.y1a7{bottom:561.259800px;}
.y158{bottom:562.058851px;}
.y2ed{bottom:562.368251px;}
.y29c{bottom:563.864576px;}
.y34f{bottom:563.867496px;}
.yeb{bottom:564.253349px;}
.yae{bottom:564.253499px;}
.y2b8{bottom:571.348451px;}
.y31d{bottom:571.349573px;}
.y3d{bottom:572.484600px;}
.y1a5{bottom:575.104050px;}
.y1ef{bottom:575.104500px;}
.y276{bottom:575.838551px;}
.y157{bottom:577.026150px;}
.y11e{bottom:577.349250px;}
.y6a{bottom:577.349548px;}
.y2ec{bottom:578.832325px;}
.y29b{bottom:580.328651px;}
.y379{bottom:580.329773px;}
.y156{bottom:581.141850px;}
.y11f{bottom:582.587700px;}
.yea{bottom:583.710300px;}
.y242{bottom:583.710598px;}
.y34e{bottom:584.821670px;}
.y1f1{bottom:586.329450px;}
.y3c{bottom:591.941700px;}
.y275{bottom:592.302625px;}
.y31c{bottom:592.303747px;}
.y1a4{bottom:593.064600px;}
.y2eb{bottom:595.296399px;}
.y154{bottom:595.734451px;}
.y29a{bottom:596.792725px;}
.y378{bottom:596.793847px;}
.y11d{bottom:596.806200px;}
.y11b{bottom:596.806350px;}
.y69{bottom:596.806498px;}
.y12{bottom:598.677150px;}
.y155{bottom:599.850750px;}
.y1a2{bottom:601.109512px;}
.y34d{bottom:601.285744px;}
.y11c{bottom:602.044650px;}
.y1f0{bottom:602.418826px;}
.ye9{bottom:603.167250px;}
.yad{bottom:603.167399px;}
.y241{bottom:603.167548px;}
.y1a3{bottom:605.225250px;}
.y274{bottom:608.766699px;}
.y31b{bottom:608.767821px;}
.y151{bottom:610.701301px;}
.y153{bottom:610.701750px;}
.y1a1{bottom:611.024850px;}
.y3b{bottom:611.398800px;}
.y2ea{bottom:611.760473px;}
.y299{bottom:613.256799px;}
.y377{bottom:613.257921px;}
.y152{bottom:614.817600px;}
.y11a{bottom:616.263300px;}
.y68{bottom:616.263449px;}
.y118{bottom:616.263598px;}
.y119{bottom:621.501750px;}
.y34c{bottom:622.239918px;}
.y227{bottom:622.624200px;}
.yac{bottom:622.624350px;}
.ye7{bottom:622.624499px;}
.y273{bottom:625.230773px;}
.y31a{bottom:625.231896px;}
.y14e{bottom:625.668001px;}
.y150{bottom:625.668600px;}
.y1ed{bottom:625.766400px;}
.ye8{bottom:627.862650px;}
.y2e9{bottom:628.224547px;}
.y1a0{bottom:628.985474px;}
.y298{bottom:629.720873px;}
.y14f{bottom:629.784600px;}
.y1ee{bottom:630.256500px;}
.y3a{bottom:630.855900px;}
.y376{bottom:634.212096px;}
.y67{bottom:635.720399px;}
.y117{bottom:635.720549px;}
.y11{bottom:637.591498px;}
.y34b{bottom:638.703992px;}
.y14d{bottom:640.635301px;}
.y272{bottom:641.694847px;}
.yab{bottom:642.081300px;}
.ya9{bottom:642.081449px;}
.y2e8{bottom:644.688621px;}
.y19a{bottom:645.074550px;}
.y19f{bottom:645.074849px;}
.y297{bottom:646.184947px;}
.y319{bottom:646.186070px;}
.yaa{bottom:647.319600px;}
.y375{bottom:650.676170px;}
.y66{bottom:655.177349px;}
.y116{bottom:655.177499px;}
.y14c{bottom:655.602600px;}
.y38{bottom:655.925700px;}
.y19e{bottom:656.299800px;}
.y10{bottom:657.048448px;}
.y271{bottom:658.158921px;}
.y37{bottom:658.543650px;}
.y39{bottom:658.544850px;}
.y34a{bottom:659.658166px;}
.y14b{bottom:659.718450px;}
.y2e7{bottom:661.152696px;}
.ya8{bottom:661.538399px;}
.y296{bottom:662.649021px;}
.y318{bottom:662.650144px;}
.y374{bottom:667.140244px;}
.y19b{bottom:672.388876px;}
.y19d{bottom:672.389250px;}
.y14a{bottom:674.310900px;}
.y270{bottom:674.622996px;}
.y65{bottom:674.634300px;}
.y115{bottom:674.634449px;}
.y349{bottom:676.122241px;}
.y19c{bottom:676.505100px;}
.yf{bottom:676.505399px;}
.y2e6{bottom:677.616770px;}
.y36{bottom:678.000750px;}
.y295{bottom:679.113096px;}
.ya7{bottom:680.995349px;}
.y317{bottom:683.604318px;}
.y26f{bottom:691.087070px;}
.y2e5{bottom:694.080844px;}
.y64{bottom:694.091250px;}
.y114{bottom:694.091400px;}
.y1ec{bottom:695.213850px;}
.y294{bottom:695.577170px;}
.y199{bottom:695.736750px;}
.ye{bottom:695.962349px;}
.y348{bottom:697.076415px;}
.y35{bottom:697.457850px;}
.y147{bottom:697.509788px;}
.y149{bottom:697.509900px;}
.y316{bottom:700.068392px;}
.ya6{bottom:700.452300px;}
.y23f{bottom:700.452598px;}
.y148{bottom:701.625750px;}
.y373{bottom:704.558492px;}
.y240{bottom:705.690600px;}
.y26e{bottom:707.551144px;}
.y2e4{bottom:710.544918px;}
.y293{bottom:712.041244px;}
.y63{bottom:712.800000px;}
.y347{bottom:713.540489px;}
.y113{bottom:713.548350px;}
.y144{bottom:714.534450px;}
.y146{bottom:714.534750px;}
.y1eb{bottom:714.670800px;}
.yd{bottom:715.419299px;}
.y315{bottom:716.532467px;}
.y34{bottom:716.914950px;}
.y145{bottom:718.650750px;}
.ya5{bottom:719.909250px;}
.ya3{bottom:719.909549px;}
.ye6{bottom:719.909697px;}
.y372{bottom:721.022567px;}
.ya4{bottom:725.147700px;}
.y2e3{bottom:727.008992px;}
.y26d{bottom:728.505318px;}
.y112{bottom:732.256950px;}
.y141{bottom:732.494850px;}
.y143{bottom:732.495000px;}
.y1ea{bottom:734.127750px;}
.y1e8{bottom:734.128198px;}
.y346{bottom:734.494663px;}
.yc{bottom:734.876250px;}
.y33{bottom:736.372050px;}
.y142{bottom:736.611000px;}
.y314{bottom:737.486641px;}
.y1e9{bottom:739.366200px;}
.y198{bottom:739.366349px;}
.ya2{bottom:739.366499px;}
.ye5{bottom:739.366647px;}
.y371{bottom:741.976741px;}
.y62{bottom:742.359600px;}
.y2e2{bottom:743.473067px;}
.y26c{bottom:744.969392px;}
.y13e{bottom:750.455250px;}
.y140{bottom:750.455400px;}
.y345{bottom:750.958737px;}
.y1e7{bottom:753.585149px;}
.y313{bottom:753.950715px;}
.yb{bottom:754.333200px;}
.y13f{bottom:754.571250px;}
.y32{bottom:755.829150px;}
.y370{bottom:758.440815px;}
.y197{bottom:758.823300px;}
.ya1{bottom:758.823449px;}
.ye4{bottom:758.823598px;}
.y2e1{bottom:759.937141px;}
.y26b{bottom:761.433467px;}
.y111{bottom:761.816700px;}
.y13b{bottom:768.415687px;}
.y13d{bottom:768.415800px;}
.y344{bottom:771.912912px;}
.y13c{bottom:772.531650px;}
.y1e6{bottom:773.042099px;}
.y312{bottom:774.904889px;}
.y31{bottom:775.286250px;}
.y2e0{bottom:776.401215px;}
.y26a{bottom:777.897541px;}
.y196{bottom:778.280250px;}
.ya0{bottom:778.280400px;}
.ye3{bottom:778.280548px;}
.y36f{bottom:779.394989px;}
.y195{bottom:783.518700px;}
.y137{bottom:785.440650px;}
.y343{bottom:788.376986px;}
.y138{bottom:789.556500px;}
.y311{bottom:791.368963px;}
.y1e5{bottom:792.499049px;}
.y2df{bottom:792.865289px;}
.ya{bottom:793.247250px;}
.y269{bottom:794.361615px;}
.y30{bottom:794.743350px;}
.y36e{bottom:795.859063px;}
.y61{bottom:797.737350px;}
.ye2{bottom:797.737498px;}
.y9e{bottom:797.738095px;}
.y9f{bottom:802.975650px;}
.y139{bottom:803.400900px;}
.y13a{bottom:807.516750px;}
.y2de{bottom:809.329363px;}
.y342{bottom:809.331160px;}
.y268{bottom:810.825689px;}
.y1e4{bottom:811.956000px;}
.y310{bottom:812.323137px;}
.y9{bottom:812.704200px;}
.y2f{bottom:814.200450px;}
.y5f{bottom:817.194300px;}
.ye1{bottom:817.194449px;}
.y110{bottom:817.194598px;}
.y9d{bottom:817.195046px;}
.y60{bottom:822.432750px;}
.y2dd{bottom:825.793437px;}
.y341{bottom:825.795234px;}
.y136{bottom:826.748400px;}
.y267{bottom:827.289763px;}
.y30f{bottom:828.787212px;}
.y1e3{bottom:831.412950px;}
.y1e2{bottom:831.413099px;}
.y36d{bottom:833.277312px;}
.y2e{bottom:833.657550px;}
.y5e{bottom:836.651250px;}
.ye0{bottom:836.651399px;}
.y10f{bottom:836.651548px;}
.y193{bottom:836.651698px;}
.y194{bottom:841.889700px;}
.y340{bottom:842.259308px;}
.y266{bottom:843.753837px;}
.y2dc{bottom:846.747612px;}
.y30e{bottom:849.741386px;}
.y1e1{bottom:850.870050px;}
.y8{bottom:851.618399px;}
.y2d{bottom:853.114650px;}
.y5c{bottom:856.108350px;}
.y10e{bottom:856.108499px;}
.y192{bottom:856.108648px;}
.y9c{bottom:856.108946px;}
.y33f{bottom:858.723382px;}
.y265{bottom:860.217912px;}
.y5d{bottom:861.346800px;}
.y2db{bottom:863.211686px;}
.y30d{bottom:866.205460px;}
.y1e0{bottom:870.327000px;}
.y1df{bottom:870.327298px;}
.y36c{bottom:870.695560px;}
.y7{bottom:871.075350px;}
.y5b{bottom:875.565300px;}
.y59{bottom:875.565449px;}
.y191{bottom:875.565598px;}
.y9b{bottom:875.565897px;}
.y264{bottom:876.681986px;}
.y2da{bottom:879.675760px;}
.y33e{bottom:879.677557px;}
.y2c{bottom:880.803600px;}
.y5a{bottom:880.803750px;}
.y30c{bottom:887.159634px;}
.y1de{bottom:889.784248px;}
.y6{bottom:890.532300px;}
.y263{bottom:893.146060px;}
.ydf{bottom:895.022250px;}
.y58{bottom:895.022400px;}
.y190{bottom:895.022549px;}
.y9a{bottom:895.022847px;}
.y33d{bottom:896.141631px;}
.y2b{bottom:900.260700px;}
.y2d9{bottom:900.629934px;}
.y30b{bottom:903.623708px;}
.y36b{bottom:908.113808px;}
.y1dd{bottom:909.241199px;}
.y262{bottom:909.610134px;}
.y33c{bottom:912.605705px;}
.yde{bottom:913.731000px;}
.y57{bottom:914.479350px;}
.y18f{bottom:914.479499px;}
.y55{bottom:914.479648px;}
.y99{bottom:914.479797px;}
.y2d8{bottom:917.094008px;}
.y56{bottom:919.717650px;}
.y2a{bottom:920.840400px;}
.y5{bottom:922.711050px;}
.y30a{bottom:924.577882px;}
.y261{bottom:926.074208px;}
.y1dc{bottom:928.698149px;}
.y33b{bottom:929.069779px;}
.y2d7{bottom:933.558082px;}
.y10d{bottom:933.936300px;}
.y18e{bottom:933.936449px;}
.y54{bottom:933.936598px;}
.y98{bottom:933.936748px;}
.y309{bottom:941.041957px;}
.y260{bottom:942.538282px;}
.y1db{bottom:948.155099px;}
.y2d6{bottom:950.022157px;}
.y33a{bottom:950.023953px;}
.y135{bottom:952.645050px;}
.y18d{bottom:953.393400px;}
.y53{bottom:953.393549px;}
.y97{bottom:953.393698px;}
.y10c{bottom:958.631850px;}
.y25f{bottom:959.002357px;}
.y308{bottom:961.996131px;}
.y339{bottom:966.488027px;}
.y1da{bottom:967.612050px;}
.y2d5{bottom:970.976331px;}
.y18c{bottom:972.850350px;}
.y52{bottom:972.850499px;}
.y96{bottom:972.850648px;}
.y25e{bottom:975.466431px;}
.y4{bottom:976.966350px;}
.y307{bottom:978.460205px;}
.y338{bottom:982.952102px;}
.y1d9{bottom:987.069000px;}
.y2d4{bottom:987.440405px;}
.y18b{bottom:991.559100px;}
.y25d{bottom:991.930505px;}
.y226{bottom:992.307300px;}
.y51{bottom:992.307449px;}
.y95{bottom:992.307599px;}
.y134{bottom:992.307748px;}
.y306{bottom:994.924279px;}
.y225{bottom:997.545750px;}
.y36a{bottom:999.414379px;}
.y2d3{bottom:1003.904479px;}
.y337{bottom:1003.906276px;}
.y3{bottom:1007.649182px;}
.y25c{bottom:1008.394579px;}
.y305{bottom:1011.388353px;}
.y50{bottom:1011.764400px;}
.y94{bottom:1011.764549px;}
.y133{bottom:1011.764699px;}
.y1d8{bottom:1014.757800px;}
.y369{bottom:1015.878453px;}
.y23e{bottom:1017.002700px;}
.y335{bottom:1017.751050px;}
.y334{bottom:1020.368553px;}
.y336{bottom:1020.370350px;}
.y25b{bottom:1024.858653px;}
.ydd{bottom:1028.228100px;}
.y4f{bottom:1031.221350px;}
.y4d{bottom:1031.221499px;}
.y132{bottom:1031.221649px;}
.y4e{bottom:1036.459650px;}
.y368{bottom:1036.832627px;}
.y2{bottom:1040.575800px;}
.y25a{bottom:1041.322727px;}
.y4c{bottom:1050.678450px;}
.ydb{bottom:1050.678599px;}
.y367{bottom:1053.296702px;}
.ydc{bottom:1055.916900px;}
.y259{bottom:1057.786802px;}
.y1{bottom:1070.135400px;}
.y4a{bottom:1070.135550px;}
.y258{bottom:1074.250876px;}
.y4b{bottom:1075.373850px;}
.y93{bottom:1088.844000px;}
.y49{bottom:1089.592500px;}
.y257{bottom:1090.714950px;}
.y23d{bottom:1094.830800px;}
.yda{bottom:1125.513000px;}
.y91{bottom:1125.517650px;}
.y23c{bottom:1125.517725px;}
.y10b{bottom:1125.517875px;}
.y131{bottom:1125.518247px;}
.h15{height:19.909103px;}
.h13{height:20.151569px;}
.h9{height:22.390632px;}
.h5{height:24.629695px;}
.h16{height:26.604000px;}
.h11{height:27.495000px;}
.he{height:28.821000px;}
.h14{height:30.969716px;}
.h6{height:31.346885px;}
.h17{height:33.144300px;}
.h3{height:33.585948px;}
.h18{height:33.663209px;}
.h12{height:34.180380px;}
.h10{height:34.180980px;}
.hf{height:34.182180px;}
.h8{height:35.825011px;}
.h1{height:38.064074px;}
.h7{height:40.303138px;}
.hd{height:42.542201px;}
.hc{height:48.375000px;}
.h4{height:49.258942px;}
.ha{height:71.649574px;}
.h2{height:80.605826px;}
.hb{height:1185.000000px;}
.h0{height:1188.000000px;}
.w1{width:903.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:15.000000px;}
.x1{left:71.841300px;}
.x68{left:76.331250px;}
.x71{left:79.324650px;}
.xc{left:86.808150px;}
.x11{left:93.519900px;}
.xe{left:98.781750px;}
.x6{left:100.935450px;}
.x7{left:106.625400px;}
.x12{left:108.433950px;}
.x1a{left:112.950300px;}
.x98{left:117.550050px;}
.xad{left:120.133650px;}
.x72{left:125.499300px;}
.x46{left:129.084000px;}
.x1b{left:133.934850px;}
.x73{left:135.112200px;}
.x7b{left:137.544900px;}
.x7c{left:139.812750px;}
.x74{left:141.157650px;}
.x7d{left:145.481400px;}
.x95{left:147.110850px;}
.x48{left:148.363650px;}
.x47{left:149.762550px;}
.xae{left:150.841950px;}
.x75{left:152.254500px;}
.x6f{left:154.271400px;}
.xa1{left:155.967750px;}
.x34{left:157.381200px;}
.x99{left:159.494250px;}
.xa2{left:162.363600px;}
.x70{left:165.764550px;}
.x49{left:167.431500px;}
.x50{left:169.783050px;}
.x4a{left:175.834350px;}
.x51{left:180.264750px;}
.x91{left:183.374785px;}
.x65{left:187.545300px;}
.x29{left:190.569150px;}
.xb1{left:199.630950px;}
.x2a{left:201.201150px;}
.x56{left:202.883250px;}
.x6c{left:203.968800px;}
.x9e{left:206.543550px;}
.x3d{left:209.793900px;}
.x6d{left:215.222100px;}
.x55{left:217.524000px;}
.x2f{left:226.092450px;}
.x6e{left:227.227350px;}
.xa3{left:231.511950px;}
.x30{left:238.597050px;}
.x8f{left:239.733450px;}
.x9c{left:244.310531px;}
.x1d{left:246.566850px;}
.x90{left:247.955100px;}
.x13{left:249.529200px;}
.x54{left:253.989900px;}
.x14{left:257.015100px;}
.x57{left:259.289850px;}
.xa5{left:268.189950px;}
.xb5{left:269.437500px;}
.x4b{left:276.328050px;}
.x4c{left:282.723900px;}
.x58{left:285.960600px;}
.x7e{left:299.202150px;}
.x22{left:303.942600px;}
.x7f{left:309.927150px;}
.x80{left:310.980150px;}
.x24{left:313.197900px;}
.x31{left:315.518850px;}
.x69{left:317.491950px;}
.x17{left:318.559650px;}
.x25{left:323.858250px;}
.x23{left:327.039000px;}
.x64{left:329.288550px;}
.x18{left:334.799250px;}
.xf{left:338.261250px;}
.x1f{left:341.265000px;}
.x81{left:342.832650px;}
.x10{left:345.721800px;}
.x66{left:347.981700px;}
.x26{left:350.737050px;}
.x20{left:351.921300px;}
.x2{left:353.110950px;}
.x15{left:356.800950px;}
.x67{left:358.056600px;}
.x3{left:363.185850px;}
.x92{left:364.573500px;}
.x9a{left:366.094350px;}
.xa6{left:370.248750px;}
.xb3{left:372.697800px;}
.x16{left:374.065800px;}
.x21{left:376.231950px;}
.xa7{left:378.745050px;}
.x87{left:383.796825px;}
.xac{left:386.919450px;}
.x94{left:389.946000px;}
.x42{left:394.865700px;}
.xa4{left:398.367150px;}
.xaf{left:402.133950px;}
.x39{left:406.312350px;}
.xb0{left:409.542000px;}
.x43{left:410.659350px;}
.x44{left:411.664350px;}
.x97{left:414.726750px;}
.x35{left:417.872250px;}
.x5a{left:419.479950px;}
.x5f{left:420.727800px;}
.x6a{left:424.576050px;}
.x45{left:425.678700px;}
.x1e{left:427.759800px;}
.x60{left:428.908200px;}
.x36{left:430.219500px;}
.x59{left:436.396350px;}
.x4{left:439.840050px;}
.x5b{left:441.997350px;}
.x8e{left:445.943550px;}
.xb7{left:448.817550px;}
.x5{left:449.839650px;}
.x5c{left:455.197650px;}
.x32{left:457.577250px;}
.xb8{left:461.152050px;}
.x37{left:463.871850px;}
.x4d{left:466.968150px;}
.x33{left:467.995200px;}
.x5d{left:470.565000px;}
.x3b{left:472.194975px;}
.x38{left:474.503850px;}
.x2d{left:477.914400px;}
.x52{left:481.926150px;}
.xb4{left:484.962300px;}
.x2e{left:486.135900px;}
.x3c{left:488.390700px;}
.x53{left:492.168000px;}
.x6b{left:495.310950px;}
.x27{left:499.581750px;}
.x9b{left:506.887650px;}
.x3a{left:508.489350px;}
.x28{left:511.835400px;}
.x5e{left:516.394650px;}
.x2b{left:518.445750px;}
.x8c{left:520.062000px;}
.x61{left:524.146350px;}
.x62{left:527.190450px;}
.x8d{left:528.997350px;}
.x2c{left:530.848350px;}
.xb2{left:534.240600px;}
.x63{left:537.608400px;}
.x76{left:542.608650px;}
.x77{left:545.916150px;}
.x89{left:548.973525px;}
.x3e{left:550.880700px;}
.x88{left:552.620025px;}
.x41{left:556.145925px;}
.xb6{left:557.873700px;}
.x78{left:559.287300px;}
.x3f{left:566.675700px;}
.x40{left:567.679200px;}
.x1c{left:576.805050px;}
.x19{left:579.855750px;}
.x7a{left:582.313650px;}
.x4f{left:584.117400px;}
.x4e{left:585.781650px;}
.x79{left:591.350175px;}
.x9f{left:601.038647px;}
.xb{left:628.611000px;}
.x8{left:637.591200px;}
.xa0{left:676.566619px;}
.x8a{left:701.238900px;}
.x9{left:706.066050px;}
.x8b{left:709.897800px;}
.xa{left:715.339500px;}
.x82{left:720.294150px;}
.x83{left:721.347150px;}
.x9d{left:722.748646px;}
.x84{left:726.709650px;}
.x85{left:727.762650px;}
.x93{left:753.120900px;}
.x86{left:761.187375px;}
.xa8{left:793.270050px;}
.xaa{left:799.493250px;}
.xa9{left:803.706000px;}
.xab{left:808.431150px;}
.x96{left:821.036100px;}
@media print{
.v3{vertical-align:-10.399733pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.982400pt;}
.v2{vertical-align:10.401600pt;}
.ls6{letter-spacing:-2.918099pt;}
.ls12{letter-spacing:-1.800297pt;}
.ls13{letter-spacing:-1.102636pt;}
.ls1b{letter-spacing:-0.997800pt;}
.ls1e{letter-spacing:-0.786266pt;}
.ls1a{letter-spacing:-0.590698pt;}
.ls5{letter-spacing:-0.576595pt;}
.lsf{letter-spacing:-0.438766pt;}
.lse{letter-spacing:-0.436105pt;}
.ls17{letter-spacing:-0.391138pt;}
.ls9{letter-spacing:-0.346667pt;}
.ls18{letter-spacing:-0.319296pt;}
.ls19{letter-spacing:-0.315305pt;}
.ls7{letter-spacing:-0.280980pt;}
.lsa{letter-spacing:-0.270400pt;}
.ls1f{letter-spacing:-0.234683pt;}
.ls4{letter-spacing:-0.212598pt;}
.ls16{letter-spacing:-0.195569pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.002667pt;}
.ls1d{letter-spacing:0.195569pt;}
.ls3{letter-spacing:0.280980pt;}
.ls15{letter-spacing:0.576595pt;}
.ls1c{letter-spacing:0.590698pt;}
.lsd{letter-spacing:7.802796pt;}
.ls10{letter-spacing:8.042534pt;}
.lsb{letter-spacing:8.680328pt;}
.ls14{letter-spacing:8.752702pt;}
.lsc{letter-spacing:9.209561pt;}
.ls8{letter-spacing:9.372402pt;}
.ls0{letter-spacing:11.385297pt;}
.ls1{letter-spacing:21.285820pt;}
.wse{word-spacing:-33.866396pt;}
.ws2{word-spacing:-29.234579pt;}
.ws80{word-spacing:-27.886248pt;}
.ws12{word-spacing:-22.481099pt;}
.ws57{word-spacing:-22.042333pt;}
.ws1e{word-spacing:-21.158682pt;}
.ws8e{word-spacing:-19.836264pt;}
.wsd0{word-spacing:-19.520959pt;}
.ws16{word-spacing:-18.513846pt;}
.ws81{word-spacing:-17.411211pt;}
.ws35{word-spacing:-14.678303pt;}
.ws30{word-spacing:-14.664733pt;}
.ws87{word-spacing:-14.651163pt;}
.ws4c{word-spacing:-14.633070pt;}
.ws7a{word-spacing:-14.605929pt;}
.wsb{word-spacing:-14.587836pt;}
.ws2a{word-spacing:-14.546594pt;}
.ws79{word-spacing:-14.497369pt;}
.ws84{word-spacing:-14.483799pt;}
.ws59{word-spacing:-14.470229pt;}
.ws54{word-spacing:-14.348098pt;}
.ws37{word-spacing:-14.330004pt;}
.ws52{word-spacing:-14.302864pt;}
.ws51{word-spacing:-14.265613pt;}
.ws56{word-spacing:-14.257631pt;}
.ws58{word-spacing:-14.180734pt;}
.ws5c{word-spacing:-14.121930pt;}
.ws4a{word-spacing:-14.103836pt;}
.ws83{word-spacing:-14.076696pt;}
.wsd{word-spacing:-14.058603pt;}
.ws9{word-spacing:-14.013369pt;}
.ws40{word-spacing:-13.999799pt;}
.ws63{word-spacing:-13.986229pt;}
.ws26{word-spacing:-13.969998pt;}
.ws11{word-spacing:-13.922902pt;}
.ws72{word-spacing:-13.909332pt;}
.ws25{word-spacing:-13.877668pt;}
.ws31{word-spacing:-13.864098pt;}
.ws1c{word-spacing:-13.810616pt;}
.ws3d{word-spacing:-13.805295pt;}
.ws6{word-spacing:-13.800771pt;}
.ws29{word-spacing:-13.787201pt;}
.ws3c{word-spacing:-13.728398pt;}
.ws85{word-spacing:-13.710304pt;}
.ws33{word-spacing:-13.696734pt;}
.ws74{word-spacing:-13.665071pt;}
.ws89{word-spacing:-13.637930pt;}
.ws50{word-spacing:-13.619837pt;}
.ws34{word-spacing:-13.606267pt;}
.ws49{word-spacing:-13.574603pt;}
.ws4f{word-spacing:-13.502230pt;}
.ws27{word-spacing:-13.470566pt;}
.ws3f{word-spacing:-13.438903pt;}
.ws86{word-spacing:-13.393669pt;}
.ws60{word-spacing:-13.380099pt;}
.ws17{word-spacing:-13.375576pt;}
.ws1b{word-spacing:-13.355087pt;}
.ws2f{word-spacing:-13.321295pt;}
.ws75{word-spacing:-13.303202pt;}
.ws2c{word-spacing:-13.289632pt;}
.ws4e{word-spacing:-13.276062pt;}
.ws4d{word-spacing:-13.271538pt;}
.ws36{word-spacing:-13.212735pt;}
.ws61{word-spacing:-13.181071pt;}
.ws2e{word-spacing:-13.167501pt;}
.ws4b{word-spacing:-13.135837pt;}
.ws8a{word-spacing:-13.122267pt;}
.ws3e{word-spacing:-13.108697pt;}
.ws7{word-spacing:-13.090604pt;}
.ws3b{word-spacing:-13.063464pt;}
.ws55{word-spacing:-13.045370pt;}
.ws28{word-spacing:-13.040847pt;}
.wsf{word-spacing:-13.000137pt;}
.ws1a{word-spacing:-12.993219pt;}
.ws5a{word-spacing:-12.986567pt;}
.wsac{word-spacing:-12.959426pt;}
.ws93{word-spacing:-12.955435pt;}
.wsa{word-spacing:-12.941333pt;}
.ws95{word-spacing:-12.895567pt;}
.wsa1{word-spacing:-12.807761pt;}
.ws7b{word-spacing:-12.755875pt;}
.wscd{word-spacing:-12.684034pt;}
.wsb6{word-spacing:-12.672060pt;}
.wscc{word-spacing:-12.608201pt;}
.wsd7{word-spacing:-12.564298pt;}
.wsca{word-spacing:-12.548333pt;}
.wsc0{word-spacing:-12.520394pt;}
.ws5d{word-spacing:-12.516137pt;}
.ws73{word-spacing:-12.511614pt;}
.wsbd{word-spacing:-12.488465pt;}
.ws98{word-spacing:-12.472500pt;}
.ws92{word-spacing:-12.444562pt;}
.ws8c{word-spacing:-12.428597pt;}
.wsa0{word-spacing:-12.396667pt;}
.wsba{word-spacing:-12.320834pt;}
.ws99{word-spacing:-12.308861pt;}
.wsab{word-spacing:-12.292896pt;}
.wsdc{word-spacing:-12.276931pt;}
.wsbb{word-spacing:-12.260966pt;}
.wsdf{word-spacing:-12.245002pt;}
.ws90{word-spacing:-12.233028pt;}
.ws9a{word-spacing:-12.201098pt;}
.ws68{word-spacing:-12.196043pt;}
.wsc4{word-spacing:-12.193116pt;}
.wsc8{word-spacing:-12.189125pt;}
.ws3{word-spacing:-12.185134pt;}
.wscf{word-spacing:-12.181142pt;}
.ws1d{word-spacing:-12.180078pt;}
.wsbf{word-spacing:-12.157195pt;}
.wsbe{word-spacing:-12.125266pt;}
.ws39{word-spacing:-12.097327pt;}
.wsa4{word-spacing:-12.021494pt;}
.ws66{word-spacing:-12.013512pt;}
.wsa9{word-spacing:-12.005530pt;}
.wsa5{word-spacing:-11.989565pt;}
.wsaa{word-spacing:-11.973600pt;}
.wsaf{word-spacing:-11.961626pt;}
.ws9b{word-spacing:-11.929697pt;}
.wsb2{word-spacing:-11.913732pt;}
.ws46{word-spacing:-11.901758pt;}
.wsb5{word-spacing:-11.885794pt;}
.wsc6{word-spacing:-11.869829pt;}
.ws9c{word-spacing:-11.837899pt;}
.ws7d{word-spacing:-11.830981pt;}
.wsb3{word-spacing:-11.821934pt;}
.wsa6{word-spacing:-11.793996pt;}
.wsad{word-spacing:-11.778031pt;}
.ws9e{word-spacing:-11.746102pt;}
.wsa2{word-spacing:-11.734128pt;}
.ws6d{word-spacing:-11.726678pt;}
.wsa8{word-spacing:-11.718163pt;}
.ws96{word-spacing:-11.702198pt;}
.wsae{word-spacing:-11.686234pt;}
.wsd8{word-spacing:-11.674260pt;}
.wsa3{word-spacing:-11.642330pt;}
.ws2b{word-spacing:-11.628494pt;}
.wsc5{word-spacing:-11.610401pt;}
.ws94{word-spacing:-11.550533pt;}
.wsb1{word-spacing:-11.534568pt;}
.wsbc{word-spacing:-11.522594pt;}
.wsb4{word-spacing:-11.506630pt;}
.ws22{word-spacing:-11.454744pt;}
.ws9d{word-spacing:-11.430797pt;}
.ws15{word-spacing:-11.376516pt;}
.ws6c{word-spacing:-11.316915pt;}
.ws7e{word-spacing:-11.257313pt;}
.ws10{word-spacing:-11.095802pt;}
.ws7c{word-spacing:-11.059881pt;}
.ws7f{word-spacing:-11.044981pt;}
.ws67{word-spacing:-10.985379pt;}
.ws77{word-spacing:-10.910876pt;}
.ws6e{word-spacing:-10.743246pt;}
.ws45{word-spacing:-10.668744pt;}
.ws76{word-spacing:-10.195653pt;}
.ws47{word-spacing:-9.141444pt;}
.ws65{word-spacing:-8.046259pt;}
.ws70{word-spacing:-7.495208pt;}
.ws6a{word-spacing:-7.488000pt;}
.wsd4{word-spacing:-0.630610pt;}
.wsd5{word-spacing:-0.235481pt;}
.ws4{word-spacing:-0.058537pt;}
.wsc3{word-spacing:-0.039912pt;}
.ws6b{word-spacing:-0.034667pt;}
.ws64{word-spacing:-0.003725pt;}
.ws24{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.155657pt;}
.wsce{word-spacing:0.279384pt;}
.wscb{word-spacing:0.351226pt;}
.wsd1{word-spacing:0.550786pt;}
.wsd6{word-spacing:0.746354pt;}
.wsd3{word-spacing:0.957888pt;}
.wsc1{word-spacing:6.900785pt;}
.ws44{word-spacing:7.002667pt;}
.ws42{word-spacing:7.006133pt;}
.ws43{word-spacing:7.009600pt;}
.ws20{word-spacing:7.020521pt;}
.ws21{word-spacing:7.021851pt;}
.ws14{word-spacing:7.100079pt;}
.ws41{word-spacing:7.291922pt;}
.ws91{word-spacing:7.351790pt;}
.ws8b{word-spacing:7.367755pt;}
.ws9f{word-spacing:7.399685pt;}
.wsb9{word-spacing:7.475518pt;}
.wsda{word-spacing:7.503456pt;}
.wsdb{word-spacing:7.519421pt;}
.wsd9{word-spacing:7.531394pt;}
.wsdd{word-spacing:7.535386pt;}
.wsde{word-spacing:7.543368pt;}
.wse0{word-spacing:7.547359pt;}
.wse1{word-spacing:7.551350pt;}
.ws8f{word-spacing:7.563324pt;}
.wsb8{word-spacing:7.607227pt;}
.ws8d{word-spacing:7.611218pt;}
.ws38{word-spacing:7.694235pt;}
.ws0{word-spacing:7.952067pt;}
.wsc{word-spacing:8.377263pt;}
.ws18{word-spacing:8.419836pt;}
.ws8{word-spacing:8.422496pt;}
.ws13{word-spacing:8.512964pt;}
.ws71{word-spacing:8.526534pt;}
.ws5e{word-spacing:8.558197pt;}
.ws32{word-spacing:8.571767pt;}
.ws2d{word-spacing:8.882549pt;}
.ws62{word-spacing:9.254795pt;}
.ws5b{word-spacing:9.449299pt;}
.ws1{word-spacing:15.805064pt;}
.ws19{word-spacing:18.174328pt;}
.ws1f{word-spacing:18.178586pt;}
.ws5{word-spacing:19.310224pt;}
.ws69{word-spacing:104.912000pt;}
.ws97{word-spacing:703.302656pt;}
.wsd2{word-spacing:705.254619pt;}
.wse3{word-spacing:705.329121pt;}
.wsc2{word-spacing:705.917690pt;}
.wsb0{word-spacing:708.003757pt;}
.wsc9{word-spacing:708.260791pt;}
.wsb7{word-spacing:708.305492pt;}
.wse2{word-spacing:710.983853pt;}
.wsa7{word-spacing:714.794651pt;}
.ws6f{word-spacing:717.681619pt;}
.ws82{word-spacing:717.756122pt;}
.ws88{word-spacing:718.042956pt;}
.ws53{word-spacing:718.344691pt;}
.ws3a{word-spacing:720.430758pt;}
.ws5f{word-spacing:720.687791pt;}
.ws48{word-spacing:720.736218pt;}
.ws78{word-spacing:723.410854pt;}
.ws23{word-spacing:780.434991pt;}
._1e{margin-left:-2255.978400pt;}
._1d{margin-left:-276.437333pt;}
._21{margin-left:-13.290946pt;}
._8{margin-left:-12.397215pt;}
._20{margin-left:-11.110396pt;}
._53{margin-left:-9.478342pt;}
._4{margin-left:-5.258776pt;}
._5{margin-left:-3.840333pt;}
._3{margin-left:-2.744075pt;}
._0{margin-left:-1.329868pt;}
._2{width:1.307251pt;}
._1f{width:2.287216pt;}
._d{width:3.790310pt;}
._11{width:6.317804pt;}
._7{width:7.463544pt;}
._10{width:9.372402pt;}
._16{width:10.311132pt;}
._9{width:11.321970pt;}
._e{width:12.262829pt;}
._b{width:13.727067pt;}
._54{width:16.962600pt;}
._1{width:18.907645pt;}
._6{width:19.806189pt;}
._42{width:26.522854pt;}
._a{width:31.743844pt;}
._17{width:39.020632pt;}
._50{width:44.105421pt;}
._1a{width:45.066502pt;}
._1b{width:46.098360pt;}
._4d{width:48.914551pt;}
._44{width:52.561443pt;}
._41{width:58.026194pt;}
._c{width:62.980604pt;}
._51{width:64.597306pt;}
._46{width:67.379971pt;}
._48{width:69.954028pt;}
._4a{width:79.728743pt;}
._23{width:86.590414pt;}
._4b{width:91.567175pt;}
._4e{width:92.818815pt;}
._30{width:94.480219pt;}
._13{width:95.951641pt;}
._52{width:100.216903pt;}
._25{width:103.070345pt;}
._2a{width:104.009076pt;}
._2d{width:109.481277pt;}
._4f{width:112.055335pt;}
._49{width:113.306975pt;}
._18{width:115.605374pt;}
._27{width:119.822210pt;}
._4c{width:128.498014pt;}
._39{width:131.880423pt;}
._15{width:135.061676pt;}
._2c{width:138.567014pt;}
._19{width:156.309760pt;}
._33{width:157.553950pt;}
._34{width:159.055174pt;}
._2b{width:174.033881pt;}
._47{width:176.313655pt;}
._38{width:178.042110pt;}
._31{width:180.180329pt;}
._3b{width:185.592929pt;}
._37{width:188.464996pt;}
._45{width:191.147083pt;}
._2f{width:194.522041pt;}
._36{width:199.189617pt;}
._43{width:206.263620pt;}
._14{width:220.467502pt;}
._28{width:222.389664pt;}
._35{width:233.456996pt;}
._12{width:239.923804pt;}
._24{width:242.658042pt;}
._26{width:253.617345pt;}
._32{width:270.223930pt;}
._22{width:273.647315pt;}
._3f{width:280.453109pt;}
._29{width:286.841690pt;}
._40{width:346.071098pt;}
._1c{width:370.640000pt;}
._f{width:612.196290pt;}
._3d{width:975.564227pt;}
._3c{width:1014.640735pt;}
._3a{width:1106.725702pt;}
._2e{width:1147.702022pt;}
._3e{width:1168.190182pt;}
.fse{font-size:23.947200pt;}
.fs8{font-size:26.608000pt;}
.fsd{font-size:27.040000pt;}
.fs4{font-size:29.268800pt;}
.fsf{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs5{font-size:37.251200pt;}
.fs2{font-size:39.912000pt;}
.fs7{font-size:42.572800pt;}
.fsa{font-size:42.666667pt;}
.fs0{font-size:45.233600pt;}
.fs6{font-size:47.894400pt;}
.fsb{font-size:50.555200pt;}
.fs3{font-size:58.537067pt;}
.fs9{font-size:85.145067pt;}
.fs1{font-size:95.788267pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.314667pt;}
.y47{bottom:2.666667pt;}
.y92{bottom:66.519600pt;}
.y46{bottom:66.519733pt;}
.y45{bottom:90.466800pt;}
.y181{bottom:98.114137pt;}
.y1cf{bottom:98.115602pt;}
.yd3{bottom:98.116267pt;}
.y90{bottom:98.116533pt;}
.y8e{bottom:98.116666pt;}
.y130{bottom:98.117064pt;}
.y304{bottom:100.753909pt;}
.y1d7{bottom:101.442533pt;}
.y182{bottom:101.775200pt;}
.y292{bottom:102.083977pt;}
.y8f{bottom:102.772933pt;}
.y23b{bottom:103.770800pt;}
.y10a{bottom:103.770932pt;}
.y1d6{bottom:105.101067pt;}
.y2b7{bottom:106.075177pt;}
.y224{bottom:108.094134pt;}
.y256{bottom:109.419210pt;}
.yd2{bottom:109.424933pt;}
.y180{bottom:111.418404pt;}
.y216{bottom:111.419202pt;}
.y18a{bottom:111.419868pt;}
.ycf{bottom:111.420134pt;}
.yd1{bottom:111.420533pt;}
.yd0{bottom:115.079067pt;}
.y2d2{bottom:115.388642pt;}
.y8d{bottom:115.411733pt;}
.y12f{bottom:115.412131pt;}
.y291{bottom:116.718709pt;}
.y1d5{bottom:118.070138pt;}
.y2b6{bottom:120.709909pt;}
.y23a{bottom:121.065867pt;}
.y109{bottom:121.065999pt;}
.y238{bottom:121.066132pt;}
.y223{bottom:121.398400pt;}
.y255{bottom:124.053943pt;}
.y17f{bottom:124.722670pt;}
.y215{bottom:124.723468pt;}
.ycc{bottom:124.723735pt;}
.y189{bottom:124.724134pt;}
.yce{bottom:124.724400pt;}
.y222{bottom:125.056800pt;}
.y239{bottom:125.722267pt;}
.y392{bottom:126.052870pt;}
.ycd{bottom:128.382933pt;}
.y366{bottom:128.711940pt;}
.y2d1{bottom:130.023374pt;}
.y290{bottom:131.353442pt;}
.y1d4{bottom:131.374404pt;}
.y29{bottom:131.709066pt;}
.y8c{bottom:132.706800pt;}
.y12e{bottom:132.707198pt;}
.y2b5{bottom:135.344642pt;}
.y17e{bottom:138.026936pt;}
.y214{bottom:138.027735pt;}
.ycb{bottom:138.028001pt;}
.y188{bottom:138.028400pt;}
.y108{bottom:138.361066pt;}
.y237{bottom:138.361199pt;}
.y254{bottom:138.688675pt;}
.y391{bottom:140.687603pt;}
.y1ce{bottom:141.686800pt;}
.y187{bottom:141.686933pt;}
.y365{bottom:143.346673pt;}
.y2d0{bottom:144.658107pt;}
.y1d3{bottom:144.678670pt;}
.y28f{bottom:145.988174pt;}
.yd8{bottom:148.006001pt;}
.y303{bottom:148.649307pt;}
.y27{bottom:149.004133pt;}
.y2b4{bottom:149.979374pt;}
.y8b{bottom:150.001867pt;}
.y89{bottom:150.002000pt;}
.y12d{bottom:150.002265pt;}
.yc8{bottom:151.331202pt;}
.y186{bottom:151.332001pt;}
.yca{bottom:151.332267pt;}
.yd9{bottom:151.664933pt;}
.y253{bottom:153.323408pt;}
.y28{bottom:153.660400pt;}
.y1cc{bottom:154.657867pt;}
.y8a{bottom:154.658267pt;}
.yc9{bottom:154.990800pt;}
.y390{bottom:155.322336pt;}
.y107{bottom:155.656133pt;}
.y236{bottom:155.656266pt;}
.y333{bottom:157.981405pt;}
.y1d2{bottom:157.982937pt;}
.y1cd{bottom:158.316933pt;}
.y2cf{bottom:159.292840pt;}
.y28e{bottom:160.622907pt;}
.yd7{bottom:161.310267pt;}
.y364{bottom:161.972605pt;}
.y302{bottom:163.284040pt;}
.y2b3{bottom:164.614107pt;}
.yc7{bottom:164.635468pt;}
.y185{bottom:164.636267pt;}
.yd6{bottom:164.968667pt;}
.y26{bottom:166.299200pt;}
.y87{bottom:167.297066pt;}
.y12c{bottom:167.297332pt;}
.y252{bottom:167.958141pt;}
.y1cb{bottom:167.962133pt;}
.y221{bottom:168.294667pt;}
.y184{bottom:168.294800pt;}
.y38f{bottom:169.957068pt;}
.y1d1{bottom:171.287203pt;}
.y1ca{bottom:171.620800pt;}
.y88{bottom:171.953467pt;}
.y332{bottom:172.616138pt;}
.y235{bottom:172.951333pt;}
.y105{bottom:172.951598pt;}
.y2ce{bottom:173.927572pt;}
.y28d{bottom:175.257640pt;}
.y363{bottom:176.607338pt;}
.y106{bottom:177.607600pt;}
.y301{bottom:177.918772pt;}
.yc6{bottom:177.939734pt;}
.y2b2{bottom:179.248840pt;}
.y21f{bottom:181.265468pt;}
.yd5{bottom:181.598800pt;}
.y251{bottom:182.592873pt;}
.y1d0{bottom:184.591469pt;}
.y38e{bottom:184.591801pt;}
.y1c9{bottom:184.591933pt;}
.y86{bottom:184.592133pt;}
.y84{bottom:184.592265pt;}
.y12b{bottom:184.592399pt;}
.y220{bottom:184.924800pt;}
.y331{bottom:187.250870pt;}
.y2cd{bottom:188.562305pt;}
.y85{bottom:189.248533pt;}
.y28c{bottom:189.892372pt;}
.y234{bottom:190.246400pt;}
.y104{bottom:190.246665pt;}
.y25{bottom:190.911467pt;}
.yc5{bottom:191.244000pt;}
.y183{bottom:191.244533pt;}
.y300{bottom:192.553505pt;}
.y2b1{bottom:193.883572pt;}
.y21e{bottom:194.569734pt;}
.yd4{bottom:194.902667pt;}
.y362{bottom:195.233270pt;}
.y38b{bottom:199.224004pt;}
.y38d{bottom:199.226533pt;}
.y250{bottom:201.218806pt;}
.y83{bottom:201.887332pt;}
.y12a{bottom:201.887465pt;}
.y2cc{bottom:203.197037pt;}
.y38c{bottom:203.217733pt;}
.y28b{bottom:204.527105pt;}
.y1c8{bottom:205.545733pt;}
.y330{bottom:205.876803pt;}
.y2ff{bottom:207.188237pt;}
.y233{bottom:207.541467pt;}
.y103{bottom:207.541732pt;}
.y213{bottom:207.873734pt;}
.y21d{bottom:207.874000pt;}
.y2b0{bottom:208.518305pt;}
.y361{bottom:209.868003pt;}
.y21c{bottom:211.532533pt;}
.y1c6{bottom:212.696899pt;}
.y38a{bottom:213.858737pt;}
.y24f{bottom:215.853538pt;}
.y1c7{bottom:216.355333pt;}
.y2cb{bottom:217.831770pt;}
.y28a{bottom:219.161837pt;}
.y82{bottom:219.182399pt;}
.y129{bottom:219.182532pt;}
.y163{bottom:219.864267pt;}
.y32f{bottom:220.511536pt;}
.y211{bottom:221.177600pt;}
.y212{bottom:221.178000pt;}
.y1c5{bottom:221.510533pt;}
.y2fe{bottom:221.822970pt;}
.y2af{bottom:223.153037pt;}
.y360{bottom:224.502736pt;}
.y21b{bottom:224.503601pt;}
.y231{bottom:224.836666pt;}
.y102{bottom:224.836799pt;}
.yc4{bottom:225.198533pt;}
.y389{bottom:228.493470pt;}
.y232{bottom:229.492933pt;}
.y162{bottom:229.863867pt;}
.y24e{bottom:230.488271pt;}
.y2ca{bottom:232.466503pt;}
.y289{bottom:233.796570pt;}
.y32e{bottom:235.146268pt;}
.y1c3{bottom:235.812532pt;}
.yc2{bottom:235.864933pt;}
.yc3{bottom:235.865200pt;}
.y2fd{bottom:236.457703pt;}
.y81{bottom:236.477466pt;}
.y128{bottom:236.477599pt;}
.y2ae{bottom:237.787770pt;}
.y210{bottom:237.807467pt;}
.y21a{bottom:237.807867pt;}
.y218{bottom:237.808267pt;}
.y24{bottom:239.470800pt;}
.y219{bottom:241.466533pt;}
.y161{bottom:241.753200pt;}
.y230{bottom:242.131733pt;}
.y101{bottom:242.131865pt;}
.y388{bottom:243.128202pt;}
.y35f{bottom:243.128668pt;}
.y24d{bottom:245.123004pt;}
.y1c2{bottom:245.790266pt;}
.yc1{bottom:246.531867pt;}
.y2c9{bottom:247.101235pt;}
.y288{bottom:248.431303pt;}
.y20e{bottom:249.116267pt;}
.y32d{bottom:249.781001pt;}
.y2fc{bottom:251.092435pt;}
.y20d{bottom:251.111667pt;}
.y20f{bottom:251.111733pt;}
.y217{bottom:251.112533pt;}
.y2ad{bottom:252.422503pt;}
.y80{bottom:253.772533pt;}
.y7e{bottom:253.772666pt;}
.y1c1{bottom:255.768000pt;}
.y1c4{bottom:255.768932pt;}
.y387{bottom:257.762935pt;}
.y35e{bottom:257.763401pt;}
.y7f{bottom:258.428933pt;}
.y22f{bottom:259.426800pt;}
.y2c8{bottom:261.735968pt;}
.y178{bottom:261.810533pt;}
.y177{bottom:261.810733pt;}
.y170{bottom:261.810933pt;}
.y17c{bottom:261.811200pt;}
.y287{bottom:263.066035pt;}
.y24c{bottom:263.748936pt;}
.y32c{bottom:264.415733pt;}
.y2fb{bottom:265.727168pt;}
.y2ac{bottom:267.057235pt;}
.y7d{bottom:271.067733pt;}
.y7b{bottom:271.067999pt;}
.y1c0{bottom:271.732933pt;}
.y20b{bottom:272.065467pt;}
.y386{bottom:272.397667pt;}
.y35d{bottom:272.398133pt;}
.y23{bottom:272.730799pt;}
.y179{bottom:275.236067pt;}
.y175{bottom:275.236133pt;}
.y176{bottom:275.236267pt;}
.y16f{bottom:275.236467pt;}
.y17b{bottom:275.236733pt;}
.y20c{bottom:275.724000pt;}
.y7c{bottom:275.724133pt;}
.y22e{bottom:276.721867pt;}
.y100{bottom:276.721999pt;}
.y286{bottom:277.700768pt;}
.yc0{bottom:278.058467pt;}
.y24b{bottom:278.383669pt;}
.y32b{bottom:279.032831pt;}
.y2c7{bottom:280.361900pt;}
.y2ab{bottom:281.691968pt;}
.y1bd{bottom:286.865834pt;}
.y385{bottom:287.015231pt;}
.y35c{bottom:287.016828pt;}
.ybf{bottom:287.391600pt;}
.y1bf{bottom:287.697733pt;}
.y209{bottom:288.030267pt;}
.y127{bottom:288.362800pt;}
.y125{bottom:288.362933pt;}
.y7a{bottom:288.363065pt;}
.y169{bottom:288.593800pt;}
.y22{bottom:290.025866pt;}
.y1be{bottom:290.524667pt;}
.y20a{bottom:291.688800pt;}
.y285{bottom:292.335500pt;}
.y126{bottom:293.019200pt;}
.y22d{bottom:293.351867pt;}
.yff{bottom:294.017066pt;}
.y2c6{bottom:294.996633pt;}
.y2aa{bottom:296.326700pt;}
.y24a{bottom:297.009601pt;}
.y32a{bottom:297.658763pt;}
.ybe{bottom:298.058533pt;}
.y384{bottom:301.649963pt;}
.y174{bottom:301.927733pt;}
.y16e{bottom:301.928067pt;}
.y168{bottom:301.928333pt;}
.y208{bottom:302.332266pt;}
.y1bc{bottom:303.662400pt;}
.y35b{bottom:305.642760pt;}
.y124{bottom:305.658000pt;}
.y79{bottom:305.658132pt;}
.y284{bottom:306.970233pt;}
.y21{bottom:307.320933pt;}
.y2fa{bottom:309.631366pt;}
.y206{bottom:310.314400pt;}
.y2a9{bottom:310.961433pt;}
.yfd{bottom:311.312133pt;}
.y329{bottom:312.293496pt;}
.y205{bottom:312.309734pt;}
.y207{bottom:312.310000pt;}
.y2c5{bottom:313.622566pt;}
.y173{bottom:315.215467pt;}
.y172{bottom:315.215667pt;}
.y16d{bottom:315.215800pt;}
.y167{bottom:315.216067pt;}
.y249{bottom:315.635534pt;}
.yfe{bottom:315.968533pt;}
.y383{bottom:316.284696pt;}
.y1bb{bottom:319.626934pt;}
.y35a{bottom:320.277493pt;}
.y283{bottom:321.604966pt;}
.y123{bottom:322.953067pt;}
.y78{bottom:322.953199pt;}
.y2f9{bottom:324.266098pt;}
.y20{bottom:324.616000pt;}
.y2a8{bottom:325.596166pt;}
.y2c4{bottom:328.257298pt;}
.y203{bottom:328.274667pt;}
.y171{bottom:328.584000pt;}
.y16c{bottom:328.584133pt;}
.y166{bottom:328.584400pt;}
.yfc{bottom:328.607200pt;}
.yfa{bottom:328.607333pt;}
.y22c{bottom:328.607863pt;}
.y248{bottom:330.270267pt;}
.y328{bottom:330.919429pt;}
.y204{bottom:331.933200pt;}
.yfb{bottom:333.263600pt;}
.y1ba{bottom:335.591867pt;}
.y282{bottom:336.239698pt;}
.y2f8{bottom:338.900831pt;}
.y359{bottom:338.903426pt;}
.y122{bottom:339.582933pt;}
.y2a7{bottom:340.230898pt;}
.y77{bottom:340.248266pt;}
.y165{bottom:341.986533pt;}
.y202{bottom:342.576533pt;}
.y1b8{bottom:342.742899pt;}
.y2c3{bottom:342.892031pt;}
.ybd{bottom:344.522000pt;}
.y327{bottom:345.554161pt;}
.yf9{bottom:345.902400pt;}
.y22b{bottom:345.902930pt;}
.y1b9{bottom:346.401200pt;}
.y281{bottom:350.874431pt;}
.y1b7{bottom:351.556533pt;}
.y200{bottom:352.554267pt;}
.y2f7{bottom:353.535563pt;}
.y358{bottom:353.538158pt;}
.y2a6{bottom:354.865631pt;}
.ybc{bottom:355.188400pt;}
.y16b{bottom:355.260133pt;}
.y164{bottom:355.260400pt;}
.y17a{bottom:355.260800pt;}
.y201{bottom:356.212933pt;}
.y1e{bottom:356.545467pt;}
.y2c2{bottom:357.526763pt;}
.y75{bottom:357.543333pt;}
.y1f{bottom:359.206267pt;}
.y1d{bottom:359.206532pt;}
.y382{bottom:360.188894pt;}
.y44{bottom:361.534134pt;}
.y76{bottom:362.199600pt;}
.yf8{bottom:363.197467pt;}
.yf6{bottom:363.197599pt;}
.y22a{bottom:363.197997pt;}
.y326{bottom:364.180094pt;}
.y280{bottom:365.509163pt;}
.y16a{bottom:365.660133pt;}
.y17d{bottom:365.660400pt;}
.ybb{bottom:365.855333pt;}
.y1b6{bottom:367.521067pt;}
.yf7{bottom:367.853867pt;}
.y2f6{bottom:368.170296pt;}
.y1fe{bottom:368.519399pt;}
.y2a5{bottom:369.500363pt;}
.y2c1{bottom:372.161496pt;}
.y357{bottom:372.164091pt;}
.y1ff{bottom:372.177600pt;}
.y381{bottom:374.823626pt;}
.y43{bottom:374.838400pt;}
.y73{bottom:374.838665pt;}
.y1c{bottom:376.501599pt;}
.y325{bottom:378.814826pt;}
.y74{bottom:379.494800pt;}
.y27f{bottom:380.143896pt;}
.yf5{bottom:380.492666pt;}
.y229{bottom:380.493064pt;}
.y2f5{bottom:382.805029pt;}
.y1fd{bottom:382.821066pt;}
.y1b4{bottom:383.486000pt;}
.y2a4{bottom:384.135096pt;}
.y2c0{bottom:386.796229pt;}
.y356{bottom:386.798823pt;}
.y1b5{bottom:387.144533pt;}
.y160{bottom:388.520400pt;}
.y380{bottom:389.458359pt;}
.y72{bottom:392.133732pt;}
.y1fb{bottom:392.798800pt;}
.y247{bottom:393.131466pt;}
.y1b{bottom:393.796666pt;}
.yba{bottom:393.841867pt;}
.y27e{bottom:394.778629pt;}
.y42{bottom:395.126933pt;}
.y1fc{bottom:396.457333pt;}
.y2f4{bottom:397.439761pt;}
.y324{bottom:397.440759pt;}
.yf3{bottom:397.787733pt;}
.y228{bottom:397.788131pt;}
.y2a3{bottom:398.769829pt;}
.y1b2{bottom:399.450667pt;}
.y2bf{bottom:401.430961pt;}
.y355{bottom:401.433556pt;}
.yf4{bottom:402.444000pt;}
.y1b3{bottom:403.109333pt;}
.y37f{bottom:404.093092pt;}
.y1f9{bottom:408.763467pt;}
.y27d{bottom:409.413361pt;}
.y71{bottom:409.428799pt;}
.y246{bottom:410.426533pt;}
.y1a{bottom:411.091733pt;}
.y2f3{bottom:412.074494pt;}
.y323{bottom:412.075492pt;}
.y1fa{bottom:412.422000pt;}
.y2a2{bottom:413.404561pt;}
.yf2{bottom:415.082800pt;}
.yf0{bottom:415.083198pt;}
.y1b1{bottom:415.415467pt;}
.y2be{bottom:416.065694pt;}
.y37e{bottom:418.727824pt;}
.yf1{bottom:419.739200pt;}
.y354{bottom:420.059489pt;}
.y1f8{bottom:423.065200pt;}
.y27c{bottom:424.048094pt;}
.y15f{bottom:426.436533pt;}
.y2f2{bottom:426.709226pt;}
.y322{bottom:426.710224pt;}
.y70{bottom:426.723866pt;}
.y245{bottom:427.721600pt;}
.y2a1{bottom:428.039294pt;}
.y19{bottom:428.386800pt;}
.y17{bottom:428.386932pt;}
.y15e{bottom:430.095200pt;}
.y2bd{bottom:430.700426pt;}
.y1af{bottom:431.380133pt;}
.yb9{bottom:432.377867pt;}
.yb7{bottom:432.378000pt;}
.yef{bottom:432.378265pt;}
.y1f7{bottom:433.042934pt;}
.y18{bottom:433.043067pt;}
.y353{bottom:434.694221pt;}
.y1b0{bottom:435.038800pt;}
.yb8{bottom:437.034400pt;}
.y1ad{bottom:438.531166pt;}
.y27b{bottom:438.682826pt;}
.y41{bottom:439.694400pt;}
.y2f1{bottom:441.343959pt;}
.y1ae{bottom:442.189600pt;}
.y2a0{bottom:442.674026pt;}
.y15d{bottom:443.066134pt;}
.y6f{bottom:444.018933pt;}
.y244{bottom:445.016667pt;}
.y2bc{bottom:445.335159pt;}
.y321{bottom:445.336157pt;}
.y16{bottom:445.681999pt;}
.y1ac{bottom:447.344800pt;}
.y1f5{bottom:449.007867pt;}
.y37d{bottom:449.327357pt;}
.yb5{bottom:449.673066pt;}
.yee{bottom:449.673332pt;}
.y1f6{bottom:452.666400pt;}
.y27a{bottom:453.317559pt;}
.y352{bottom:453.320154pt;}
.yb6{bottom:454.329467pt;}
.y2f0{bottom:455.978692pt;}
.y15c{bottom:456.370400pt;}
.y40{bottom:456.989600pt;}
.y29f{bottom:457.308759pt;}
.y2bb{bottom:459.969892pt;}
.y320{bottom:459.970889pt;}
.y15b{bottom:460.028933pt;}
.y121{bottom:461.314000pt;}
.y6d{bottom:461.314397pt;}
.y15{bottom:462.977066pt;}
.y1aa{bottom:463.309334pt;}
.y1ab{bottom:463.309600pt;}
.y37c{bottom:463.962089pt;}
.y1f3{bottom:464.972533pt;}
.y6e{bottom:465.970400pt;}
.yb4{bottom:466.968133pt;}
.yb2{bottom:466.968266pt;}
.yed{bottom:466.968399pt;}
.y279{bottom:467.952292pt;}
.y351{bottom:467.954886pt;}
.y1f4{bottom:468.631200pt;}
.y243{bottom:469.628933pt;}
.y2ef{bottom:470.613424pt;}
.yb3{bottom:471.624533pt;}
.y29e{bottom:471.943492pt;}
.y15a{bottom:472.999335pt;}
.y3f{bottom:474.284800pt;}
.y120{bottom:477.943867pt;}
.y2ba{bottom:478.595824pt;}
.y31f{bottom:478.596822pt;}
.y6c{bottom:478.609464pt;}
.y1a8{bottom:479.274267pt;}
.y14{bottom:480.272133pt;}
.y1f2{bottom:480.937400pt;}
.y278{bottom:482.587024pt;}
.y37b{bottom:482.588022pt;}
.y1a9{bottom:482.932933pt;}
.yb1{bottom:484.263333pt;}
.yec{bottom:484.263466pt;}
.yaf{bottom:484.263599pt;}
.y2ee{bottom:485.248157pt;}
.y159{bottom:486.303601pt;}
.y29d{bottom:486.578224pt;}
.y350{bottom:486.580819pt;}
.yb0{bottom:488.919733pt;}
.y3e{bottom:491.580000pt;}
.y2b9{bottom:493.230557pt;}
.y31e{bottom:493.231555pt;}
.y1a6{bottom:495.239067pt;}
.y6b{bottom:495.904531pt;}
.y277{bottom:497.221757pt;}
.y37a{bottom:497.222755pt;}
.y13{bottom:497.567200pt;}
.y1a7{bottom:498.897600pt;}
.y158{bottom:499.607867pt;}
.y2ed{bottom:499.882889pt;}
.y29c{bottom:501.212957pt;}
.y34f{bottom:501.215552pt;}
.yeb{bottom:501.558533pt;}
.yae{bottom:501.558665pt;}
.y2b8{bottom:507.865289pt;}
.y31d{bottom:507.866287pt;}
.y3d{bottom:508.875200pt;}
.y1a5{bottom:511.203600pt;}
.y1ef{bottom:511.204000pt;}
.y276{bottom:511.856489pt;}
.y157{bottom:512.912133pt;}
.y11e{bottom:513.199333pt;}
.y6a{bottom:513.199598pt;}
.y2ec{bottom:514.517622pt;}
.y29b{bottom:515.847689pt;}
.y379{bottom:515.848687pt;}
.y156{bottom:516.570534pt;}
.y11f{bottom:517.855733pt;}
.yea{bottom:518.853600pt;}
.y242{bottom:518.853865pt;}
.y34e{bottom:519.841484pt;}
.y1f1{bottom:521.181734pt;}
.y3c{bottom:526.170400pt;}
.y275{bottom:526.491222pt;}
.y31c{bottom:526.492220pt;}
.y1a4{bottom:527.168533pt;}
.y2eb{bottom:529.152355pt;}
.y154{bottom:529.541734pt;}
.y29a{bottom:530.482422pt;}
.y378{bottom:530.483420pt;}
.y11d{bottom:530.494400pt;}
.y11b{bottom:530.494533pt;}
.y69{bottom:530.494665pt;}
.y12{bottom:532.157467pt;}
.y155{bottom:533.200667pt;}
.y1a2{bottom:534.319566pt;}
.y34d{bottom:534.476217pt;}
.y11c{bottom:535.150800pt;}
.y1f0{bottom:535.483401pt;}
.ye9{bottom:536.148667pt;}
.yad{bottom:536.148799pt;}
.y241{bottom:536.148932pt;}
.y1a3{bottom:537.978000pt;}
.y274{bottom:541.125955pt;}
.y31b{bottom:541.126952pt;}
.y151{bottom:542.845601pt;}
.y153{bottom:542.846000pt;}
.y1a1{bottom:543.133200pt;}
.y3b{bottom:543.465600pt;}
.y2ea{bottom:543.787087pt;}
.y299{bottom:545.117155pt;}
.y377{bottom:545.118152pt;}
.y152{bottom:546.504533pt;}
.y11a{bottom:547.789600pt;}
.y68{bottom:547.789732pt;}
.y118{bottom:547.789865pt;}
.y119{bottom:552.446000pt;}
.y34c{bottom:553.102149pt;}
.y227{bottom:553.443733pt;}
.yac{bottom:553.443866pt;}
.ye7{bottom:553.443999pt;}
.y273{bottom:555.760687pt;}
.y31a{bottom:555.761685pt;}
.y14e{bottom:556.149335pt;}
.y150{bottom:556.149867pt;}
.y1ed{bottom:556.236800pt;}
.ye8{bottom:558.100133pt;}
.y2e9{bottom:558.421820pt;}
.y1a0{bottom:559.098199pt;}
.y298{bottom:559.751887pt;}
.y14f{bottom:559.808533pt;}
.y1ee{bottom:560.228000pt;}
.y3a{bottom:560.760800pt;}
.y376{bottom:563.744085pt;}
.y67{bottom:565.084799pt;}
.y117{bottom:565.084932pt;}
.y11{bottom:566.747998pt;}
.y34b{bottom:567.736882pt;}
.y14d{bottom:569.453601pt;}
.y272{bottom:570.395420pt;}
.yab{bottom:570.738933pt;}
.ya9{bottom:570.739065pt;}
.y2e8{bottom:573.056552pt;}
.y19a{bottom:573.399600pt;}
.y19f{bottom:573.399866pt;}
.y297{bottom:574.386620pt;}
.y319{bottom:574.387618pt;}
.yaa{bottom:575.395200pt;}
.y375{bottom:578.378818pt;}
.y66{bottom:582.379866pt;}
.y116{bottom:582.379999pt;}
.y14c{bottom:582.757867pt;}
.y38{bottom:583.045067pt;}
.y19e{bottom:583.377600pt;}
.y10{bottom:584.043065pt;}
.y271{bottom:585.030152pt;}
.y37{bottom:585.372133pt;}
.y39{bottom:585.373200pt;}
.y34a{bottom:586.362815pt;}
.y14b{bottom:586.416400pt;}
.y2e7{bottom:587.691285pt;}
.ya8{bottom:588.034132pt;}
.y296{bottom:589.021352pt;}
.y318{bottom:589.022350pt;}
.y374{bottom:593.013550pt;}
.y19b{bottom:597.679001pt;}
.y19d{bottom:597.679333pt;}
.y14a{bottom:599.387467pt;}
.y270{bottom:599.664885pt;}
.y65{bottom:599.674933pt;}
.y115{bottom:599.675066pt;}
.y349{bottom:600.997547pt;}
.y19c{bottom:601.337867pt;}
.yf{bottom:601.338132pt;}
.y2e6{bottom:602.326018pt;}
.y36{bottom:602.667333pt;}
.y295{bottom:603.656085pt;}
.ya7{bottom:605.329199pt;}
.y317{bottom:607.648283pt;}
.y26f{bottom:614.299618pt;}
.y2e5{bottom:616.960750pt;}
.y64{bottom:616.970000pt;}
.y114{bottom:616.970133pt;}
.y1ec{bottom:617.967866pt;}
.y294{bottom:618.290818pt;}
.y199{bottom:618.432667pt;}
.ye{bottom:618.633199pt;}
.y348{bottom:619.623480pt;}
.y35{bottom:619.962533pt;}
.y147{bottom:620.008700pt;}
.y149{bottom:620.008800pt;}
.y316{bottom:622.283015pt;}
.ya6{bottom:622.624266pt;}
.y23f{bottom:622.624532pt;}
.y148{bottom:623.667333pt;}
.y373{bottom:626.274215pt;}
.y240{bottom:627.280533pt;}
.y26e{bottom:628.934350pt;}
.y2e4{bottom:631.595483pt;}
.y293{bottom:632.925550pt;}
.y63{bottom:633.600000pt;}
.y347{bottom:634.258212pt;}
.y113{bottom:634.265200pt;}
.y144{bottom:635.141734pt;}
.y146{bottom:635.142000pt;}
.y1eb{bottom:635.262933pt;}
.yd{bottom:635.928266pt;}
.y315{bottom:636.917748pt;}
.y34{bottom:637.257733pt;}
.y145{bottom:638.800667pt;}
.ya5{bottom:639.919333pt;}
.ya3{bottom:639.919599pt;}
.ye6{bottom:639.919731pt;}
.y372{bottom:640.908948pt;}
.ya4{bottom:644.575733pt;}
.y2e3{bottom:646.230215pt;}
.y26d{bottom:647.560283pt;}
.y112{bottom:650.895067pt;}
.y141{bottom:651.106534pt;}
.y143{bottom:651.106667pt;}
.y1ea{bottom:652.558000pt;}
.y1e8{bottom:652.558399pt;}
.y346{bottom:652.884145pt;}
.yc{bottom:653.223333pt;}
.y33{bottom:654.552933pt;}
.y142{bottom:654.765333pt;}
.y314{bottom:655.543681pt;}
.y1e9{bottom:657.214400pt;}
.y198{bottom:657.214533pt;}
.ya2{bottom:657.214666pt;}
.ye5{bottom:657.214798pt;}
.y371{bottom:659.534881pt;}
.y62{bottom:659.875200pt;}
.y2e2{bottom:660.864948pt;}
.y26c{bottom:662.195015pt;}
.y13e{bottom:667.071334pt;}
.y140{bottom:667.071467pt;}
.y345{bottom:667.518878pt;}
.y1e7{bottom:669.853465pt;}
.y313{bottom:670.178413pt;}
.yb{bottom:670.518400pt;}
.y13f{bottom:670.730000pt;}
.y32{bottom:671.848133pt;}
.y370{bottom:674.169613pt;}
.y197{bottom:674.509600pt;}
.ya1{bottom:674.509733pt;}
.ye4{bottom:674.509865pt;}
.y2e1{bottom:675.499681pt;}
.y26b{bottom:676.829748pt;}
.y111{bottom:677.170400pt;}
.y13b{bottom:683.036167pt;}
.y13d{bottom:683.036267pt;}
.y344{bottom:686.144810pt;}
.y13c{bottom:686.694800pt;}
.y1e6{bottom:687.148532pt;}
.y312{bottom:688.804346pt;}
.y31{bottom:689.143333pt;}
.y2e0{bottom:690.134413pt;}
.y26a{bottom:691.464481pt;}
.y196{bottom:691.804667pt;}
.ya0{bottom:691.804800pt;}
.ye3{bottom:691.804932pt;}
.y36f{bottom:692.795546pt;}
.y195{bottom:696.461067pt;}
.y137{bottom:698.169467pt;}
.y343{bottom:700.779543pt;}
.y138{bottom:701.828000pt;}
.y311{bottom:703.439078pt;}
.y1e5{bottom:704.443599pt;}
.y2df{bottom:704.769146pt;}
.ya{bottom:705.108666pt;}
.y269{bottom:706.099213pt;}
.y30{bottom:706.438533pt;}
.y36e{bottom:707.430278pt;}
.y61{bottom:709.099866pt;}
.ye2{bottom:709.099999pt;}
.y9e{bottom:709.100529pt;}
.y9f{bottom:713.756133pt;}
.y139{bottom:714.134133pt;}
.y13a{bottom:717.792667pt;}
.y2de{bottom:719.403878pt;}
.y342{bottom:719.405475pt;}
.y268{bottom:720.733946pt;}
.y1e4{bottom:721.738666pt;}
.y310{bottom:722.065011pt;}
.y9{bottom:722.403733pt;}
.y2f{bottom:723.733733pt;}
.y5f{bottom:726.394933pt;}
.ye1{bottom:726.395065pt;}
.y110{bottom:726.395198pt;}
.y9d{bottom:726.395596pt;}
.y60{bottom:731.051333pt;}
.y2dd{bottom:734.038611pt;}
.y341{bottom:734.040208pt;}
.y136{bottom:734.887467pt;}
.y267{bottom:735.368678pt;}
.y30f{bottom:736.699744pt;}
.y1e3{bottom:739.033733pt;}
.y1e2{bottom:739.033866pt;}
.y36d{bottom:740.690944pt;}
.y2e{bottom:741.028933pt;}
.y5e{bottom:743.690000pt;}
.ye0{bottom:743.690132pt;}
.y10f{bottom:743.690265pt;}
.y193{bottom:743.690398pt;}
.y194{bottom:748.346400pt;}
.y340{bottom:748.674941pt;}
.y266{bottom:750.003411pt;}
.y2dc{bottom:752.664544pt;}
.y30e{bottom:755.325676pt;}
.y1e1{bottom:756.328933pt;}
.y8{bottom:756.994133pt;}
.y2d{bottom:758.324133pt;}
.y5c{bottom:760.985200pt;}
.y10e{bottom:760.985332pt;}
.y192{bottom:760.985465pt;}
.y9c{bottom:760.985730pt;}
.y33f{bottom:763.309673pt;}
.y265{bottom:764.638144pt;}
.y5d{bottom:765.641600pt;}
.y2db{bottom:767.299276pt;}
.y30d{bottom:769.960409pt;}
.y1e0{bottom:773.624000pt;}
.y1df{bottom:773.624265pt;}
.y36c{bottom:773.951609pt;}
.y7{bottom:774.289200pt;}
.y5b{bottom:778.280267pt;}
.y59{bottom:778.280399pt;}
.y191{bottom:778.280532pt;}
.y9b{bottom:778.280797pt;}
.y264{bottom:779.272876pt;}
.y2da{bottom:781.934009pt;}
.y33e{bottom:781.935606pt;}
.y2c{bottom:782.936533pt;}
.y5a{bottom:782.936667pt;}
.y30c{bottom:788.586341pt;}
.y1de{bottom:790.919332pt;}
.y6{bottom:791.584267pt;}
.y263{bottom:793.907609pt;}
.ydf{bottom:795.575333pt;}
.y58{bottom:795.575466pt;}
.y190{bottom:795.575599pt;}
.y9a{bottom:795.575864pt;}
.y33d{bottom:796.570338pt;}
.y2b{bottom:800.231733pt;}
.y2d9{bottom:800.559941pt;}
.y30b{bottom:803.221074pt;}
.y36b{bottom:807.212274pt;}
.y1dd{bottom:808.214399pt;}
.y262{bottom:808.542341pt;}
.y33c{bottom:811.205071pt;}
.yde{bottom:812.205333pt;}
.y57{bottom:812.870533pt;}
.y18f{bottom:812.870666pt;}
.y55{bottom:812.870798pt;}
.y99{bottom:812.870931pt;}
.y2d8{bottom:815.194674pt;}
.y56{bottom:817.526800pt;}
.y2a{bottom:818.524800pt;}
.y5{bottom:820.187600pt;}
.y30a{bottom:821.847007pt;}
.y261{bottom:823.177074pt;}
.y1dc{bottom:825.509466pt;}
.y33b{bottom:825.839804pt;}
.y2d7{bottom:829.829407pt;}
.y10d{bottom:830.165600pt;}
.y18e{bottom:830.165733pt;}
.y54{bottom:830.165865pt;}
.y98{bottom:830.165998pt;}
.y309{bottom:836.481739pt;}
.y260{bottom:837.811807pt;}
.y1db{bottom:842.804533pt;}
.y2d6{bottom:844.464139pt;}
.y33a{bottom:844.465736pt;}
.y135{bottom:846.795600pt;}
.y18d{bottom:847.460800pt;}
.y53{bottom:847.460932pt;}
.y97{bottom:847.461065pt;}
.y10c{bottom:852.117200pt;}
.y25f{bottom:852.446539pt;}
.y308{bottom:855.107672pt;}
.y339{bottom:859.100469pt;}
.y1da{bottom:860.099600pt;}
.y2d5{bottom:863.090072pt;}
.y18c{bottom:864.755867pt;}
.y52{bottom:864.755999pt;}
.y96{bottom:864.756132pt;}
.y25e{bottom:867.081272pt;}
.y4{bottom:868.414533pt;}
.y307{bottom:869.742404pt;}
.y338{bottom:873.735201pt;}
.y1d9{bottom:877.394667pt;}
.y2d4{bottom:877.724804pt;}
.y18b{bottom:881.385867pt;}
.y25d{bottom:881.716004pt;}
.y226{bottom:882.050933pt;}
.y51{bottom:882.051066pt;}
.y95{bottom:882.051199pt;}
.y134{bottom:882.051332pt;}
.y306{bottom:884.377137pt;}
.y225{bottom:886.707333pt;}
.y36a{bottom:888.368337pt;}
.y2d3{bottom:892.359537pt;}
.y337{bottom:892.361134pt;}
.y3{bottom:895.688162pt;}
.y25c{bottom:896.350737pt;}
.y305{bottom:899.011870pt;}
.y50{bottom:899.346133pt;}
.y94{bottom:899.346266pt;}
.y133{bottom:899.346399pt;}
.y1d8{bottom:902.006933pt;}
.y369{bottom:903.003070pt;}
.y23e{bottom:904.002400pt;}
.y335{bottom:904.667600pt;}
.y334{bottom:906.994270pt;}
.y336{bottom:906.995867pt;}
.y25b{bottom:910.985470pt;}
.ydd{bottom:913.980533pt;}
.y4f{bottom:916.641200pt;}
.y4d{bottom:916.641333pt;}
.y132{bottom:916.641466pt;}
.y4e{bottom:921.297467pt;}
.y368{bottom:921.629002pt;}
.y2{bottom:924.956267pt;}
.y25a{bottom:925.620202pt;}
.y4c{bottom:933.936400pt;}
.ydb{bottom:933.936533pt;}
.y367{bottom:936.263735pt;}
.ydc{bottom:938.592800pt;}
.y259{bottom:940.254935pt;}
.y1{bottom:951.231467pt;}
.y4a{bottom:951.231600pt;}
.y258{bottom:954.889667pt;}
.y4b{bottom:955.887867pt;}
.y93{bottom:967.861333pt;}
.y49{bottom:968.526667pt;}
.y257{bottom:969.524400pt;}
.y23d{bottom:973.182933pt;}
.yda{bottom:1000.456000pt;}
.y91{bottom:1000.460134pt;}
.y23c{bottom:1000.460200pt;}
.y10b{bottom:1000.460333pt;}
.y131{bottom:1000.460664pt;}
.h15{height:17.696981pt;}
.h13{height:17.912506pt;}
.h9{height:19.902784pt;}
.h5{height:21.893062pt;}
.h16{height:23.648000pt;}
.h11{height:24.440000pt;}
.he{height:25.618667pt;}
.h14{height:27.528637pt;}
.h6{height:27.863898pt;}
.h17{height:29.461600pt;}
.h3{height:29.854176pt;}
.h18{height:29.922853pt;}
.h12{height:30.382560pt;}
.h10{height:30.383093pt;}
.hf{height:30.384160pt;}
.h8{height:31.844454pt;}
.h1{height:33.834733pt;}
.h7{height:35.825011pt;}
.hd{height:37.815290pt;}
.hc{height:43.000000pt;}
.h4{height:43.785726pt;}
.ha{height:63.688510pt;}
.h2{height:71.649623pt;}
.hb{height:1053.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:802.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:13.333333pt;}
.x1{left:63.858933pt;}
.x68{left:67.850000pt;}
.x71{left:70.510800pt;}
.xc{left:77.162800pt;}
.x11{left:83.128800pt;}
.xe{left:87.806000pt;}
.x6{left:89.720400pt;}
.x7{left:94.778133pt;}
.x12{left:96.385733pt;}
.x1a{left:100.400267pt;}
.x98{left:104.488933pt;}
.xad{left:106.785467pt;}
.x72{left:111.554933pt;}
.x46{left:114.741333pt;}
.x1b{left:119.053200pt;}
.x73{left:120.099733pt;}
.x7b{left:122.262133pt;}
.x7c{left:124.278000pt;}
.x74{left:125.473467pt;}
.x7d{left:129.316800pt;}
.x95{left:130.765200pt;}
.x48{left:131.878800pt;}
.x47{left:133.122267pt;}
.xae{left:134.081733pt;}
.x75{left:135.337333pt;}
.x6f{left:137.130133pt;}
.xa1{left:138.638000pt;}
.x34{left:139.894400pt;}
.x99{left:141.772667pt;}
.xa2{left:144.323200pt;}
.x70{left:147.346267pt;}
.x49{left:148.828000pt;}
.x50{left:150.918267pt;}
.x4a{left:156.297200pt;}
.x51{left:160.235333pt;}
.x91{left:162.999809pt;}
.x65{left:166.706933pt;}
.x29{left:169.394800pt;}
.xb1{left:177.449733pt;}
.x2a{left:178.845467pt;}
.x56{left:180.340667pt;}
.x6c{left:181.305600pt;}
.x9e{left:183.594267pt;}
.x3d{left:186.483467pt;}
.x6d{left:191.308533pt;}
.x55{left:193.354667pt;}
.x2f{left:200.971067pt;}
.x6e{left:201.979867pt;}
.xa3{left:205.788400pt;}
.x30{left:212.086267pt;}
.x8f{left:213.096400pt;}
.x9c{left:217.164916pt;}
.x1d{left:219.170533pt;}
.x90{left:220.404533pt;}
.x13{left:221.803733pt;}
.x54{left:225.768800pt;}
.x14{left:228.457867pt;}
.x57{left:230.479867pt;}
.xa5{left:238.391067pt;}
.xb5{left:239.500000pt;}
.x4b{left:245.624933pt;}
.x4c{left:251.310133pt;}
.x58{left:254.187200pt;}
.x7e{left:265.957467pt;}
.x22{left:270.171200pt;}
.x7f{left:275.490800pt;}
.x80{left:276.426800pt;}
.x24{left:278.398133pt;}
.x31{left:280.461200pt;}
.x69{left:282.215067pt;}
.x17{left:283.164133pt;}
.x25{left:287.874000pt;}
.x23{left:290.701333pt;}
.x64{left:292.700933pt;}
.x18{left:297.599333pt;}
.xf{left:300.676667pt;}
.x1f{left:303.346667pt;}
.x81{left:304.740133pt;}
.x10{left:307.308267pt;}
.x66{left:309.317067pt;}
.x26{left:311.766267pt;}
.x20{left:312.818933pt;}
.x2{left:313.876400pt;}
.x15{left:317.156400pt;}
.x67{left:318.272533pt;}
.x3{left:322.831867pt;}
.x92{left:324.065333pt;}
.x9a{left:325.417200pt;}
.xa6{left:329.110000pt;}
.xb3{left:331.286933pt;}
.x16{left:332.502933pt;}
.x21{left:334.428400pt;}
.xa7{left:336.662267pt;}
.x87{left:341.152733pt;}
.xac{left:343.928400pt;}
.x94{left:346.618667pt;}
.x42{left:350.991733pt;}
.xa4{left:354.104133pt;}
.xaf{left:357.452400pt;}
.x39{left:361.166533pt;}
.xb0{left:364.037333pt;}
.x43{left:365.030533pt;}
.x44{left:365.923867pt;}
.x97{left:368.646000pt;}
.x35{left:371.442000pt;}
.x5a{left:372.871067pt;}
.x5f{left:373.980267pt;}
.x6a{left:377.400933pt;}
.x45{left:378.381067pt;}
.x1e{left:380.230933pt;}
.x60{left:381.251733pt;}
.x36{left:382.417333pt;}
.x59{left:387.907867pt;}
.x4{left:390.968933pt;}
.x5b{left:392.886533pt;}
.x8e{left:396.394267pt;}
.xb7{left:398.948933pt;}
.x5{left:399.857467pt;}
.x5c{left:404.620133pt;}
.x32{left:406.735333pt;}
.xb8{left:409.912933pt;}
.x37{left:412.330533pt;}
.x4d{left:415.082800pt;}
.x33{left:415.995733pt;}
.x5d{left:418.280000pt;}
.x3b{left:419.728867pt;}
.x38{left:421.781200pt;}
.x2d{left:424.812800pt;}
.x52{left:428.378800pt;}
.xb4{left:431.077600pt;}
.x2e{left:432.120800pt;}
.x3c{left:434.125067pt;}
.x53{left:437.482667pt;}
.x6b{left:440.276400pt;}
.x27{left:444.072667pt;}
.x9b{left:450.566800pt;}
.x3a{left:451.990533pt;}
.x28{left:454.964800pt;}
.x5e{left:459.017467pt;}
.x2b{left:460.840667pt;}
.x8c{left:462.277333pt;}
.x61{left:465.907867pt;}
.x62{left:468.613733pt;}
.x8d{left:470.219867pt;}
.x2c{left:471.865200pt;}
.xb2{left:474.880533pt;}
.x63{left:477.874133pt;}
.x76{left:482.318800pt;}
.x77{left:485.258800pt;}
.x89{left:487.976467pt;}
.x3e{left:489.671733pt;}
.x88{left:491.217800pt;}
.x41{left:494.351933pt;}
.xb6{left:495.887733pt;}
.x78{left:497.144267pt;}
.x3f{left:503.711733pt;}
.x40{left:504.603733pt;}
.x1c{left:512.715600pt;}
.x19{left:515.427333pt;}
.x7a{left:517.612133pt;}
.x4f{left:519.215467pt;}
.x4e{left:520.694800pt;}
.x79{left:525.644600pt;}
.x9f{left:534.256575pt;}
.xb{left:558.765333pt;}
.x8{left:566.747733pt;}
.xa0{left:601.392551pt;}
.x8a{left:623.323467pt;}
.x9{left:627.614267pt;}
.x8b{left:631.020267pt;}
.xa{left:635.857333pt;}
.x82{left:640.261467pt;}
.x83{left:641.197467pt;}
.x9d{left:642.443241pt;}
.x84{left:645.964133pt;}
.x85{left:646.900133pt;}
.x93{left:669.440800pt;}
.x86{left:676.611000pt;}
.xa8{left:705.128933pt;}
.xaa{left:710.660667pt;}
.xa9{left:714.405333pt;}
.xab{left:718.605467pt;}
.x96{left:729.809867pt;}
}




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