
    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_dcda985c035af02e81f64a26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_a626c5705b537f6db5f2b420.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_a278b7be43e121d7a0783690.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_ef4ff40deda4457e6da6a87c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_bc8bc05f22e6d45ac5cef9aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eceabf1c0b9653c8865de372.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9a4154b11f8b14ab0098e37c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8d4fb5bcbd06bfded21192e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_67b1d0b3abd9e7a9d8a3ee84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_49ec2b3e722193857d1c10b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9f273f07b24d7265794332dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6cf09c021c2b4351794cf35b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.730072px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.754600px;}
.v2{vertical-align:27.383892px;}
.ls6a{letter-spacing:-0.935532px;}
.ls5f{letter-spacing:-0.890555px;}
.ls56{letter-spacing:-0.820390px;}
.ls63{letter-spacing:-0.719640px;}
.ls36{letter-spacing:-0.345427px;}
.ls33{letter-spacing:-0.340030px;}
.ls3e{letter-spacing:-0.323838px;}
.ls73{letter-spacing:-0.318441px;}
.ls1c{letter-spacing:-0.316642px;}
.ls48{letter-spacing:-0.264468px;}
.ls58{letter-spacing:-0.253673px;}
.ls59{letter-spacing:-0.248276px;}
.ls1b{letter-spacing:-0.215892px;}
.ls4a{letter-spacing:-0.194303px;}
.ls37{letter-spacing:-0.161919px;}
.ls76{letter-spacing:-0.156522px;}
.ls38{letter-spacing:-0.151124px;}
.ls60{letter-spacing:-0.143928px;}
.ls5d{letter-spacing:-0.134933px;}
.ls67{letter-spacing:-0.129535px;}
.ls22{letter-spacing:-0.122339px;}
.ls61{letter-spacing:-0.115142px;}
.ls6{letter-spacing:-0.107946px;}
.ls68{letter-spacing:-0.100750px;}
.ls13{letter-spacing:-0.093553px;}
.ls42{letter-spacing:-0.086357px;}
.ls11{letter-spacing:-0.079160px;}
.ls10{letter-spacing:-0.071964px;}
.ls53{letter-spacing:-0.070165px;}
.ls14{letter-spacing:-0.064768px;}
.ls3f{letter-spacing:-0.059370px;}
.ls8{letter-spacing:-0.057571px;}
.ls39{letter-spacing:-0.053973px;}
.lsd{letter-spacing:-0.050375px;}
.ls20{letter-spacing:-0.048576px;}
.lsc{letter-spacing:-0.043178px;}
.ls57{letter-spacing:-0.037781px;}
.ls9{letter-spacing:-0.035982px;}
.ls32{letter-spacing:-0.032384px;}
.lse{letter-spacing:-0.028786px;}
.ls47{letter-spacing:-0.026987px;}
.lsa{letter-spacing:-0.021589px;}
.ls34{letter-spacing:-0.016192px;}
.ls7{letter-spacing:-0.014393px;}
.ls46{letter-spacing:-0.010795px;}
.lsf{letter-spacing:-0.007196px;}
.ls40{letter-spacing:-0.005397px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.005397px;}
.ls0{letter-spacing:0.006621px;}
.ls2{letter-spacing:0.007196px;}
.ls4c{letter-spacing:0.010795px;}
.ls1{letter-spacing:0.014393px;}
.ls2b{letter-spacing:0.016192px;}
.ls4{letter-spacing:0.021589px;}
.ls21{letter-spacing:0.026987px;}
.ls3{letter-spacing:0.028786px;}
.ls2f{letter-spacing:0.032384px;}
.ls12{letter-spacing:0.035982px;}
.ls31{letter-spacing:0.037781px;}
.ls5{letter-spacing:0.043178px;}
.ls3c{letter-spacing:0.048576px;}
.ls18{letter-spacing:0.050375px;}
.ls50{letter-spacing:0.053973px;}
.ls1a{letter-spacing:0.057571px;}
.ls43{letter-spacing:0.059370px;}
.ls1e{letter-spacing:0.064768px;}
.ls6d{letter-spacing:0.070165px;}
.ls69{letter-spacing:0.071964px;}
.ls6f{letter-spacing:0.075562px;}
.ls65{letter-spacing:0.086357px;}
.ls70{letter-spacing:0.091754px;}
.ls30{letter-spacing:0.097151px;}
.ls6e{letter-spacing:0.102549px;}
.ls4d{letter-spacing:0.107946px;}
.ls4e{letter-spacing:0.113343px;}
.ls5b{letter-spacing:0.115142px;}
.ls4f{letter-spacing:0.118741px;}
.ls4b{letter-spacing:0.122339px;}
.ls29{letter-spacing:0.124138px;}
.ls55{letter-spacing:0.134933px;}
.ls5a{letter-spacing:0.136732px;}
.ls54{letter-spacing:0.140330px;}
.ls77{letter-spacing:0.145727px;}
.ls2c{letter-spacing:0.172714px;}
.ls27{letter-spacing:0.178111px;}
.ls19{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.205097px;}
.ls24{letter-spacing:0.215892px;}
.ls52{letter-spacing:0.226687px;}
.ls28{letter-spacing:0.237481px;}
.ls5e{letter-spacing:0.253673px;}
.ls71{letter-spacing:0.259070px;}
.ls45{letter-spacing:0.264468px;}
.ls51{letter-spacing:0.269865px;}
.ls79{letter-spacing:0.275262px;}
.ls3b{letter-spacing:0.280660px;}
.ls35{letter-spacing:0.286057px;}
.ls78{letter-spacing:0.291454px;}
.ls25{letter-spacing:0.296852px;}
.ls44{letter-spacing:0.302249px;}
.ls3a{letter-spacing:0.307646px;}
.ls72{letter-spacing:0.313043px;}
.ls26{letter-spacing:0.323838px;}
.ls74{letter-spacing:0.329235px;}
.ls41{letter-spacing:0.334633px;}
.ls49{letter-spacing:0.340030px;}
.ls62{letter-spacing:0.354000px;}
.ls2d{letter-spacing:0.356222px;}
.ls16{letter-spacing:0.359400px;}
.ls17{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.360600px;}
.ls1d{letter-spacing:0.361620px;}
.ls3d{letter-spacing:0.377811px;}
.ls2e{letter-spacing:0.453373px;}
.ls2a{letter-spacing:0.485757px;}
.ls1f{letter-spacing:0.582908px;}
.ls66{letter-spacing:0.590105px;}
.ls6b{letter-spacing:0.647676px;}
.ls64{letter-spacing:0.719640px;}
.ls6c{letter-spacing:1.079460px;}
.ls15{letter-spacing:54.836568px;}
.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;}
}
.ws56{word-spacing:-18.581105px;}
.ws19{word-spacing:-18.573908px;}
.ws39{word-spacing:-18.113339px;}
.ws5b{word-spacing:-18.062964px;}
.ws48{word-spacing:-18.055768px;}
.ws61{word-spacing:-18.019786px;}
.ws2{word-spacing:-18.012589px;}
.ws49{word-spacing:-17.998196px;}
.ws4{word-spacing:-17.991000px;}
.ws2d{word-spacing:-17.983804px;}
.wsb{word-spacing:-17.976607px;}
.ws5a{word-spacing:-17.969411px;}
.ws3{word-spacing:-17.962214px;}
.ws57{word-spacing:-17.955018px;}
.ws5{word-spacing:-17.947822px;}
.ws5e{word-spacing:-17.940625px;}
.ws51{word-spacing:-17.933429px;}
.ws5c{word-spacing:-17.926232px;}
.ws58{word-spacing:-17.890250px;}
.ws9{word-spacing:-17.883054px;}
.ws54{word-spacing:-17.875858px;}
.ws8{word-spacing:-17.775108px;}
.wsa{word-spacing:-17.674358px;}
.ws53{word-spacing:-17.271360px;}
.ws5d{word-spacing:-17.055468px;}
.ws47{word-spacing:-13.709142px;}
.ws62{word-spacing:-13.493250px;}
.ws46{word-spacing:-12.602696px;}
.wsc{word-spacing:-12.415620px;}
.ws22{word-spacing:-0.863568px;}
.ws20{word-spacing:-0.836582px;}
.ws71{word-spacing:-0.831184px;}
.ws4c{word-spacing:-0.404798px;}
.ws25{word-spacing:-0.296852px;}
.ws38{word-spacing:-0.232084px;}
.ws37{word-spacing:-0.215892px;}
.ws72{word-spacing:-0.188906px;}
.ws21{word-spacing:-0.183508px;}
.ws24{word-spacing:-0.178111px;}
.ws23{word-spacing:-0.172714px;}
.ws63{word-spacing:-0.151124px;}
.ws4e{word-spacing:-0.145727px;}
.ws6f{word-spacing:-0.140330px;}
.ws6e{word-spacing:-0.134933px;}
.ws4a{word-spacing:-0.129535px;}
.ws2e{word-spacing:-0.124138px;}
.ws4b{word-spacing:-0.102549px;}
.ws26{word-spacing:-0.064768px;}
.ws6a{word-spacing:-0.053973px;}
.ws14{word-spacing:-0.050375px;}
.ws45{word-spacing:-0.043178px;}
.ws31{word-spacing:-0.037781px;}
.ws60{word-spacing:-0.035982px;}
.ws40{word-spacing:-0.032384px;}
.ws12{word-spacing:-0.028786px;}
.wse{word-spacing:-0.021589px;}
.ws50{word-spacing:-0.014393px;}
.ws2c{word-spacing:-0.007196px;}
.ws0{word-spacing:0.000000px;}
.ws41{word-spacing:0.005397px;}
.ws52{word-spacing:0.007196px;}
.ws4f{word-spacing:0.014393px;}
.ws2a{word-spacing:0.016192px;}
.ws10{word-spacing:0.021589px;}
.ws16{word-spacing:0.028786px;}
.ws6b{word-spacing:0.032384px;}
.ws1b{word-spacing:0.035982px;}
.ws70{word-spacing:0.037781px;}
.wsf{word-spacing:0.043178px;}
.ws30{word-spacing:0.048576px;}
.ws59{word-spacing:0.050375px;}
.ws3f{word-spacing:0.053973px;}
.ws18{word-spacing:0.057571px;}
.ws66{word-spacing:0.059370px;}
.ws6{word-spacing:0.064768px;}
.ws2f{word-spacing:0.070165px;}
.ws17{word-spacing:0.071964px;}
.ws2b{word-spacing:0.075562px;}
.ws5f{word-spacing:0.079160px;}
.ws65{word-spacing:0.080960px;}
.ws32{word-spacing:0.086357px;}
.ws42{word-spacing:0.091754px;}
.ws7{word-spacing:0.093553px;}
.ws3c{word-spacing:0.097151px;}
.ws67{word-spacing:0.102549px;}
.ws3a{word-spacing:0.107946px;}
.ws33{word-spacing:0.113343px;}
.ws27{word-spacing:0.118741px;}
.ws44{word-spacing:0.124138px;}
.ws1a{word-spacing:0.129535px;}
.ws3b{word-spacing:0.134933px;}
.ws15{word-spacing:0.136732px;}
.ws64{word-spacing:0.140330px;}
.ws4d{word-spacing:0.145727px;}
.ws29{word-spacing:0.151124px;}
.ws69{word-spacing:0.156522px;}
.ws1d{word-spacing:0.161919px;}
.ws6c{word-spacing:0.172714px;}
.ws1f{word-spacing:0.178111px;}
.ws68{word-spacing:0.188906px;}
.ws43{word-spacing:0.199700px;}
.ws6d{word-spacing:0.205097px;}
.ws3e{word-spacing:0.215892px;}
.ws36{word-spacing:0.232084px;}
.ws28{word-spacing:0.313043px;}
.ws11{word-spacing:0.496552px;}
.wsd{word-spacing:0.633283px;}
.ws13{word-spacing:0.654872px;}
.ws1e{word-spacing:0.858171px;}
.ws3d{word-spacing:1.014692px;}
.ws34{word-spacing:1.068665px;}
.ws35{word-spacing:1.252174px;}
.ws55{word-spacing:36.111600px;}
.ws1{word-spacing:36.125928px;}
.ws1c{word-spacing:36.126000px;}
._3{margin-left:-2.795801px;}
._1{margin-left:-1.619190px;}
._0{width:1.662368px;}
._2{width:3.000899px;}
.fc2{color:rgb(181,31,48);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.216000px;}
.fs4{font-size:53.973000px;}
.fs0{font-size:66.206400px;}
.fs1{font-size:71.964000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.233492px;}
.y14a{bottom:3.233942px;}
.yba{bottom:3.236550px;}
.yc1{bottom:3.237750px;}
.y13f{bottom:3.237900px;}
.y219{bottom:3.238050px;}
.yb7{bottom:3.238200px;}
.ya0{bottom:3.238350px;}
.ya5{bottom:3.238500px;}
.ya3{bottom:3.238650px;}
.yd3{bottom:3.238800px;}
.yd0{bottom:3.238950px;}
.ycb{bottom:3.239100px;}
.yc6{bottom:3.239250px;}
.y108{bottom:3.413192px;}
.yb5{bottom:3.416700px;}
.y21c{bottom:3.418050px;}
.yb2{bottom:3.418200px;}
.yf6{bottom:3.418350px;}
.ya9{bottom:3.418500px;}
.y13d{bottom:3.418650px;}
.y10e{bottom:3.418800px;}
.yd5{bottom:3.418950px;}
.yc8{bottom:3.419100px;}
.y224{bottom:3.419250px;}
.y135{bottom:3.463500px;}
.y12e{bottom:3.777300px;}
.ybd{bottom:5.576400px;}
.yd8{bottom:5.757150px;}
.yff{bottom:6.294900px;}
.y237{bottom:6.295500px;}
.y234{bottom:6.295650px;}
.y242{bottom:6.296700px;}
.y23c{bottom:6.296850px;}
.yf4{bottom:6.297000px;}
.yda{bottom:6.297150px;}
.ybf{bottom:6.476250px;}
.y240{bottom:6.476700px;}
.y9e{bottom:6.477000px;}
.y245{bottom:6.477450px;}
.yb9{bottom:9.353550px;}
.yb4{bottom:9.353700px;}
.y102{bottom:9.354750px;}
.y220{bottom:9.354900px;}
.y21a{bottom:9.355050px;}
.yb1{bottom:9.355200px;}
.yac{bottom:9.355350px;}
.ya7{bottom:9.355500px;}
.ya2{bottom:9.355650px;}
.y10b{bottom:9.355800px;}
.yd2{bottom:9.355950px;}
.yca{bottom:9.356100px;}
.yc5{bottom:9.356250px;}
.ycd{bottom:9.386100px;}
.y217{bottom:9.400050px;}
.y147{bottom:18.706442px;}
.yc2{bottom:18.710250px;}
.y149{bottom:18.710700px;}
.y107{bottom:18.889950px;}
.y251{bottom:25.902092px;}
.y145{bottom:34.183200px;}
.y22f{bottom:34.362600px;}
.y250{bottom:41.378850px;}
.y22d{bottom:49.835100px;}
.y22b{bottom:65.487600px;}
.y1{bottom:77.519700px;}
.y30{bottom:77.519850px;}
.y229{bottom:80.988600px;}
.y24c{bottom:87.974850px;}
.y227{bottom:96.461100px;}
.y241{bottom:109.183500px;}
.y49{bottom:111.123690px;}
.y1d8{bottom:112.960200px;}
.y13c{bottom:116.019000px;}
.y192{bottom:116.538981px;}
.y24a{bottom:119.100000px;}
.y7b{bottom:123.209550px;}
.y203{bottom:125.914200px;}
.y115{bottom:126.807420px;}
.y1a8{bottom:128.574960px;}
.y59{bottom:128.592951px;}
.y1c2{bottom:128.972700px;}
.y23f{bottom:131.491500px;}
.y173{bottom:132.914817px;}
.y1a0{bottom:135.051720px;}
.y13b{bottom:138.328500px;}
.y89{bottom:139.581120px;}
.y2f{bottom:140.448990px;}
.y1ad{bottom:140.449020px;}
.yf2{bottom:141.552423px;}
.y1b1{bottom:145.864311px;}
.y48{bottom:152.502990px;}
.y23e{bottom:153.975000px;}
.y1eb{bottom:154.334850px;}
.y1d7{bottom:154.513350px;}
.y6a{bottom:155.381550px;}
.y191{bottom:157.918281px;}
.y13a{bottom:160.810500px;}
.y7a{bottom:164.588700px;}
.y88{bottom:167.107350px;}
.y1e0{bottom:167.287350px;}
.y202{bottom:167.467350px;}
.y114{bottom:168.186750px;}
.y1a7{bottom:169.954260px;}
.y58{bottom:169.972251px;}
.y1c1{bottom:170.525850px;}
.y172{bottom:174.294117px;}
.y15b{bottom:175.914477px;}
.y23d{bottom:176.283000px;}
.y19f{bottom:176.431020px;}
.ydf{bottom:181.499850px;}
.y2e{bottom:181.828290px;}
.y187{bottom:181.828320px;}
.yf1{bottom:182.931723px;}
.y139{bottom:183.120000px;}
.y1b0{bottom:187.250850px;}
.y47{bottom:193.882290px;}
.y1ea{bottom:195.893850px;}
.y69{bottom:196.760850px;}
.y23b{bottom:198.592500px;}
.y190{bottom:199.297581px;}
.y138{bottom:205.428000px;}
.y79{bottom:205.967700px;}
.y1d6{bottom:208.666350px;}
.y1df{bottom:208.846500px;}
.y9c{bottom:211.333560px;}
.y57{bottom:211.351551px;}
.y171{bottom:215.673417px;}
.yde{bottom:216.043500px;}
.y15a{bottom:217.293777px;}
.y19e{bottom:217.810320px;}
.y23a{bottom:220.900500px;}
.y20a{bottom:221.620350px;}
.y2d{bottom:223.207590px;}
.y186{bottom:223.207620px;}
.yf0{bottom:224.311023px;}
.y1c0{bottom:224.679000px;}
.y137{bottom:227.737500px;}
.y46{bottom:235.261590px;}
.y1e9{bottom:237.273000px;}
.y68{bottom:238.140150px;}
.ydd{bottom:238.531500px;}
.y1af{bottom:240.658890px;}
.y18f{bottom:240.676881px;}
.y239{bottom:243.210000px;}
.y13{bottom:246.273354px;}
.y78{bottom:247.337877px;}
.y136{bottom:250.045500px;}
.y1d5{bottom:250.225500px;}
.y9b{bottom:252.712860px;}
.y159{bottom:258.673077px;}
.y19d{bottom:259.189620px;}
.ydc{bottom:260.841000px;}
.y1fd{bottom:262.999500px;}
.y209{bottom:263.179500px;}
.y2c{bottom:264.586890px;}
.y185{bottom:264.586920px;}
.y56{bottom:264.604911px;}
.y238{bottom:265.518000px;}
.yef{bottom:265.690323px;}
.y1bf{bottom:266.238000px;}
.y113{bottom:268.576500px;}
.y170{bottom:268.926777px;}
.y134{bottom:272.355000px;}
.y1a6{bottom:276.694863px;}
.y18e{bottom:282.110154px;}
.ydb{bottom:283.194000px;}
.y236{bottom:288.052500px;}
.y45{bottom:288.748833px;}
.y77{bottom:288.771390px;}
.y67{bottom:291.447483px;}
.y1e8{bottom:291.469650px;}
.y205{bottom:291.649650px;}
.y9a{bottom:294.146133px;}
.y133{bottom:294.888000px;}
.y112{bottom:298.666500px;}
.y158{bottom:300.106350px;}
.y19c{bottom:300.622893px;}
.y1d4{bottom:304.423650px;}
.y1fc{bottom:304.603650px;}
.yd9{bottom:305.503500px;}
.y184{bottom:306.020193px;}
.y55{bottom:306.038184px;}
.yee{bottom:307.123596px;}
.y1be{bottom:307.662150px;}
.y16f{bottom:310.360050px;}
.y235{bottom:310.360500px;}
.y12{bottom:315.052947px;}
.y132{bottom:317.197500px;}
.y2b{bottom:318.074133px;}
.y1a5{bottom:318.074163px;}
.y111{bottom:320.974500px;}
.y18d{bottom:323.489454px;}
.yd7{bottom:328.531500px;}
.y44{bottom:330.128133px;}
.y76{bottom:330.150690px;}
.y233{bottom:332.670000px;}
.y1e7{bottom:333.028650px;}
.y99{bottom:335.525433px;}
.y131{bottom:339.505500px;}
.y157{bottom:341.485200px;}
.y19b{bottom:342.002193px;}
.y110{bottom:343.284000px;}
.y204{bottom:345.802650px;}
.y1d3{bottom:345.982650px;}
.y183{bottom:347.399493px;}
.y54{bottom:347.417484px;}
.yed{bottom:348.502896px;}
.y1bd{bottom:349.041150px;}
.y16e{bottom:351.739350px;}
.y232{bottom:354.978000px;}
.y201{bottom:358.756650px;}
.y2a{bottom:359.453433px;}
.y1a4{bottom:359.453463px;}
.y130{bottom:361.815000px;}
.y10f{bottom:365.592000px;}
.y11{bottom:369.079920px;}
.y43{bottom:371.507433px;}
.y75{bottom:371.529990px;}
.y98{bottom:376.904733px;}
.y18c{bottom:376.922724px;}
.y156{bottom:382.864500px;}
.y19a{bottom:383.381493px;}
.y12f{bottom:384.123000px;}
.y1e6{bottom:387.181800px;}
.y1d2{bottom:387.361800px;}
.y10d{bottom:387.901500px;}
.y123{bottom:388.778793px;}
.y53{bottom:388.796784px;}
.y16d{bottom:393.118650px;}
.y66{bottom:398.314023px;}
.y1fb{bottom:400.135800px;}
.y200{bottom:400.315800px;}
.y29{bottom:400.832733px;}
.y182{bottom:400.832763px;}
.yec{bottom:401.756256px;}
.y1bc{bottom:403.194300px;}
.y12d{bottom:406.432500px;}
.y10c{bottom:410.389500px;}
.y10{bottom:410.459220px;}
.y42{bottom:412.886733px;}
.y74{bottom:412.909290px;}
.y231{bottom:414.528300px;}
.y97{bottom:418.284033px;}
.y18b{bottom:418.302024px;}
.y155{bottom:424.243650px;}
.y199{bottom:424.760793px;}
.yd6{bottom:424.783800px;}
.y1e5{bottom:428.740800px;}
.y12c{bottom:428.920500px;}
.y122{bottom:430.158093px;}
.y52{bottom:430.176084px;}
.y10a{bottom:432.699000px;}
.y16c{bottom:434.497650px;}
.y65{bottom:439.693323px;}
.y1d1{bottom:441.514950px;}
.y1fa{bottom:441.694950px;}
.y28{bottom:442.212033px;}
.y181{bottom:442.212063px;}
.yeb{bottom:443.135556px;}
.y1bb{bottom:444.753450px;}
.y12b{bottom:451.230000px;}
.yf{bottom:451.874502px;}
.y41{bottom:454.266033px;}
.y109{bottom:455.007000px;}
.y96{bottom:459.663333px;}
.y18a{bottom:459.681324px;}
.yd4{bottom:460.764000px;}
.y154{bottom:465.622110px;}
.y198{bottom:466.140093px;}
.y73{bottom:466.162650px;}
.y1e4{bottom:470.119950px;}
.y121{bottom:471.537393px;}
.y51{bottom:471.555384px;}
.y12a{bottom:474.258000px;}
.y226{bottom:475.158000px;}
.y16b{bottom:475.871148px;}
.y106{bottom:478.036500px;}
.y64{bottom:481.072623px;}
.y1f0{bottom:482.893950px;}
.y1d0{bottom:483.073950px;}
.yd1{bottom:483.253500px;}
.y27{bottom:483.591333px;}
.y180{bottom:483.591363px;}
.yea{bottom:484.514856px;}
.ye{bottom:493.253802px;}
.y230{bottom:494.047950px;}
.y40{bottom:495.645333px;}
.y1f9{bottom:495.847950px;}
.y1ba{bottom:498.906450px;}
.y95{bottom:501.042633px;}
.y189{bottom:501.060624px;}
.ycf{bottom:505.561500px;}
.y197{bottom:507.519393px;}
.y72{bottom:507.541800px;}
.y153{bottom:508.615308px;}
.y22e{bottom:509.520600px;}
.y120{bottom:512.916693px;}
.y50{bottom:512.934684px;}
.y16a{bottom:517.250448px;}
.y63{bottom:522.451923px;}
.y1e3{bottom:524.273100px;}
.y1ef{bottom:524.452950px;}
.y26{bottom:524.970633px;}
.y17f{bottom:524.970663px;}
.y22c{bottom:524.993100px;}
.ye9{bottom:525.894156px;}
.yce{bottom:527.871000px;}
.yd{bottom:534.633102px;}
.y1a3{bottom:537.024633px;}
.y87{bottom:537.031515px;}
.y1cf{bottom:537.227100px;}
.y1f8{bottom:537.407100px;}
.y1b9{bottom:540.465600px;}
.y22a{bottom:540.645600px;}
.y94{bottom:542.421933px;}
.y188{bottom:542.441700px;}
.y3f{bottom:548.898693px;}
.y71{bottom:548.914818px;}
.ycc{bottom:550.179000px;}
.y152{bottom:552.513348px;}
.y11f{bottom:554.295993px;}
.y228{bottom:556.146600px;}
.y169{bottom:558.665730px;}
.y62{bottom:563.687295px;}
.y1e2{bottom:565.862100px;}
.y25{bottom:566.385915px;}
.y17e{bottom:566.385945px;}
.y4f{bottom:566.403936px;}
.ye8{bottom:567.309438px;}
.y225{bottom:571.619100px;}
.yc9{bottom:572.518500px;}
.yc{bottom:576.012402px;}
.y1a2{bottom:578.439915px;}
.y86{bottom:578.446797px;}
.y129{bottom:578.455500px;}
.y1ee{bottom:578.636100px;}
.y1ce{bottom:578.816100px;}
.y1b8{bottom:581.874600px;}
.y93{bottom:583.657305px;}
.y105{bottom:583.673100px;}
.y3e{bottom:590.313975px;}
.y70{bottom:590.319807px;}
.y1f7{bottom:591.588750px;}
.yc7{bottom:594.826500px;}
.y11e{bottom:595.711275px;}
.y168{bottom:600.045030px;}
.y61{bottom:605.066595px;}
.y151{bottom:606.882150px;}
.y17d{bottom:607.765245px;}
.y4e{bottom:607.783236px;}
.ye7{bottom:608.688738px;}
.yc4{bottom:617.316000px;}
.yb{bottom:617.391702px;}
.y104{bottom:618.394500px;}
.y24{bottom:619.639275px;}
.y1a1{bottom:619.639305px;}
.y128{bottom:619.834800px;}
.y1e1{bottom:620.015250px;}
.y1cd{bottom:620.195250px;}
.y92{bottom:625.036605px;}
.y3d{bottom:631.693275px;}
.y6f{bottom:631.699107px;}
.y85{bottom:631.700157px;}
.y1ff{bottom:632.969250px;}
.y1f6{bottom:633.149250px;}
.y1b7{bottom:636.027750px;}
.y11d{bottom:637.090575px;}
.yc0{bottom:639.625500px;}
.y103{bottom:640.705500px;}
.y60{bottom:646.445895px;}
.y150{bottom:648.261450px;}
.y1ac{bottom:649.144545px;}
.y4d{bottom:649.162536px;}
.ye6{bottom:650.068038px;}
.y167{bottom:653.478300px;}
.y223{bottom:655.456500px;}
.ya{bottom:658.771002px;}
.y23{bottom:661.018575px;}
.y17c{bottom:661.018605px;}
.y127{bottom:661.214100px;}
.y101{bottom:663.013500px;}
.y91{bottom:666.415905px;}
.ybe{bottom:671.290500px;}
.y3c{bottom:673.072575px;}
.y6e{bottom:673.078407px;}
.y84{bottom:673.079457px;}
.y1cc{bottom:674.348400px;}
.y1fe{bottom:674.528250px;}
.y1b6{bottom:677.586750px;}
.y222{bottom:677.946000px;}
.y11c{bottom:678.469875px;}
.y100{bottom:685.323000px;}
.y1f5{bottom:687.480900px;}
.y5f{bottom:687.825195px;}
.y14f{bottom:689.640150px;}
.y1ab{bottom:690.523845px;}
.y4c{bottom:690.541836px;}
.ye5{bottom:691.447338px;}
.ybc{bottom:694.498500px;}
.y166{bottom:694.857600px;}
.y9{bottom:700.204275px;}
.y221{bottom:700.255500px;}
.y22{bottom:702.397875px;}
.y17b{bottom:702.397905px;}
.y126{bottom:702.593400px;}
.yfe{bottom:707.632500px;}
.y90{bottom:707.795205px;}
.y3b{bottom:714.451875px;}
.y6d{bottom:714.457707px;}
.y83{bottom:714.458757px;}
.y1cb{bottom:715.907400px;}
.y1b5{bottom:718.965900px;}
.y11b{bottom:719.849175px;}
.y21f{bottom:722.563500px;}
.y208{bottom:728.859900px;}
.y1f4{bottom:729.039900px;}
.y5e{bottom:729.204495px;}
.yfd{bottom:730.840500px;}
.y14e{bottom:731.019750px;}
.y1aa{bottom:731.903145px;}
.y4b{bottom:731.921136px;}
.ye4{bottom:732.826638px;}
.y165{bottom:736.236750px;}
.y8{bottom:741.583575px;}
.y21{bottom:743.777175px;}
.y17a{bottom:743.777205px;}
.y21e{bottom:744.873000px;}
.y196{bottom:755.831175px;}
.y82{bottom:755.838057px;}
.y1de{bottom:757.286550px;}
.y1b4{bottom:760.345050px;}
.y8f{bottom:761.228475px;}
.y21d{bottom:767.181000px;}
.y3a{bottom:767.885145px;}
.y6c{bottom:767.890977px;}
.y1ca{bottom:770.060550px;}
.y1f3{bottom:770.239050px;}
.y14d{bottom:772.398750px;}
.y11a{bottom:773.282445px;}
.ye3{bottom:774.205938px;}
.y125{bottom:777.256320px;}
.y164{bottom:777.615900px;}
.y7{bottom:782.962875px;}
.y20{bottom:785.156475px;}
.y179{bottom:785.156505px;}
.y4a{bottom:785.174496px;}
.y21b{bottom:789.490500px;}
.ybb{bottom:790.570050px;}
.y195{bottom:797.210475px;}
.y81{bottom:797.217357px;}
.y124{bottom:804.782550px;}
.y39{bottom:809.264445px;}
.y6b{bottom:809.270277px;}
.y1dd{bottom:811.439550px;}
.y1c9{bottom:811.619550px;}
.y218{bottom:811.978500px;}
.y14c{bottom:813.778050px;}
.y1b3{bottom:814.498050px;}
.y119{bottom:814.661745px;}
.ye2{bottom:815.567307px;}
.y163{bottom:819.003558px;}
.yb8{bottom:820.615500px;}
.y6{bottom:824.342175px;}
.y1f2{bottom:824.572050px;}
.y1f{bottom:826.535775px;}
.y178{bottom:826.535805px;}
.yfc{bottom:826.910550px;}
.y216{bottom:834.288000px;}
.y5d{bottom:836.071035px;}
.y194{bottom:838.643748px;}
.y80{bottom:838.650630px;}
.yb6{bottom:842.968500px;}
.y38{bottom:850.697718px;}
.y1dc{bottom:853.043700px;}
.y118{bottom:856.095018px;}
.y1b2{bottom:856.102050px;}
.y215{bottom:856.641000px;}
.y14b{bottom:860.779200px;}
.yfb{bottom:861.499500px;}
.yb3{bottom:865.278000px;}
.y5{bottom:865.721475px;}
.y1c8{bottom:865.996200px;}
.y1f1{bottom:866.176200px;}
.y1e{bottom:867.969048px;}
.y8e{bottom:867.969078px;}
.ye1{bottom:869.054550px;}
.y162{bottom:874.271910px;}
.y144{bottom:874.632000px;}
.y5c{bottom:877.324398px;}
.y214{bottom:878.950500px;}
.y193{bottom:880.023048px;}
.y7f{bottom:880.029930px;}
.yfa{bottom:883.987500px;}
.yb0{bottom:887.586000px;}
.y249{bottom:891.184500px;}
.y37{bottom:892.077018px;}
.y148{bottom:893.342700px;}
.y117{bottom:897.474318px;}
.y1ae{bottom:897.479700px;}
.y213{bottom:901.258500px;}
.y252{bottom:901.618350px;}
.yf9{bottom:906.297000px;}
.y4{bottom:907.100775px;}
.y1db{bottom:907.375350px;}
.y1c7{bottom:907.555350px;}
.y146{bottom:908.815200px;}
.y1d{bottom:909.348348px;}
.y8d{bottom:909.348378px;}
.yaf{bottom:910.074000px;}
.y161{bottom:916.370550px;}
.y5b{bottom:920.142978px;}
.y207{bottom:920.329350px;}
.y177{bottom:921.402348px;}
.y7e{bottom:921.409230px;}
.y212{bottom:923.568000px;}
.yf8{bottom:928.605000px;}
.yae{bottom:932.383500px;}
.y36{bottom:933.456318px;}
.y1a9{bottom:938.853618px;}
.y116{bottom:938.859000px;}
.y211{bottom:946.056000px;}
.y24f{bottom:948.210092px;}
.y3{bottom:948.480075px;}
.y1da{bottom:948.754350px;}
.y1c{bottom:950.727648px;}
.y8c{bottom:950.727678px;}
.yf7{bottom:950.914500px;}
.yad{bottom:954.691500px;}
.y160{bottom:957.750990px;}
.y5a{bottom:961.342368px;}
.y1c6{bottom:961.708350px;}
.y206{bottom:961.888350px;}
.y176{bottom:962.781648px;}
.y24e{bottom:963.686850px;}
.y210{bottom:968.365500px;}
.ye0{bottom:969.443850px;}
.yf5{bottom:973.222500px;}
.y35{bottom:974.835618px;}
.y7d{bottom:974.842200px;}
.yab{bottom:977.001000px;}
.y24d{bottom:979.159350px;}
.y20f{bottom:990.673500px;}
.y1b{bottom:992.106948px;}
.y8b{bottom:992.106978px;}
.y24b{bottom:994.632000px;}
.yf3{bottom:996.430500px;}
.y143{bottom:999.129000px;}
.yaa{bottom:999.309000px;}
.y1d9{bottom:1003.087500px;}
.y1c5{bottom:1003.267500px;}
.y175{bottom:1004.160948px;}
.y2{bottom:1006.501050px;}
.y15f{bottom:1011.004350px;}
.y20e{bottom:1012.983000px;}
.y34{bottom:1016.214918px;}
.y7c{bottom:1016.221200px;}
.ya8{bottom:1021.618500px;}
.y1a{bottom:1033.491600px;}
.y8a{bottom:1033.491750px;}
.y20d{bottom:1035.291000px;}
.y142{bottom:1043.926500px;}
.ya6{bottom:1044.106500px;}
.y1c4{bottom:1044.646500px;}
.y174{bottom:1045.540248px;}
.y248{bottom:1045.546500px;}
.y15e{bottom:1052.382660px;}
.y1ed{bottom:1057.420500px;}
.y33{bottom:1057.594218px;}
.y20c{bottom:1057.600500px;}
.ya4{bottom:1066.416000px;}
.y141{bottom:1067.136000px;}
.y247{bottom:1067.854500px;}
.y20b{bottom:1080.808500px;}
.y19{bottom:1086.924900px;}
.ya1{bottom:1088.724000px;}
.y140{bottom:1089.444000px;}
.y246{bottom:1090.164000px;}
.y15d{bottom:1095.375168px;}
.y1c3{bottom:1098.799650px;}
.y32{bottom:1098.973518px;}
.y1ec{bottom:1098.979650px;}
.y18{bottom:1101.805500px;}
.y9f{bottom:1111.033500px;}
.y13e{bottom:1111.753500px;}
.y244{bottom:1112.472000px;}
.y17{bottom:1123.405500px;}
.y9d{bottom:1134.091500px;}
.y243{bottom:1134.991500px;}
.y15c{bottom:1139.489100px;}
.y31{bottom:1140.388800px;}
.y16{bottom:1145.005500px;}
.y15{bottom:1166.605500px;}
.y14{bottom:1188.205500px;}
.h13{height:21.588000px;}
.h10{height:21.589500px;}
.h14{height:21.624000px;}
.h12{height:21.625500px;}
.h19{height:22.488000px;}
.h1b{height:22.489500px;}
.h15{height:30.945000px;}
.h17{height:31.123500px;}
.h1a{height:36.921959px;}
.hf{height:38.740386px;}
.h1{height:47.521195px;}
.h2{height:48.631922px;}
.h5{height:48.761719px;}
.h4{height:48.796875px;}
.h6{height:49.967191px;}
.h3{height:51.653848px;}
.h1d{height:51.655048px;}
.h1e{height:51.656248px;}
.h22{height:51.657808px;}
.h1f{height:51.675016px;}
.h18{height:51.675136px;}
.h25{height:51.675736px;}
.h23{height:51.677056px;}
.h21{height:51.677776px;}
.h24{height:51.703948px;}
.h16{height:51.725572px;}
.h26{height:51.754888px;}
.h11{height:52.945194px;}
.he{height:61.981892px;}
.hb{height:61.992056px;}
.h7{height:70.593592px;}
.hd{height:70.594192px;}
.hc{height:70.594792px;}
.h20{height:70.596952px;}
.h8{height:70.616920px;}
.ha{height:70.618720px;}
.h9{height:70.634764px;}
.h1c{height:106.866000px;}
.h28{height:131.334000px;}
.h27{height:162.667500px;}
.h0{height:1263.000000px;}
.w42{width:46.236000px;}
.w23{width:46.416000px;}
.w32{width:52.713000px;}
.wb{width:55.053000px;}
.w3e{width:55.627500px;}
.w3d{width:55.771500px;}
.we{width:59.550000px;}
.w3b{width:59.766000px;}
.w35{width:60.666000px;}
.w31{width:60.808500px;}
.w1a{width:65.523000px;}
.w2f{width:66.385500px;}
.w33{width:66.387000px;}
.w16{width:71.604000px;}
.w4{width:71.640000px;}
.wa{width:73.438500px;}
.w18{width:73.440000px;}
.wd{width:73.582500px;}
.w17{width:73.618500px;}
.w3a{width:80.059500px;}
.w3{width:80.239500px;}
.w28{width:83.514000px;}
.w34{width:84.016500px;}
.w3c{width:84.198000px;}
.w30{width:84.234000px;}
.wc{width:88.012500px;}
.wf{width:94.128000px;}
.w29{width:95.352000px;}
.w25{width:95.388000px;}
.w5{width:95.532000px;}
.w1e{width:96.612000px;}
.w36{width:96.970500px;}
.w1b{width:99.849000px;}
.w26{width:101.289000px;}
.w24{width:103.267500px;}
.w39{width:111.759000px;}
.w2d{width:113.881500px;}
.w14{width:145.404000px;}
.w12{width:145.546500px;}
.w13{width:145.582500px;}
.w1f{width:149.541000px;}
.w10{width:157.240500px;}
.w37{width:157.990500px;}
.w2e{width:158.170500px;}
.w1c{width:162.847500px;}
.w6{width:165.546000px;}
.w15{width:173.823000px;}
.w27{width:179.220000px;}
.w43{width:206.206500px;}
.w8{width:217.405500px;}
.w21{width:224.016000px;}
.w9{width:227.974500px;}
.w22{width:241.288500px;}
.w41{width:252.802500px;}
.w2b{width:265.215000px;}
.w3f{width:279.970500px;}
.w2c{width:309.654000px;}
.w1d{width:392.457000px;}
.w19{width:395.697000px;}
.w2{width:414.046500px;}
.w20{width:577.075500px;}
.w40{width:616.654500px;}
.w38{width:617.374500px;}
.w7{width:636.445500px;}
.w11{width:692.443500px;}
.w2a{width:754.150500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x11{left:7.555950px;}
.x10{left:9.535050px;}
.x3c{left:11.513550px;}
.x1f{left:13.133400px;}
.x2b{left:14.752200px;}
.x28{left:15.833250px;}
.x25{left:18.170700px;}
.x27{left:19.251750px;}
.x16{left:20.719050px;}
.x1d{left:22.130250px;}
.x15{left:24.137550px;}
.x23{left:25.368750px;}
.x13{left:27.554400px;}
.x2a{left:28.965900px;}
.xe{left:30.432900px;}
.x29{left:32.384400px;}
.x12{left:33.461400px;}
.x22{left:34.767600px;}
.x26{left:35.801400px;}
.xc{left:36.879900px;}
.x3d{left:38.140200px;}
.x14{left:39.400050px;}
.x24{left:41.918400px;}
.x44{left:43.898100px;}
.x77{left:45.338250px;}
.x30{left:54.153750px;}
.x46{left:55.951050px;}
.x3{left:57.927000px;}
.x4b{left:66.922112px;}
.x50{left:69.265500px;}
.x73{left:78.441750px;}
.x2{left:85.899300px;}
.x39{left:92.519100px;}
.x2d{left:100.030500px;}
.x5{left:111.939882px;}
.x5d{left:113.738850px;}
.x52{left:115.547100px;}
.x5f{left:118.776300px;}
.xa{left:122.202750px;}
.x19{left:126.289950px;}
.x18{left:128.131500px;}
.x60{left:137.667000px;}
.x6{left:138.926382px;}
.x54{left:140.689200px;}
.x43{left:146.979600px;}
.x42{left:149.181000px;}
.x6d{left:154.932300px;}
.x66{left:156.370800px;}
.x68{left:159.609300px;}
.x6f{left:160.689300px;}
.x69{left:163.567800px;}
.x6b{left:165.546300px;}
.x4{left:182.639100px;}
.x4e{left:187.315800px;}
.x4f{left:196.302305px;}
.x2e{left:212.187600px;}
.x8{left:225.271345px;}
.x51{left:227.256000px;}
.x9{left:239.310000px;}
.x38{left:244.887000px;}
.x3f{left:250.104000px;}
.x71{left:255.336731px;}
.x2c{left:261.078450px;}
.x61{left:266.124750px;}
.x1a{left:285.726000px;}
.x57{left:294.001500px;}
.x2f{left:301.243500px;}
.x36{left:312.938100px;}
.x72{left:319.953000px;}
.x47{left:324.811500px;}
.x4d{left:336.326100px;}
.x79{left:341.723100px;}
.x75{left:346.580100px;}
.x6e{left:350.322900px;}
.x78{left:353.952272px;}
.x3e{left:356.295750px;}
.x1c{left:359.713500px;}
.x76{left:360.794250px;}
.x17{left:364.931250px;}
.x41{left:367.989750px;}
.x48{left:371.587500px;}
.x33{left:375.186000px;}
.x55{left:378.604500px;}
.x7{left:400.373250px;}
.x67{left:401.807550px;}
.xb{left:405.232500px;}
.x3a{left:408.111000px;}
.x1e{left:415.126500px;}
.x63{left:418.185000px;}
.x37{left:437.974650px;}
.x58{left:439.774500px;}
.x1{left:442.112550px;}
.x4c{left:452.368500px;}
.x5e{left:457.435050px;}
.x31{left:474.138000px;}
.x5b{left:479.714400px;}
.x3b{left:482.053500px;}
.xd{left:485.832000px;}
.x64{left:498.604500px;}
.x45{left:502.233000px;}
.x70{left:503.275200px;}
.x53{left:514.107000px;}
.x6a{left:516.409350px;}
.x74{left:526.521000px;}
.x1b{left:536.596500px;}
.x40{left:545.950500px;}
.x34{left:548.110500px;}
.xf{left:557.824500px;}
.x49{left:576.175500px;}
.x59{left:581.034000px;}
.x6c{left:584.279850px;}
.x20{left:610.539000px;}
.x62{left:643.282500px;}
.x32{left:647.059500px;}
.x4a{left:648.139500px;}
.x56{left:665.590500px;}
.x21{left:670.449000px;}
.x65{left:699.414000px;}
.x35{left:720.868500px;}
.x5c{left:723.745500px;}
.x5a{left:726.805500px;}
@media print{
.v1{vertical-align:-5.093397pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.115200pt;}
.v2{vertical-align:24.341237pt;}
.ls6a{letter-spacing:-0.831584pt;}
.ls5f{letter-spacing:-0.791604pt;}
.ls56{letter-spacing:-0.729235pt;}
.ls63{letter-spacing:-0.639680pt;}
.ls36{letter-spacing:-0.307046pt;}
.ls33{letter-spacing:-0.302249pt;}
.ls3e{letter-spacing:-0.287856pt;}
.ls73{letter-spacing:-0.283058pt;}
.ls1c{letter-spacing:-0.281459pt;}
.ls48{letter-spacing:-0.235082pt;}
.ls58{letter-spacing:-0.225487pt;}
.ls59{letter-spacing:-0.220690pt;}
.ls1b{letter-spacing:-0.191904pt;}
.ls4a{letter-spacing:-0.172714pt;}
.ls37{letter-spacing:-0.143928pt;}
.ls76{letter-spacing:-0.139130pt;}
.ls38{letter-spacing:-0.134333pt;}
.ls60{letter-spacing:-0.127936pt;}
.ls5d{letter-spacing:-0.119940pt;}
.ls67{letter-spacing:-0.115142pt;}
.ls22{letter-spacing:-0.108746pt;}
.ls61{letter-spacing:-0.102349pt;}
.ls6{letter-spacing:-0.095952pt;}
.ls68{letter-spacing:-0.089555pt;}
.ls13{letter-spacing:-0.083158pt;}
.ls42{letter-spacing:-0.076762pt;}
.ls11{letter-spacing:-0.070365pt;}
.ls10{letter-spacing:-0.063968pt;}
.ls53{letter-spacing:-0.062369pt;}
.ls14{letter-spacing:-0.057571pt;}
.ls3f{letter-spacing:-0.052774pt;}
.ls8{letter-spacing:-0.051174pt;}
.ls39{letter-spacing:-0.047976pt;}
.lsd{letter-spacing:-0.044778pt;}
.ls20{letter-spacing:-0.043178pt;}
.lsc{letter-spacing:-0.038381pt;}
.ls57{letter-spacing:-0.033583pt;}
.ls9{letter-spacing:-0.031984pt;}
.ls32{letter-spacing:-0.028786pt;}
.lse{letter-spacing:-0.025587pt;}
.ls47{letter-spacing:-0.023988pt;}
.lsa{letter-spacing:-0.019190pt;}
.ls34{letter-spacing:-0.014393pt;}
.ls7{letter-spacing:-0.012794pt;}
.ls46{letter-spacing:-0.009595pt;}
.lsf{letter-spacing:-0.006397pt;}
.ls40{letter-spacing:-0.004798pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.004798pt;}
.ls0{letter-spacing:0.005885pt;}
.ls2{letter-spacing:0.006397pt;}
.ls4c{letter-spacing:0.009595pt;}
.ls1{letter-spacing:0.012794pt;}
.ls2b{letter-spacing:0.014393pt;}
.ls4{letter-spacing:0.019190pt;}
.ls21{letter-spacing:0.023988pt;}
.ls3{letter-spacing:0.025587pt;}
.ls2f{letter-spacing:0.028786pt;}
.ls12{letter-spacing:0.031984pt;}
.ls31{letter-spacing:0.033583pt;}
.ls5{letter-spacing:0.038381pt;}
.ls3c{letter-spacing:0.043178pt;}
.ls18{letter-spacing:0.044778pt;}
.ls50{letter-spacing:0.047976pt;}
.ls1a{letter-spacing:0.051174pt;}
.ls43{letter-spacing:0.052774pt;}
.ls1e{letter-spacing:0.057571pt;}
.ls6d{letter-spacing:0.062369pt;}
.ls69{letter-spacing:0.063968pt;}
.ls6f{letter-spacing:0.067166pt;}
.ls65{letter-spacing:0.076762pt;}
.ls70{letter-spacing:0.081559pt;}
.ls30{letter-spacing:0.086357pt;}
.ls6e{letter-spacing:0.091154pt;}
.ls4d{letter-spacing:0.095952pt;}
.ls4e{letter-spacing:0.100750pt;}
.ls5b{letter-spacing:0.102349pt;}
.ls4f{letter-spacing:0.105547pt;}
.ls4b{letter-spacing:0.108746pt;}
.ls29{letter-spacing:0.110345pt;}
.ls55{letter-spacing:0.119940pt;}
.ls5a{letter-spacing:0.121539pt;}
.ls54{letter-spacing:0.124738pt;}
.ls77{letter-spacing:0.129535pt;}
.ls2c{letter-spacing:0.153523pt;}
.ls27{letter-spacing:0.158321pt;}
.ls19{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.182309pt;}
.ls24{letter-spacing:0.191904pt;}
.ls52{letter-spacing:0.201499pt;}
.ls28{letter-spacing:0.211094pt;}
.ls5e{letter-spacing:0.225487pt;}
.ls71{letter-spacing:0.230285pt;}
.ls45{letter-spacing:0.235082pt;}
.ls51{letter-spacing:0.239880pt;}
.ls79{letter-spacing:0.244678pt;}
.ls3b{letter-spacing:0.249475pt;}
.ls35{letter-spacing:0.254273pt;}
.ls78{letter-spacing:0.259070pt;}
.ls25{letter-spacing:0.263868pt;}
.ls44{letter-spacing:0.268666pt;}
.ls3a{letter-spacing:0.273463pt;}
.ls72{letter-spacing:0.278261pt;}
.ls26{letter-spacing:0.287856pt;}
.ls74{letter-spacing:0.292654pt;}
.ls41{letter-spacing:0.297451pt;}
.ls49{letter-spacing:0.302249pt;}
.ls62{letter-spacing:0.314667pt;}
.ls2d{letter-spacing:0.316642pt;}
.ls16{letter-spacing:0.319467pt;}
.ls17{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.320533pt;}
.ls1d{letter-spacing:0.321440pt;}
.ls3d{letter-spacing:0.335832pt;}
.ls2e{letter-spacing:0.402998pt;}
.ls2a{letter-spacing:0.431784pt;}
.ls1f{letter-spacing:0.518141pt;}
.ls66{letter-spacing:0.524538pt;}
.ls6b{letter-spacing:0.575712pt;}
.ls64{letter-spacing:0.639680pt;}
.ls6c{letter-spacing:0.959520pt;}
.ls15{letter-spacing:48.743616pt;}
.ws56{word-spacing:-16.516538pt;}
.ws19{word-spacing:-16.510141pt;}
.ws39{word-spacing:-16.100746pt;}
.ws5b{word-spacing:-16.055968pt;}
.ws48{word-spacing:-16.049571pt;}
.ws61{word-spacing:-16.017587pt;}
.ws2{word-spacing:-16.011190pt;}
.ws49{word-spacing:-15.998397pt;}
.ws4{word-spacing:-15.992000pt;}
.ws2d{word-spacing:-15.985603pt;}
.wsb{word-spacing:-15.979206pt;}
.ws5a{word-spacing:-15.972810pt;}
.ws3{word-spacing:-15.966413pt;}
.ws57{word-spacing:-15.960016pt;}
.ws5{word-spacing:-15.953619pt;}
.ws5e{word-spacing:-15.947222pt;}
.ws51{word-spacing:-15.940826pt;}
.ws5c{word-spacing:-15.934429pt;}
.ws58{word-spacing:-15.902445pt;}
.ws9{word-spacing:-15.896048pt;}
.ws54{word-spacing:-15.889651pt;}
.ws8{word-spacing:-15.800096pt;}
.wsa{word-spacing:-15.710541pt;}
.ws53{word-spacing:-15.352320pt;}
.ws5d{word-spacing:-15.160416pt;}
.ws47{word-spacing:-12.185904pt;}
.ws62{word-spacing:-11.994000pt;}
.ws46{word-spacing:-11.202396pt;}
.wsc{word-spacing:-11.036107pt;}
.ws22{word-spacing:-0.767616pt;}
.ws20{word-spacing:-0.743628pt;}
.ws71{word-spacing:-0.738830pt;}
.ws4c{word-spacing:-0.359820pt;}
.ws25{word-spacing:-0.263868pt;}
.ws38{word-spacing:-0.206297pt;}
.ws37{word-spacing:-0.191904pt;}
.ws72{word-spacing:-0.167916pt;}
.ws21{word-spacing:-0.163118pt;}
.ws24{word-spacing:-0.158321pt;}
.ws23{word-spacing:-0.153523pt;}
.ws63{word-spacing:-0.134333pt;}
.ws4e{word-spacing:-0.129535pt;}
.ws6f{word-spacing:-0.124738pt;}
.ws6e{word-spacing:-0.119940pt;}
.ws4a{word-spacing:-0.115142pt;}
.ws2e{word-spacing:-0.110345pt;}
.ws4b{word-spacing:-0.091154pt;}
.ws26{word-spacing:-0.057571pt;}
.ws6a{word-spacing:-0.047976pt;}
.ws14{word-spacing:-0.044778pt;}
.ws45{word-spacing:-0.038381pt;}
.ws31{word-spacing:-0.033583pt;}
.ws60{word-spacing:-0.031984pt;}
.ws40{word-spacing:-0.028786pt;}
.ws12{word-spacing:-0.025587pt;}
.wse{word-spacing:-0.019190pt;}
.ws50{word-spacing:-0.012794pt;}
.ws2c{word-spacing:-0.006397pt;}
.ws0{word-spacing:0.000000pt;}
.ws41{word-spacing:0.004798pt;}
.ws52{word-spacing:0.006397pt;}
.ws4f{word-spacing:0.012794pt;}
.ws2a{word-spacing:0.014393pt;}
.ws10{word-spacing:0.019190pt;}
.ws16{word-spacing:0.025587pt;}
.ws6b{word-spacing:0.028786pt;}
.ws1b{word-spacing:0.031984pt;}
.ws70{word-spacing:0.033583pt;}
.wsf{word-spacing:0.038381pt;}
.ws30{word-spacing:0.043178pt;}
.ws59{word-spacing:0.044778pt;}
.ws3f{word-spacing:0.047976pt;}
.ws18{word-spacing:0.051174pt;}
.ws66{word-spacing:0.052774pt;}
.ws6{word-spacing:0.057571pt;}
.ws2f{word-spacing:0.062369pt;}
.ws17{word-spacing:0.063968pt;}
.ws2b{word-spacing:0.067166pt;}
.ws5f{word-spacing:0.070365pt;}
.ws65{word-spacing:0.071964pt;}
.ws32{word-spacing:0.076762pt;}
.ws42{word-spacing:0.081559pt;}
.ws7{word-spacing:0.083158pt;}
.ws3c{word-spacing:0.086357pt;}
.ws67{word-spacing:0.091154pt;}
.ws3a{word-spacing:0.095952pt;}
.ws33{word-spacing:0.100750pt;}
.ws27{word-spacing:0.105547pt;}
.ws44{word-spacing:0.110345pt;}
.ws1a{word-spacing:0.115142pt;}
.ws3b{word-spacing:0.119940pt;}
.ws15{word-spacing:0.121539pt;}
.ws64{word-spacing:0.124738pt;}
.ws4d{word-spacing:0.129535pt;}
.ws29{word-spacing:0.134333pt;}
.ws69{word-spacing:0.139130pt;}
.ws1d{word-spacing:0.143928pt;}
.ws6c{word-spacing:0.153523pt;}
.ws1f{word-spacing:0.158321pt;}
.ws68{word-spacing:0.167916pt;}
.ws43{word-spacing:0.177511pt;}
.ws6d{word-spacing:0.182309pt;}
.ws3e{word-spacing:0.191904pt;}
.ws36{word-spacing:0.206297pt;}
.ws28{word-spacing:0.278261pt;}
.ws11{word-spacing:0.441379pt;}
.wsd{word-spacing:0.562918pt;}
.ws13{word-spacing:0.582109pt;}
.ws1e{word-spacing:0.762818pt;}
.ws3d{word-spacing:0.901949pt;}
.ws34{word-spacing:0.949925pt;}
.ws35{word-spacing:1.113043pt;}
.ws55{word-spacing:32.099200pt;}
.ws1{word-spacing:32.111936pt;}
.ws1c{word-spacing:32.112000pt;}
._3{margin-left:-2.485157pt;}
._1{margin-left:-1.439280pt;}
._0{width:1.477661pt;}
._2{width:2.667466pt;}
.fs3{font-size:42.858667pt;}
.fs4{font-size:47.976000pt;}
.fs0{font-size:58.850133pt;}
.fs1{font-size:63.968000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:2.874215pt;}
.y14a{bottom:2.874615pt;}
.yba{bottom:2.876933pt;}
.yc1{bottom:2.878000pt;}
.y13f{bottom:2.878133pt;}
.y219{bottom:2.878267pt;}
.yb7{bottom:2.878400pt;}
.ya0{bottom:2.878533pt;}
.ya5{bottom:2.878667pt;}
.ya3{bottom:2.878800pt;}
.yd3{bottom:2.878933pt;}
.yd0{bottom:2.879067pt;}
.ycb{bottom:2.879200pt;}
.yc6{bottom:2.879333pt;}
.y108{bottom:3.033949pt;}
.yb5{bottom:3.037067pt;}
.y21c{bottom:3.038267pt;}
.yb2{bottom:3.038400pt;}
.yf6{bottom:3.038533pt;}
.ya9{bottom:3.038667pt;}
.y13d{bottom:3.038800pt;}
.y10e{bottom:3.038933pt;}
.yd5{bottom:3.039067pt;}
.yc8{bottom:3.039200pt;}
.y224{bottom:3.039333pt;}
.y135{bottom:3.078667pt;}
.y12e{bottom:3.357600pt;}
.ybd{bottom:4.956800pt;}
.yd8{bottom:5.117467pt;}
.yff{bottom:5.595467pt;}
.y237{bottom:5.596000pt;}
.y234{bottom:5.596133pt;}
.y242{bottom:5.597067pt;}
.y23c{bottom:5.597200pt;}
.yf4{bottom:5.597333pt;}
.yda{bottom:5.597467pt;}
.ybf{bottom:5.756667pt;}
.y240{bottom:5.757067pt;}
.y9e{bottom:5.757333pt;}
.y245{bottom:5.757733pt;}
.yb9{bottom:8.314267pt;}
.yb4{bottom:8.314400pt;}
.y102{bottom:8.315333pt;}
.y220{bottom:8.315467pt;}
.y21a{bottom:8.315600pt;}
.yb1{bottom:8.315733pt;}
.yac{bottom:8.315867pt;}
.ya7{bottom:8.316000pt;}
.ya2{bottom:8.316133pt;}
.y10b{bottom:8.316267pt;}
.yd2{bottom:8.316400pt;}
.yca{bottom:8.316533pt;}
.yc5{bottom:8.316667pt;}
.ycd{bottom:8.343200pt;}
.y217{bottom:8.355600pt;}
.y147{bottom:16.627949pt;}
.yc2{bottom:16.631333pt;}
.y149{bottom:16.631733pt;}
.y107{bottom:16.791067pt;}
.y251{bottom:23.024082pt;}
.y145{bottom:30.385067pt;}
.y22f{bottom:30.544533pt;}
.y250{bottom:36.781200pt;}
.y22d{bottom:44.297867pt;}
.y22b{bottom:58.211200pt;}
.y1{bottom:68.906400pt;}
.y30{bottom:68.906533pt;}
.y229{bottom:71.989867pt;}
.y24c{bottom:78.199867pt;}
.y227{bottom:85.743200pt;}
.y241{bottom:97.052000pt;}
.y49{bottom:98.776613pt;}
.y1d8{bottom:100.409067pt;}
.y13c{bottom:103.128000pt;}
.y192{bottom:103.590205pt;}
.y24a{bottom:105.866667pt;}
.y7b{bottom:109.519600pt;}
.y203{bottom:111.923733pt;}
.y115{bottom:112.717707pt;}
.y1a8{bottom:114.288853pt;}
.y59{bottom:114.304845pt;}
.y1c2{bottom:114.642400pt;}
.y23f{bottom:116.881333pt;}
.y173{bottom:118.146504pt;}
.y1a0{bottom:120.045973pt;}
.y13b{bottom:122.958667pt;}
.y89{bottom:124.072107pt;}
.y2f{bottom:124.843547pt;}
.y1ad{bottom:124.843573pt;}
.yf2{bottom:125.824376pt;}
.y1b1{bottom:129.657165pt;}
.y48{bottom:135.558213pt;}
.y23e{bottom:136.866667pt;}
.y1eb{bottom:137.186533pt;}
.y1d7{bottom:137.345200pt;}
.y6a{bottom:138.116933pt;}
.y191{bottom:140.371805pt;}
.y13a{bottom:142.942667pt;}
.y7a{bottom:146.301067pt;}
.y88{bottom:148.539867pt;}
.y1e0{bottom:148.699867pt;}
.y202{bottom:148.859867pt;}
.y114{bottom:149.499333pt;}
.y1a7{bottom:151.070453pt;}
.y58{bottom:151.086445pt;}
.y1c1{bottom:151.578533pt;}
.y172{bottom:154.928104pt;}
.y15b{bottom:156.368424pt;}
.y23d{bottom:156.696000pt;}
.y19f{bottom:156.827573pt;}
.ydf{bottom:161.333200pt;}
.y2e{bottom:161.625147pt;}
.y187{bottom:161.625173pt;}
.yf1{bottom:162.605976pt;}
.y139{bottom:162.773333pt;}
.y1b0{bottom:166.445200pt;}
.y47{bottom:172.339813pt;}
.y1ea{bottom:174.127867pt;}
.y69{bottom:174.898533pt;}
.y23b{bottom:176.526667pt;}
.y190{bottom:177.153405pt;}
.y138{bottom:182.602667pt;}
.y79{bottom:183.082400pt;}
.y1d6{bottom:185.481200pt;}
.y1df{bottom:185.641333pt;}
.y9c{bottom:187.852053pt;}
.y57{bottom:187.868045pt;}
.y171{bottom:191.709704pt;}
.yde{bottom:192.038667pt;}
.y15a{bottom:193.150024pt;}
.y19e{bottom:193.609173pt;}
.y23a{bottom:196.356000pt;}
.y20a{bottom:196.995867pt;}
.y2d{bottom:198.406747pt;}
.y186{bottom:198.406773pt;}
.yf0{bottom:199.387576pt;}
.y1c0{bottom:199.714667pt;}
.y137{bottom:202.433333pt;}
.y46{bottom:209.121413pt;}
.y1e9{bottom:210.909333pt;}
.y68{bottom:211.680133pt;}
.ydd{bottom:212.028000pt;}
.y1af{bottom:213.919013pt;}
.y18f{bottom:213.935005pt;}
.y239{bottom:216.186667pt;}
.y13{bottom:218.909648pt;}
.y78{bottom:219.855891pt;}
.y136{bottom:222.262667pt;}
.y1d5{bottom:222.422667pt;}
.y9b{bottom:224.633653pt;}
.y159{bottom:229.931624pt;}
.y19d{bottom:230.390773pt;}
.ydc{bottom:231.858667pt;}
.y1fd{bottom:233.777333pt;}
.y209{bottom:233.937333pt;}
.y2c{bottom:235.188347pt;}
.y185{bottom:235.188373pt;}
.y56{bottom:235.204365pt;}
.y238{bottom:236.016000pt;}
.yef{bottom:236.169176pt;}
.y1bf{bottom:236.656000pt;}
.y113{bottom:238.734667pt;}
.y170{bottom:239.046024pt;}
.y134{bottom:242.093333pt;}
.y1a6{bottom:245.950989pt;}
.y18e{bottom:250.764581pt;}
.ydb{bottom:251.728000pt;}
.y236{bottom:256.046667pt;}
.y45{bottom:256.665629pt;}
.y77{bottom:256.685680pt;}
.y67{bottom:259.064429pt;}
.y1e8{bottom:259.084133pt;}
.y205{bottom:259.244133pt;}
.y9a{bottom:261.463229pt;}
.y133{bottom:262.122667pt;}
.y112{bottom:265.481333pt;}
.y158{bottom:266.761200pt;}
.y19c{bottom:267.220349pt;}
.y1d4{bottom:270.598800pt;}
.y1fc{bottom:270.758800pt;}
.yd9{bottom:271.558667pt;}
.y184{bottom:272.017949pt;}
.y55{bottom:272.033941pt;}
.yee{bottom:272.998752pt;}
.y1be{bottom:273.477467pt;}
.y16f{bottom:275.875600pt;}
.y235{bottom:275.876000pt;}
.y12{bottom:280.047064pt;}
.y132{bottom:281.953333pt;}
.y2b{bottom:282.732563pt;}
.y1a5{bottom:282.732589pt;}
.y111{bottom:285.310667pt;}
.y18d{bottom:287.546181pt;}
.yd7{bottom:292.028000pt;}
.y44{bottom:293.447229pt;}
.y76{bottom:293.467280pt;}
.y233{bottom:295.706667pt;}
.y1e7{bottom:296.025467pt;}
.y99{bottom:298.244829pt;}
.y131{bottom:301.782667pt;}
.y157{bottom:303.542400pt;}
.y19b{bottom:304.001949pt;}
.y110{bottom:305.141333pt;}
.y204{bottom:307.380133pt;}
.y1d3{bottom:307.540133pt;}
.y183{bottom:308.799549pt;}
.y54{bottom:308.815541pt;}
.yed{bottom:309.780352pt;}
.y1bd{bottom:310.258800pt;}
.y16e{bottom:312.657200pt;}
.y232{bottom:315.536000pt;}
.y201{bottom:318.894800pt;}
.y2a{bottom:319.514163pt;}
.y1a4{bottom:319.514189pt;}
.y130{bottom:321.613333pt;}
.y10f{bottom:324.970667pt;}
.y11{bottom:328.071040pt;}
.y43{bottom:330.228829pt;}
.y75{bottom:330.248880pt;}
.y98{bottom:335.026429pt;}
.y18c{bottom:335.042421pt;}
.y156{bottom:340.324000pt;}
.y19a{bottom:340.783549pt;}
.y12f{bottom:341.442667pt;}
.y1e6{bottom:344.161600pt;}
.y1d2{bottom:344.321600pt;}
.y10d{bottom:344.801333pt;}
.y123{bottom:345.581149pt;}
.y53{bottom:345.597141pt;}
.y16d{bottom:349.438800pt;}
.y66{bottom:354.056909pt;}
.y1fb{bottom:355.676267pt;}
.y200{bottom:355.836267pt;}
.y29{bottom:356.295763pt;}
.y182{bottom:356.295789pt;}
.yec{bottom:357.116672pt;}
.y1bc{bottom:358.394933pt;}
.y12d{bottom:361.273333pt;}
.y10c{bottom:364.790667pt;}
.y10{bottom:364.852640pt;}
.y42{bottom:367.010429pt;}
.y74{bottom:367.030480pt;}
.y231{bottom:368.469600pt;}
.y97{bottom:371.808029pt;}
.y18b{bottom:371.824021pt;}
.y155{bottom:377.105467pt;}
.y199{bottom:377.565149pt;}
.yd6{bottom:377.585600pt;}
.y1e5{bottom:381.102933pt;}
.y12c{bottom:381.262667pt;}
.y122{bottom:382.362749pt;}
.y52{bottom:382.378741pt;}
.y10a{bottom:384.621333pt;}
.y16c{bottom:386.220133pt;}
.y65{bottom:390.838509pt;}
.y1d1{bottom:392.457733pt;}
.y1fa{bottom:392.617733pt;}
.y28{bottom:393.077363pt;}
.y181{bottom:393.077389pt;}
.yeb{bottom:393.898272pt;}
.y1bb{bottom:395.336400pt;}
.y12b{bottom:401.093333pt;}
.yf{bottom:401.666224pt;}
.y41{bottom:403.792029pt;}
.y109{bottom:404.450667pt;}
.y96{bottom:408.589629pt;}
.y18a{bottom:408.605621pt;}
.yd4{bottom:409.568000pt;}
.y154{bottom:413.886320pt;}
.y198{bottom:414.346749pt;}
.y73{bottom:414.366800pt;}
.y1e4{bottom:417.884400pt;}
.y121{bottom:419.144349pt;}
.y51{bottom:419.160341pt;}
.y12a{bottom:421.562667pt;}
.y226{bottom:422.362667pt;}
.y16b{bottom:422.996576pt;}
.y106{bottom:424.921333pt;}
.y64{bottom:427.620109pt;}
.y1f0{bottom:429.239067pt;}
.y1d0{bottom:429.399067pt;}
.yd1{bottom:429.558667pt;}
.y27{bottom:429.858963pt;}
.y180{bottom:429.858989pt;}
.yea{bottom:430.679872pt;}
.ye{bottom:438.447824pt;}
.y230{bottom:439.153733pt;}
.y40{bottom:440.573629pt;}
.y1f9{bottom:440.753733pt;}
.y1ba{bottom:443.472400pt;}
.y95{bottom:445.371229pt;}
.y189{bottom:445.387221pt;}
.ycf{bottom:449.388000pt;}
.y197{bottom:451.128349pt;}
.y72{bottom:451.148267pt;}
.y153{bottom:452.102496pt;}
.y22e{bottom:452.907200pt;}
.y120{bottom:455.925949pt;}
.y50{bottom:455.941941pt;}
.y16a{bottom:459.778176pt;}
.y63{bottom:464.401709pt;}
.y1e3{bottom:466.020533pt;}
.y1ef{bottom:466.180400pt;}
.y26{bottom:466.640563pt;}
.y17f{bottom:466.640589pt;}
.y22c{bottom:466.660533pt;}
.ye9{bottom:467.461472pt;}
.yce{bottom:469.218667pt;}
.yd{bottom:475.229424pt;}
.y1a3{bottom:477.355229pt;}
.y87{bottom:477.361347pt;}
.y1cf{bottom:477.535200pt;}
.y1f8{bottom:477.695200pt;}
.y1b9{bottom:480.413867pt;}
.y22a{bottom:480.573867pt;}
.y94{bottom:482.152829pt;}
.y188{bottom:482.170400pt;}
.y3f{bottom:487.909949pt;}
.y71{bottom:487.924283pt;}
.ycc{bottom:489.048000pt;}
.y152{bottom:491.122976pt;}
.y11f{bottom:492.707549pt;}
.y228{bottom:494.352533pt;}
.y169{bottom:496.591760pt;}
.y62{bottom:501.055373pt;}
.y1e2{bottom:502.988533pt;}
.y25{bottom:503.454147pt;}
.y17e{bottom:503.454173pt;}
.y4f{bottom:503.470165pt;}
.ye8{bottom:504.275056pt;}
.y225{bottom:508.105867pt;}
.yc9{bottom:508.905333pt;}
.yc{bottom:512.011024pt;}
.y1a2{bottom:514.168813pt;}
.y86{bottom:514.174931pt;}
.y129{bottom:514.182667pt;}
.y1ee{bottom:514.343200pt;}
.y1ce{bottom:514.503200pt;}
.y1b8{bottom:517.221867pt;}
.y93{bottom:518.806493pt;}
.y105{bottom:518.820533pt;}
.y3e{bottom:524.723533pt;}
.y70{bottom:524.728717pt;}
.y1f7{bottom:525.856667pt;}
.yc7{bottom:528.734667pt;}
.y11e{bottom:529.521133pt;}
.y168{bottom:533.373360pt;}
.y61{bottom:537.836973pt;}
.y151{bottom:539.450800pt;}
.y17d{bottom:540.235773pt;}
.y4e{bottom:540.251765pt;}
.ye7{bottom:541.056656pt;}
.yc4{bottom:548.725333pt;}
.yb{bottom:548.792624pt;}
.y104{bottom:549.684000pt;}
.y24{bottom:550.790467pt;}
.y1a1{bottom:550.790493pt;}
.y128{bottom:550.964267pt;}
.y1e1{bottom:551.124667pt;}
.y1cd{bottom:551.284667pt;}
.y92{bottom:555.588093pt;}
.y3d{bottom:561.505133pt;}
.y6f{bottom:561.510317pt;}
.y85{bottom:561.511251pt;}
.y1ff{bottom:562.639333pt;}
.y1f6{bottom:562.799333pt;}
.y1b7{bottom:565.358000pt;}
.y11d{bottom:566.302733pt;}
.yc0{bottom:568.556000pt;}
.y103{bottom:569.516000pt;}
.y60{bottom:574.618573pt;}
.y150{bottom:576.232400pt;}
.y1ac{bottom:577.017373pt;}
.y4d{bottom:577.033365pt;}
.ye6{bottom:577.838256pt;}
.y167{bottom:580.869600pt;}
.y223{bottom:582.628000pt;}
.ya{bottom:585.574224pt;}
.y23{bottom:587.572067pt;}
.y17c{bottom:587.572093pt;}
.y127{bottom:587.745867pt;}
.y101{bottom:589.345333pt;}
.y91{bottom:592.369693pt;}
.ybe{bottom:596.702667pt;}
.y3c{bottom:598.286733pt;}
.y6e{bottom:598.291917pt;}
.y84{bottom:598.292851pt;}
.y1cc{bottom:599.420800pt;}
.y1fe{bottom:599.580667pt;}
.y1b6{bottom:602.299333pt;}
.y222{bottom:602.618667pt;}
.y11c{bottom:603.084333pt;}
.y100{bottom:609.176000pt;}
.y1f5{bottom:611.094133pt;}
.y5f{bottom:611.400173pt;}
.y14f{bottom:613.013467pt;}
.y1ab{bottom:613.798973pt;}
.y4c{bottom:613.814965pt;}
.ye5{bottom:614.619856pt;}
.ybc{bottom:617.332000pt;}
.y166{bottom:617.651200pt;}
.y9{bottom:622.403800pt;}
.y221{bottom:622.449333pt;}
.y22{bottom:624.353667pt;}
.y17b{bottom:624.353693pt;}
.y126{bottom:624.527467pt;}
.yfe{bottom:629.006667pt;}
.y90{bottom:629.151293pt;}
.y3b{bottom:635.068333pt;}
.y6d{bottom:635.073517pt;}
.y83{bottom:635.074451pt;}
.y1cb{bottom:636.362133pt;}
.y1b5{bottom:639.080800pt;}
.y11b{bottom:639.865933pt;}
.y21f{bottom:642.278667pt;}
.y208{bottom:647.875467pt;}
.y1f4{bottom:648.035467pt;}
.y5e{bottom:648.181773pt;}
.yfd{bottom:649.636000pt;}
.y14e{bottom:649.795333pt;}
.y1aa{bottom:650.580573pt;}
.y4b{bottom:650.596565pt;}
.ye4{bottom:651.401456pt;}
.y165{bottom:654.432667pt;}
.y8{bottom:659.185400pt;}
.y21{bottom:661.135267pt;}
.y17a{bottom:661.135293pt;}
.y21e{bottom:662.109333pt;}
.y196{bottom:671.849933pt;}
.y82{bottom:671.856051pt;}
.y1de{bottom:673.143600pt;}
.y1b4{bottom:675.862267pt;}
.y8f{bottom:676.647533pt;}
.y21d{bottom:681.938667pt;}
.y3a{bottom:682.564573pt;}
.y6c{bottom:682.569757pt;}
.y1ca{bottom:684.498267pt;}
.y1f3{bottom:684.656933pt;}
.y14d{bottom:686.576667pt;}
.y11a{bottom:687.362173pt;}
.ye3{bottom:688.183056pt;}
.y125{bottom:690.894507pt;}
.y164{bottom:691.214133pt;}
.y7{bottom:695.967000pt;}
.y20{bottom:697.916867pt;}
.y179{bottom:697.916893pt;}
.y4a{bottom:697.932885pt;}
.y21b{bottom:701.769333pt;}
.ybb{bottom:702.728933pt;}
.y195{bottom:708.631533pt;}
.y81{bottom:708.637651pt;}
.y124{bottom:715.362267pt;}
.y39{bottom:719.346173pt;}
.y6b{bottom:719.351357pt;}
.y1dd{bottom:721.279600pt;}
.y1c9{bottom:721.439600pt;}
.y218{bottom:721.758667pt;}
.y14c{bottom:723.358267pt;}
.y1b3{bottom:723.998267pt;}
.y119{bottom:724.143773pt;}
.ye2{bottom:724.948717pt;}
.y163{bottom:728.003163pt;}
.yb8{bottom:729.436000pt;}
.y6{bottom:732.748600pt;}
.y1f2{bottom:732.952933pt;}
.y1f{bottom:734.698467pt;}
.y178{bottom:734.698493pt;}
.yfc{bottom:735.031600pt;}
.y216{bottom:741.589333pt;}
.y5d{bottom:743.174253pt;}
.y194{bottom:745.461109pt;}
.y80{bottom:745.467227pt;}
.yb6{bottom:749.305333pt;}
.y38{bottom:756.175749pt;}
.y1dc{bottom:758.261067pt;}
.y118{bottom:760.973349pt;}
.y1b2{bottom:760.979600pt;}
.y215{bottom:761.458667pt;}
.y14b{bottom:765.137067pt;}
.yfb{bottom:765.777333pt;}
.yb3{bottom:769.136000pt;}
.y5{bottom:769.530200pt;}
.y1c8{bottom:769.774400pt;}
.y1f1{bottom:769.934400pt;}
.y1e{bottom:771.528043pt;}
.y8e{bottom:771.528069pt;}
.ye1{bottom:772.492933pt;}
.y162{bottom:777.130587pt;}
.y144{bottom:777.450667pt;}
.y5c{bottom:779.843909pt;}
.y214{bottom:781.289333pt;}
.y193{bottom:782.242709pt;}
.y7f{bottom:782.248827pt;}
.yfa{bottom:785.766667pt;}
.yb0{bottom:788.965333pt;}
.y249{bottom:792.164000pt;}
.y37{bottom:792.957349pt;}
.y148{bottom:794.082400pt;}
.y117{bottom:797.754949pt;}
.y1ae{bottom:797.759733pt;}
.y213{bottom:801.118667pt;}
.y252{bottom:801.438533pt;}
.yf9{bottom:805.597333pt;}
.y4{bottom:806.311800pt;}
.y1db{bottom:806.555867pt;}
.y1c7{bottom:806.715867pt;}
.y146{bottom:807.835733pt;}
.y1d{bottom:808.309643pt;}
.y8d{bottom:808.309669pt;}
.yaf{bottom:808.954667pt;}
.y161{bottom:814.551600pt;}
.y5b{bottom:817.904869pt;}
.y207{bottom:818.070533pt;}
.y177{bottom:819.024309pt;}
.y7e{bottom:819.030427pt;}
.y212{bottom:820.949333pt;}
.yf8{bottom:825.426667pt;}
.yae{bottom:828.785333pt;}
.y36{bottom:829.738949pt;}
.y1a9{bottom:834.536549pt;}
.y116{bottom:834.541333pt;}
.y211{bottom:840.938667pt;}
.y24f{bottom:842.853415pt;}
.y3{bottom:843.093400pt;}
.y1da{bottom:843.337200pt;}
.y1c{bottom:845.091243pt;}
.y8c{bottom:845.091269pt;}
.yf7{bottom:845.257333pt;}
.yad{bottom:848.614667pt;}
.y160{bottom:851.334213pt;}
.y5a{bottom:854.526549pt;}
.y1c6{bottom:854.851867pt;}
.y206{bottom:855.011867pt;}
.y176{bottom:855.805909pt;}
.y24e{bottom:856.610533pt;}
.y210{bottom:860.769333pt;}
.ye0{bottom:861.727867pt;}
.yf5{bottom:865.086667pt;}
.y35{bottom:866.520549pt;}
.y7d{bottom:866.526400pt;}
.yab{bottom:868.445333pt;}
.y24d{bottom:870.363867pt;}
.y20f{bottom:880.598667pt;}
.y1b{bottom:881.872843pt;}
.y8b{bottom:881.872869pt;}
.y24b{bottom:884.117333pt;}
.yf3{bottom:885.716000pt;}
.y143{bottom:888.114667pt;}
.yaa{bottom:888.274667pt;}
.y1d9{bottom:891.633333pt;}
.y1c5{bottom:891.793333pt;}
.y175{bottom:892.587509pt;}
.y2{bottom:894.667600pt;}
.y15f{bottom:898.670533pt;}
.y20e{bottom:900.429333pt;}
.y34{bottom:903.302149pt;}
.y7c{bottom:903.307733pt;}
.ya8{bottom:908.105333pt;}
.y1a{bottom:918.659200pt;}
.y8a{bottom:918.659333pt;}
.y20d{bottom:920.258667pt;}
.y142{bottom:927.934667pt;}
.ya6{bottom:928.094667pt;}
.y1c4{bottom:928.574667pt;}
.y174{bottom:929.369109pt;}
.y248{bottom:929.374667pt;}
.y15e{bottom:935.451253pt;}
.y1ed{bottom:939.929333pt;}
.y33{bottom:940.083749pt;}
.y20c{bottom:940.089333pt;}
.ya4{bottom:947.925333pt;}
.y141{bottom:948.565333pt;}
.y247{bottom:949.204000pt;}
.y20b{bottom:960.718667pt;}
.y19{bottom:966.155467pt;}
.ya1{bottom:967.754667pt;}
.y140{bottom:968.394667pt;}
.y246{bottom:969.034667pt;}
.y15d{bottom:973.666816pt;}
.y1c3{bottom:976.710800pt;}
.y32{bottom:976.865349pt;}
.y1ec{bottom:976.870800pt;}
.y18{bottom:979.382667pt;}
.y9f{bottom:987.585333pt;}
.y13e{bottom:988.225333pt;}
.y244{bottom:988.864000pt;}
.y17{bottom:998.582667pt;}
.y9d{bottom:1008.081333pt;}
.y243{bottom:1008.881333pt;}
.y15c{bottom:1012.879200pt;}
.y31{bottom:1013.678933pt;}
.y16{bottom:1017.782667pt;}
.y15{bottom:1036.982667pt;}
.y14{bottom:1056.182667pt;}
.h13{height:19.189333pt;}
.h10{height:19.190667pt;}
.h14{height:19.221333pt;}
.h12{height:19.222667pt;}
.h19{height:19.989333pt;}
.h1b{height:19.990667pt;}
.h15{height:27.506667pt;}
.h17{height:27.665333pt;}
.h1a{height:32.819520pt;}
.hf{height:34.435898pt;}
.h1{height:42.241063pt;}
.h2{height:43.228375pt;}
.h5{height:43.343750pt;}
.h4{height:43.375000pt;}
.h6{height:44.415281pt;}
.h3{height:45.914531pt;}
.h1d{height:45.915598pt;}
.h1e{height:45.916665pt;}
.h22{height:45.918051pt;}
.h1f{height:45.933347pt;}
.h18{height:45.933454pt;}
.h25{height:45.933987pt;}
.h23{height:45.935161pt;}
.h21{height:45.935801pt;}
.h24{height:45.959065pt;}
.h16{height:45.978286pt;}
.h26{height:46.004345pt;}
.h11{height:47.062395pt;}
.he{height:55.095015pt;}
.hb{height:55.104050pt;}
.h7{height:62.749859pt;}
.hd{height:62.750393pt;}
.hc{height:62.750926pt;}
.h20{height:62.752846pt;}
.h8{height:62.770595pt;}
.ha{height:62.772195pt;}
.h9{height:62.786457pt;}
.h1c{height:94.992000pt;}
.h28{height:116.741333pt;}
.h27{height:144.593333pt;}
.h0{height:1122.666667pt;}
.w42{width:41.098667pt;}
.w23{width:41.258667pt;}
.w32{width:46.856000pt;}
.wb{width:48.936000pt;}
.w3e{width:49.446667pt;}
.w3d{width:49.574667pt;}
.we{width:52.933333pt;}
.w3b{width:53.125333pt;}
.w35{width:53.925333pt;}
.w31{width:54.052000pt;}
.w1a{width:58.242667pt;}
.w2f{width:59.009333pt;}
.w33{width:59.010667pt;}
.w16{width:63.648000pt;}
.w4{width:63.680000pt;}
.wa{width:65.278667pt;}
.w18{width:65.280000pt;}
.wd{width:65.406667pt;}
.w17{width:65.438667pt;}
.w3a{width:71.164000pt;}
.w3{width:71.324000pt;}
.w28{width:74.234667pt;}
.w34{width:74.681333pt;}
.w3c{width:74.842667pt;}
.w30{width:74.874667pt;}
.wc{width:78.233333pt;}
.wf{width:83.669333pt;}
.w29{width:84.757333pt;}
.w25{width:84.789333pt;}
.w5{width:84.917333pt;}
.w1e{width:85.877333pt;}
.w36{width:86.196000pt;}
.w1b{width:88.754667pt;}
.w26{width:90.034667pt;}
.w24{width:91.793333pt;}
.w39{width:99.341333pt;}
.w2d{width:101.228000pt;}
.w14{width:129.248000pt;}
.w12{width:129.374667pt;}
.w13{width:129.406667pt;}
.w1f{width:132.925333pt;}
.w10{width:139.769333pt;}
.w37{width:140.436000pt;}
.w2e{width:140.596000pt;}
.w1c{width:144.753333pt;}
.w6{width:147.152000pt;}
.w15{width:154.509333pt;}
.w27{width:159.306667pt;}
.w43{width:183.294667pt;}
.w8{width:193.249333pt;}
.w21{width:199.125333pt;}
.w9{width:202.644000pt;}
.w22{width:214.478667pt;}
.w41{width:224.713333pt;}
.w2b{width:235.746667pt;}
.w3f{width:248.862667pt;}
.w2c{width:275.248000pt;}
.w1d{width:348.850667pt;}
.w19{width:351.730667pt;}
.w2{width:368.041333pt;}
.w20{width:512.956000pt;}
.w40{width:548.137333pt;}
.w38{width:548.777333pt;}
.w7{width:565.729333pt;}
.w11{width:615.505333pt;}
.w2a{width:670.356000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x11{left:6.716400pt;}
.x10{left:8.475600pt;}
.x3c{left:10.234267pt;}
.x1f{left:11.674133pt;}
.x2b{left:13.113067pt;}
.x28{left:14.074000pt;}
.x25{left:16.151733pt;}
.x27{left:17.112667pt;}
.x16{left:18.416933pt;}
.x1d{left:19.671333pt;}
.x15{left:21.455600pt;}
.x23{left:22.550000pt;}
.x13{left:24.492800pt;}
.x2a{left:25.747467pt;}
.xe{left:27.051467pt;}
.x29{left:28.786133pt;}
.x12{left:29.743467pt;}
.x22{left:30.904533pt;}
.x26{left:31.823467pt;}
.xc{left:32.782133pt;}
.x3d{left:33.902400pt;}
.x14{left:35.022267pt;}
.x24{left:37.260800pt;}
.x44{left:39.020533pt;}
.x77{left:40.300667pt;}
.x30{left:48.136667pt;}
.x46{left:49.734267pt;}
.x3{left:51.490667pt;}
.x4b{left:59.486322pt;}
.x50{left:61.569333pt;}
.x73{left:69.726000pt;}
.x2{left:76.354933pt;}
.x39{left:82.239200pt;}
.x2d{left:88.916000pt;}
.x5{left:99.502117pt;}
.x5d{left:101.101200pt;}
.x52{left:102.708533pt;}
.x5f{left:105.578933pt;}
.xa{left:108.624667pt;}
.x19{left:112.257733pt;}
.x18{left:113.894667pt;}
.x60{left:122.370667pt;}
.x6{left:123.490117pt;}
.x54{left:125.057067pt;}
.x43{left:130.648533pt;}
.x42{left:132.605333pt;}
.x6d{left:137.717600pt;}
.x66{left:138.996267pt;}
.x68{left:141.874933pt;}
.x6f{left:142.834933pt;}
.x69{left:145.393600pt;}
.x6b{left:147.152267pt;}
.x4{left:162.345867pt;}
.x4e{left:166.502933pt;}
.x4f{left:174.490937pt;}
.x2e{left:188.611200pt;}
.x8{left:200.241195pt;}
.x51{left:202.005333pt;}
.x9{left:212.720000pt;}
.x38{left:217.677333pt;}
.x3f{left:222.314667pt;}
.x71{left:226.965983pt;}
.x2c{left:232.069733pt;}
.x61{left:236.555333pt;}
.x1a{left:253.978667pt;}
.x57{left:261.334667pt;}
.x2f{left:267.772000pt;}
.x36{left:278.167200pt;}
.x72{left:284.402667pt;}
.x47{left:288.721333pt;}
.x4d{left:298.956533pt;}
.x79{left:303.753867pt;}
.x75{left:308.071200pt;}
.x6e{left:311.398133pt;}
.x78{left:314.624242pt;}
.x3e{left:316.707333pt;}
.x1c{left:319.745333pt;}
.x76{left:320.706000pt;}
.x17{left:324.383333pt;}
.x41{left:327.102000pt;}
.x48{left:330.300000pt;}
.x33{left:333.498667pt;}
.x55{left:336.537333pt;}
.x7{left:355.887333pt;}
.x67{left:357.162267pt;}
.xb{left:360.206667pt;}
.x3a{left:362.765333pt;}
.x1e{left:369.001333pt;}
.x63{left:371.720000pt;}
.x37{left:389.310800pt;}
.x58{left:390.910667pt;}
.x1{left:392.988933pt;}
.x4c{left:402.105333pt;}
.x5e{left:406.608933pt;}
.x31{left:421.456000pt;}
.x5b{left:426.412800pt;}
.x3b{left:428.492000pt;}
.xd{left:431.850667pt;}
.x64{left:443.204000pt;}
.x45{left:446.429333pt;}
.x70{left:447.355733pt;}
.x53{left:456.984000pt;}
.x6a{left:459.030533pt;}
.x74{left:468.018667pt;}
.x1b{left:476.974667pt;}
.x40{left:485.289333pt;}
.x34{left:487.209333pt;}
.xf{left:495.844000pt;}
.x49{left:512.156000pt;}
.x59{left:516.474667pt;}
.x6c{left:519.359867pt;}
.x20{left:542.701333pt;}
.x62{left:571.806667pt;}
.x32{left:575.164000pt;}
.x4a{left:576.124000pt;}
.x56{left:591.636000pt;}
.x21{left:595.954667pt;}
.x65{left:621.701333pt;}
.x35{left:640.772000pt;}
.x5c{left:643.329333pt;}
.x5a{left:646.049333pt;}
}




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