
    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_a47517f818990778154e5663.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_919cf48b3e6a2ad365a0f37d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_67b4f927dce6973e30fde71b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_e3d31348c2a747e3c716e04c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.709473;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_772dec8892f30758d4fa02d6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_a825ae4a472b6c2b337561e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_69f0ec67c3575856a1c2de25.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_751d23e15bacaa853ffab647.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_297cc1b5df292f50c10517f4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_5b19fb8df85567b023a6bd52.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_c68da8f1bc656b6a657eff22.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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;}
.m6{transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249825,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249825,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249825,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,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);}
.m9{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,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);}
.va{vertical-align:-42.492568px;}
.v3{vertical-align:-15.000000px;}
.v8{vertical-align:-12.098045px;}
.vc{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.000000px;}
.vb{vertical-align:6.014989px;}
.v9{vertical-align:12.098045px;}
.v7{vertical-align:15.000000px;}
.v2{vertical-align:39.120000px;}
.v6{vertical-align:48.000000px;}
.v1{vertical-align:54.120000px;}
.v4{vertical-align:57.120000px;}
.ls3a{letter-spacing:-3.452604px;}
.ls3d{letter-spacing:-3.302229px;}
.ls20{letter-spacing:-2.016000px;}
.ls52{letter-spacing:-1.343905px;}
.ls23{letter-spacing:-1.276344px;}
.ls2e{letter-spacing:-1.266938px;}
.ls43{letter-spacing:-1.124803px;}
.ls3f{letter-spacing:-1.106758px;}
.ls2f{letter-spacing:-1.076898px;}
.ls5{letter-spacing:-1.032000px;}
.ls16{letter-spacing:-0.984000px;}
.ls21{letter-spacing:-0.924000px;}
.ls3e{letter-spacing:-0.781949px;}
.ls45{letter-spacing:-0.751874px;}
.ls31{letter-spacing:-0.719851px;}
.ls55{letter-spacing:-0.696000px;}
.ls48{letter-spacing:-0.581649px;}
.ls34{letter-spacing:-0.483740px;}
.ls4c{letter-spacing:-0.451430px;}
.ls3b{letter-spacing:-0.444508px;}
.ls49{letter-spacing:-0.431275px;}
.ls2c{letter-spacing:-0.425576px;}
.ls4e{letter-spacing:-0.366520px;}
.ls40{letter-spacing:-0.360899px;}
.ls29{letter-spacing:-0.345529px;}
.ls35{letter-spacing:-0.339770px;}
.ls4d{letter-spacing:-0.298714px;}
.ls3c{letter-spacing:-0.294133px;}
.ls2b{letter-spacing:-0.281606px;}
.ls51{letter-spacing:-0.213803px;}
.ls2a{letter-spacing:-0.201558px;}
.ls47{letter-spacing:-0.060150px;}
.ls33{letter-spacing:-0.057588px;}
.ls4{letter-spacing:-0.036000px;}
.ls58{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.012000px;}
.ls39{letter-spacing:0.018045px;}
.ls37{letter-spacing:0.018346px;}
.ls13{letter-spacing:0.024000px;}
.ls10{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.073348px;}
.ls36{letter-spacing:0.078496px;}
.ls24{letter-spacing:0.115176px;}
.lsc{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.126694px;}
.lsd{letter-spacing:0.132000px;}
.ls26{letter-spacing:0.172764px;}
.ls22{letter-spacing:0.217765px;}
.ls11{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.312000px;}
.lsa{letter-spacing:0.408000px;}
.ls25{letter-spacing:0.518293px;}
.ls56{letter-spacing:0.600000px;}
.ls4f{letter-spacing:0.611231px;}
.ls30{letter-spacing:0.835028px;}
.ls1f{letter-spacing:0.840814px;}
.ls44{letter-spacing:0.872173px;}
.ls54{letter-spacing:0.885756px;}
.ls1e{letter-spacing:0.889206px;}
.ls2d{letter-spacing:0.921410px;}
.ls19{letter-spacing:0.936000px;}
.ls42{letter-spacing:0.962398px;}
.ls53{letter-spacing:0.977386px;}
.ls32{letter-spacing:0.978998px;}
.ls6{letter-spacing:0.984000px;}
.ls1a{letter-spacing:1.008000px;}
.ls46{letter-spacing:1.022548px;}
.ls4a{letter-spacing:1.032000px;}
.ls1d{letter-spacing:1.040432px;}
.ls50{letter-spacing:1.130102px;}
.ls17{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.323298px;}
.ls14{letter-spacing:1.968000px;}
.ls15{letter-spacing:2.016000px;}
.ls18{letter-spacing:3.984000px;}
.lsb{letter-spacing:4.398000px;}
.lsf{letter-spacing:4.458000px;}
.ls12{letter-spacing:12.120000px;}
.lse{letter-spacing:15.240000px;}
.ls57{letter-spacing:45.984000px;}
.ls7{letter-spacing:63.396000px;}
.ls9{letter-spacing:87.216000px;}
.ls0{letter-spacing:166.806000px;}
.ls28{letter-spacing:241.703062px;}
.ls38{letter-spacing:616.566771px;}
.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;}
}
.ws2{word-spacing:-29.988000px;}
.ws13{word-spacing:-28.800000px;}
.ws14{word-spacing:-27.816000px;}
.ws15{word-spacing:-25.744154px;}
.ws16{word-spacing:-25.419344px;}
.ws10{word-spacing:-24.648000px;}
.ws9{word-spacing:-22.032000px;}
.ws8{word-spacing:-21.984000px;}
.ws11{word-spacing:-21.024000px;}
.ws6{word-spacing:-21.000000px;}
.ws1a{word-spacing:-20.040000px;}
.ws4{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.032000px;}
.ws5{word-spacing:-18.984000px;}
.ws19{word-spacing:-18.948000px;}
.ws17{word-spacing:-17.652000px;}
.ws18{word-spacing:-17.100000px;}
.ws3{word-spacing:-16.680000px;}
.wsc{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.wsd{word-spacing:-11.220000px;}
.ws12{word-spacing:-10.296000px;}
.wse{word-spacing:-0.624000px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:2.376000px;}
.wsb{word-spacing:2.796000px;}
._22{margin-left:-7.682259px;}
._1e{margin-left:-5.484000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._8{width:4.980000px;}
._e{width:6.678000px;}
._9{width:7.902000px;}
._c{width:9.210000px;}
._b{width:10.590000px;}
._1f{width:11.688000px;}
._a{width:12.888000px;}
._17{width:14.244000px;}
._d{width:15.444000px;}
._f{width:16.644000px;}
._10{width:18.762000px;}
._2d{width:19.864820px;}
._15{width:21.546000px;}
._14{width:22.614000px;}
._16{width:24.144000px;}
._19{width:25.416000px;}
._20{width:27.726000px;}
._21{width:28.746000px;}
._33{width:30.936000px;}
._1c{width:32.652000px;}
._1a{width:34.128000px;}
._1d{width:36.642000px;}
._1b{width:37.812000px;}
._2e{width:39.816000px;}
._2f{width:42.810000px;}
._35{width:46.224000px;}
._34{width:52.062000px;}
._12{width:54.552000px;}
._11{width:55.986000px;}
._32{width:71.070000px;}
._18{width:75.216000px;}
._26{width:223.441872px;}
._25{width:239.105838px;}
._24{width:242.716613px;}
._28{width:320.882833px;}
._27{width:325.903291px;}
._30{width:354.735008px;}
._31{width:356.129878px;}
._2c{width:372.989782px;}
._2b{width:398.794086px;}
._29{width:402.607739px;}
._2a{width:406.433122px;}
._6{width:487.398000px;}
._4{width:508.986000px;}
._13{width:844.584000px;}
._7{width:1173.702000px;}
._23{width:1183.017807px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(38,38,38);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs15{font-size:51.829300px;}
.fs16{font-size:51.973271px;}
.fs1d{font-size:54.134903px;}
.fs1c{font-size:54.285278px;}
.fsd{font-size:54.441202px;}
.fse{font-size:54.592428px;}
.fs24{font-size:54.977949px;}
.fs23{font-size:55.130666px;}
.fs11{font-size:57.588111px;}
.fs13{font-size:57.732082px;}
.fs6{font-size:60.000000px;}
.fs1a{font-size:60.149892px;}
.fs18{font-size:60.300267px;}
.fs21{font-size:61.086610px;}
.fs1f{font-size:61.239327px;}
.fs14{font-size:63.390146px;}
.fs12{font-size:63.490893px;}
.fs10{font-size:63.514736px;}
.fsf{font-size:63.665961px;}
.fsa{font-size:66.000000px;}
.fs1b{font-size:66.211293px;}
.fs19{font-size:66.315256px;}
.fs3{font-size:66.754693px;}
.fs22{font-size:67.235462px;}
.fs20{font-size:67.347988px;}
.fs17{font-size:69.105734px;}
.fs2{font-size:72.000000px;}
.fs1e{font-size:72.330245px;}
.fsc{font-size:72.588269px;}
.fsb{font-size:72.739495px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y100{bottom:7.171221px;}
.y134{bottom:7.500000px;}
.y123{bottom:8.001136px;}
.y136{bottom:8.250000px;}
.ydb{bottom:9.719721px;}
.y111{bottom:12.911437px;}
.y4e{bottom:19.500000px;}
.y50{bottom:23.250000px;}
.ybe{bottom:26.377428px;}
.y6{bottom:28.413862px;}
.yff{bottom:29.765024px;}
.y122{bottom:30.946646px;}
.yda{bottom:31.314543px;}
.y4d{bottom:31.500000px;}
.y110{bottom:34.753366px;}
.yeb{bottom:35.305831px;}
.y7{bottom:36.114559px;}
.y4f{bottom:43.530000px;}
.y4{bottom:45.787500px;}
.y101{bottom:48.599459px;}
.y124{bottom:48.699946px;}
.yb3{bottom:52.879676px;}
.y3{bottom:65.287500px;}
.yb8{bottom:68.796175px;}
.ye6{bottom:68.818801px;}
.y12f{bottom:70.767470px;}
.yb2{bottom:74.845188px;}
.yc0{bottom:79.382015px;}
.yc4{bottom:82.406518px;}
.y10e{bottom:83.975114px;}
.ye5{bottom:86.131227px;}
.y12e{bottom:89.055274px;}
.ydc{bottom:94.049592px;}
.y92{bottom:97.575000px;}
.yd8{bottom:98.325000px;}
.y125{bottom:98.638250px;}
.y102{bottom:101.305802px;}
.y120{bottom:101.325000px;}
.yc3{bottom:102.103649px;}
.y5d{bottom:102.825000px;}
.ye4{bottom:103.407660px;}
.y10d{bottom:103.561423px;}
.yfd{bottom:105.075000px;}
.y12d{bottom:107.343078px;}
.ybc{bottom:109.664893px;}
.y5c{bottom:116.325000px;}
.y91{bottom:118.575000px;}
.y11f{bottom:122.325000px;}
.y10c{bottom:123.110138px;}
.yba{bottom:124.825279px;}
.yfc{bottom:126.075000px;}
.yb0{bottom:126.825000px;}
.yb4{bottom:127.849738px;}
.y5b{bottom:137.325000px;}
.y90{bottom:139.612500px;}
.y11e{bottom:142.612500px;}
.yfb{bottom:146.362500px;}
.yaf{bottom:147.112500px;}
.y126{bottom:148.538375px;}
.ybd{bottom:149.021356px;}
.ydd{bottom:149.553014px;}
.y12c{bottom:149.836466px;}
.y160{bottom:150.120000px;}
.y103{bottom:154.018160px;}
.y5a{bottom:158.370000px;}
.y8f{bottom:159.870000px;}
.y11d{bottom:163.620000px;}
.yfa{bottom:165.855000px;}
.yae{bottom:168.120000px;}
.y109{bottom:172.815001px;}
.y59{bottom:178.620000px;}
.yf9{bottom:179.355000px;}
.y8e{bottom:180.870000px;}
.ye3{bottom:181.255269px;}
.y11c{bottom:183.870000px;}
.yad{bottom:188.370000px;}
.ybf{bottom:188.414133px;}
.y15f{bottom:189.105000px;}
.yb7{bottom:190.682462px;}
.yc2{bottom:194.463147px;}
.y127{bottom:198.436973px;}
.y58{bottom:199.605000px;}
.yf8{bottom:200.370000px;}
.y8d{bottom:201.120000px;}
.yd7{bottom:201.870000px;}
.ybb{bottom:202.780543px;}
.y11b{bottom:204.900000px;}
.yde{bottom:205.773408px;}
.y104{bottom:206.679390px;}
.yac{bottom:209.400000px;}
.y15e{bottom:211.650000px;}
.yb9{bottom:213.411678px;}
.yc1{bottom:214.167838px;}
.y57{bottom:219.900000px;}
.yf7{bottom:220.650000px;}
.y8c{bottom:222.150000px;}
.y11a{bottom:225.900000px;}
.yb6{bottom:227.778090px;}
.yab{bottom:230.400000px;}
.yb5{bottom:230.802592px;}
.y15d{bottom:232.650000px;}
.yf6{bottom:237.900000px;}
.y10f{bottom:238.500000px;}
.y56{bottom:241.650000px;}
.y119{bottom:242.400000px;}
.y8b{bottom:243.150000px;}
.y121{bottom:243.759128px;}
.yfe{bottom:244.992090px;}
.y128{bottom:248.344733px;}
.yaa{bottom:250.650000px;}
.y15c{bottom:252.900000px;}
.y105{bottom:259.385733px;}
.ydf{bottom:261.273950px;}
.yd6{bottom:263.400000px;}
.y8a{bottom:264.150000px;}
.y55{bottom:264.900000px;}
.ya9{bottom:271.695000px;}
.y15b{bottom:273.945000px;}
.yd5{bottom:284.445000px;}
.y54{bottom:285.945000px;}
.y89{bottom:287.445000px;}
.ya8{bottom:291.945000px;}
.y15a{bottom:294.945000px;}
.y129{bottom:298.237223px;}
.yd4{bottom:305.445000px;}
.y53{bottom:306.195000px;}
.y88{bottom:308.445000px;}
.y106{bottom:312.092076px;}
.ya7{bottom:312.945000px;}
.y159{bottom:315.195000px;}
.ye0{bottom:317.494344px;}
.yd3{bottom:321.945000px;}
.yea{bottom:323.445000px;}
.yd9{bottom:326.716437px;}
.y52{bottom:327.195000px;}
.y87{bottom:328.695000px;}
.ya6{bottom:333.975000px;}
.y158{bottom:336.225000px;}
.y12a{bottom:348.144983px;}
.y51{bottom:348.225000px;}
.y86{bottom:349.725000px;}
.ya5{bottom:354.225000px;}
.y157{bottom:356.475000px;}
.y4c{bottom:364.725000px;}
.y107{bottom:364.798419px;}
.y85{bottom:370.725000px;}
.ye1{bottom:373.023680px;}
.y132{bottom:374.259507px;}
.ya4{bottom:375.225000px;}
.y156{bottom:377.475000px;}
.ye9{bottom:379.502343px;}
.y84{bottom:390.975000px;}
.y10b{bottom:391.910983px;}
.y131{bottom:394.112656px;}
.y155{bottom:397.755000px;}
.y12b{bottom:398.037473px;}
.ye8{bottom:398.261670px;}
.ya3{bottom:398.505000px;}
.y2a{bottom:405.255000px;}
.y10a{bottom:409.986026px;}
.y83{bottom:412.005000px;}
.y130{bottom:413.996347px;}
.ye7{bottom:416.977806px;}
.y108{bottom:417.504762px;}
.y154{bottom:418.755000px;}
.ya2{bottom:419.505000px;}
.y29{bottom:425.505000px;}
.ye2{bottom:428.524222px;}
.y4b{bottom:429.255000px;}
.y82{bottom:432.255000px;}
.ya1{bottom:439.755000px;}
.y28{bottom:446.505000px;}
.y4a{bottom:449.505000px;}
.y81{bottom:453.255000px;}
.y153{bottom:460.005000px;}
.ya0{bottom:460.755000px;}
.y27{bottom:466.800000px;}
.y49{bottom:470.550000px;}
.y80{bottom:474.300000px;}
.y152{bottom:481.050000px;}
.y9f{bottom:481.800000px;}
.y26{bottom:487.800000px;}
.y48{bottom:491.550000px;}
.y7f{bottom:494.550000px;}
.y151{bottom:501.300000px;}
.y9e{bottom:502.800000px;}
.y25{bottom:508.800000px;}
.y47{bottom:511.800000px;}
.y7e{bottom:515.550000px;}
.y150{bottom:522.300000px;}
.y9d{bottom:525.345000px;}
.y24{bottom:529.095000px;}
.y46{bottom:532.830000px;}
.y7d{bottom:535.845000px;}
.y14f{bottom:543.330000px;}
.y9c{bottom:546.330000px;}
.y23{bottom:550.080000px;}
.y45{bottom:553.080000px;}
.y7c{bottom:556.830000px;}
.y14e{bottom:563.580000px;}
.y9b{bottom:567.345000px;}
.y22{bottom:570.330000px;}
.y44{bottom:574.095000px;}
.y7b{bottom:577.845000px;}
.y14d{bottom:584.595000px;}
.y9a{bottom:588.345000px;}
.y21{bottom:591.375000px;}
.y43{bottom:595.125000px;}
.y7a{bottom:598.125000px;}
.y14c{bottom:604.875000px;}
.y99{bottom:608.625000px;}
.y20{bottom:612.375000px;}
.y42{bottom:615.375000px;}
.y79{bottom:619.125000px;}
.y14b{bottom:625.875000px;}
.y98{bottom:629.625000px;}
.y1f{bottom:632.625000px;}
.y41{bottom:636.375000px;}
.y78{bottom:639.375000px;}
.y14a{bottom:646.875000px;}
.y97{bottom:652.875000px;}
.y1e{bottom:653.625000px;}
.y40{bottom:656.670000px;}
.y77{bottom:660.405000px;}
.y149{bottom:667.155000px;}
.y1d{bottom:673.905000px;}
.y3f{bottom:677.655000px;}
.y76{bottom:681.405000px;}
.y148{bottom:688.155000px;}
.y96{bottom:694.155000px;}
.y1c{bottom:694.905000px;}
.y3e{bottom:698.670000px;}
.y75{bottom:701.655000px;}
.yf5{bottom:705.420000px;}
.y147{bottom:708.405000px;}
.y95{bottom:715.155000px;}
.y1b{bottom:715.905000px;}
.y3d{bottom:718.950000px;}
.y74{bottom:722.700000px;}
.y118{bottom:723.450000px;}
.yf4{bottom:725.700000px;}
.y146{bottom:729.450000px;}
.y1a{bottom:736.200000px;}
.y3c{bottom:739.950000px;}
.y73{bottom:742.200000px;}
.y117{bottom:744.450000px;}
.yf3{bottom:746.700000px;}
.y145{bottom:750.450000px;}
.y72{bottom:755.700000px;}
.y94{bottom:756.450000px;}
.y19{bottom:757.200000px;}
.y3b{bottom:760.200000px;}
.y116{bottom:764.700000px;}
.yf2{bottom:767.700000px;}
.y144{bottom:770.700000px;}
.y71{bottom:775.950000px;}
.y18{bottom:777.450000px;}
.y3a{bottom:781.200000px;}
.y115{bottom:785.730000px;}
.yf1{bottom:787.995000px;}
.y143{bottom:791.745000px;}
.y70{bottom:796.995000px;}
.y17{bottom:798.495000px;}
.y39{bottom:802.245000px;}
.yd2{bottom:805.245000px;}
.y114{bottom:806.745000px;}
.yf0{bottom:808.995000px;}
.y142{bottom:811.995000px;}
.y93{bottom:813.495000px;}
.yb1{bottom:813.750000px;}
.y6f{bottom:817.245000px;}
.y16{bottom:819.480000px;}
.y38{bottom:822.495000px;}
.yd1{bottom:826.230000px;}
.y113{bottom:826.995000px;}
.yef{bottom:829.245000px;}
.y141{bottom:832.995000px;}
.y6e{bottom:838.245000px;}
.y15{bottom:840.495000px;}
.y37{bottom:843.480000px;}
.yd0{bottom:846.495000px;}
.y112{bottom:848.025000px;}
.yee{bottom:850.275000px;}
.y140{bottom:854.025000px;}
.y6d{bottom:859.275000px;}
.y14{bottom:863.775000px;}
.y138{bottom:865.275000px;}
.ycf{bottom:867.525000px;}
.yed{bottom:871.275000px;}
.y13f{bottom:874.275000px;}
.y6c{bottom:879.525000px;}
.y13{bottom:884.775000px;}
.yce{bottom:888.525000px;}
.yec{bottom:891.525000px;}
.y137{bottom:893.025000px;}
.y13e{bottom:895.275000px;}
.y6b{bottom:899.025000px;}
.y12{bottom:905.775000px;}
.ycd{bottom:908.775000px;}
.y6a{bottom:912.570000px;}
.y13d{bottom:915.570000px;}
.y135{bottom:920.070000px;}
.y11{bottom:925.320000px;}
.y36{bottom:926.070000px;}
.ycc{bottom:929.820000px;}
.y69{bottom:932.820000px;}
.y13c{bottom:937.320000px;}
.y10{bottom:943.320000px;}
.y35{bottom:947.070000px;}
.y133{bottom:947.820000px;}
.ycb{bottom:950.070000px;}
.y68{bottom:953.820000px;}
.y13b{bottom:961.320000px;}
.yf{bottom:964.320000px;}
.y34{bottom:967.320000px;}
.yca{bottom:971.070000px;}
.y67{bottom:974.820000px;}
.ye{bottom:984.600000px;}
.y13a{bottom:986.100000px;}
.y33{bottom:988.350000px;}
.yc9{bottom:992.100000px;}
.y66{bottom:995.100000px;}
.yd{bottom:1005.600000px;}
.y32{bottom:1009.350000px;}
.yc8{bottom:1012.350000px;}
.y65{bottom:1016.100000px;}
.yc{bottom:1028.100000px;}
.y31{bottom:1029.600000px;}
.yc7{bottom:1033.350000px;}
.y64{bottom:1036.350000px;}
.y30{bottom:1050.630000px;}
.y139{bottom:1051.380000px;}
.yc6{bottom:1053.630000px;}
.y63{bottom:1057.380000px;}
.yb{bottom:1058.880000px;}
.y2f{bottom:1070.880000px;}
.yc5{bottom:1075.380000px;}
.y62{bottom:1078.380000px;}
.ya{bottom:1090.380000px;}
.y2e{bottom:1091.880000px;}
.y61{bottom:1098.630000px;}
.y2d{bottom:1112.925000px;}
.y60{bottom:1119.675000px;}
.y9{bottom:1121.175000px;}
.y2c{bottom:1133.925000px;}
.y5f{bottom:1139.925000px;}
.y8{bottom:1152.675000px;}
.y2b{bottom:1158.675000px;}
.y5e{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y5{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h37{height:26.250000px;}
.h3a{height:26.287500px;}
.h39{height:27.000000px;}
.h6{height:33.876323px;}
.h13{height:37.672852px;}
.h1{height:43.054688px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h22{height:46.489465px;}
.h23{height:46.618602px;}
.h2c{height:48.557528px;}
.h2b{height:48.692410px;}
.h36{height:49.313717px;}
.h35{height:49.450700px;}
.h2{height:49.992188px;}
.h1e{height:51.654961px;}
.h20{height:51.784099px;}
.h12{height:53.121094px;}
.hb{height:53.818359px;}
.h29{height:53.952809px;}
.h27{height:54.087691px;}
.h33{height:54.793019px;}
.h31{height:54.930002px;}
.h21{height:56.859227px;}
.h1f{height:56.949595px;}
.h38{height:57.717773px;}
.h14{height:59.200195px;}
.h2a{height:59.389719px;}
.h28{height:59.967798px;}
.h34{height:60.308371px;}
.h32{height:60.409304px;}
.hf{height:60.679688px;}
.hd{height:60.787500px;}
.h17{height:61.175465px;}
.h18{height:61.302914px;}
.ha{height:62.964844px;}
.h9{height:64.582031px;}
.h2f{height:64.878252px;}
.h1c{height:65.034375px;}
.h1b{height:65.189219px;}
.h4{height:66.396148px;}
.h25{height:68.734560px;}
.h2e{height:71.941753px;}
.h1a{height:72.348804px;}
.hc{height:73.458984px;}
.h19{height:74.325000px;}
.h16{height:74.479844px;}
.h8{height:94.447266px;}
.h7{height:96.873047px;}
.h11{height:101.121094px;}
.he{height:114.799687px;}
.h10{height:117.799687px;}
.h15{height:260.699951px;}
.h26{height:456.902910px;}
.h2d{height:463.395000px;}
.h1d{height:475.033563px;}
.h30{height:476.240872px;}
.h24{height:478.305000px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.wa{width:63.037500px;}
.w5{width:84.787500px;}
.wd{width:180.150000px;}
.wc{width:190.650000px;}
.wb{width:211.695000px;}
.w4{width:569.730000px;}
.w8{width:673.500000px;}
.w9{width:692.723912px;}
.w7{width:697.950000px;}
.w6{width:730.113040px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.059294px;}
.x27{left:6.507110px;}
.x13{left:8.250000px;}
.x51{left:9.750000px;}
.x33{left:17.036098px;}
.x47{left:20.590859px;}
.x32{left:24.959864px;}
.x3d{left:26.221177px;}
.x2f{left:27.373017px;}
.x46{left:28.995292px;}
.x14{left:31.500000px;}
.x31{left:32.883636px;}
.x3c{left:34.497588px;}
.x3a{left:38.936755px;}
.x45{left:41.258124px;}
.x35{left:52.368904px;}
.x53{left:57.030000px;}
.x50{left:60.780000px;}
.x52{left:63.030000px;}
.x28{left:65.638591px;}
.x4e{left:66.780000px;}
.x2{left:73.491283px;}
.x29{left:76.534220px;}
.x4c{left:81.825000px;}
.x1{left:84.824987px;}
.x19{left:87.824987px;}
.x5{left:90.824987px;}
.x2e{left:97.500000px;}
.x49{left:98.790283px;}
.x3f{left:101.122702px;}
.x39{left:109.725000px;}
.x8{left:111.074987px;}
.x4a{left:123.112500px;}
.x2c{left:126.112487px;}
.x55{left:127.612487px;}
.x37{left:129.112487px;}
.x7{left:134.362487px;}
.x16{left:138.862487px;}
.xc{left:143.362500px;}
.x42{left:152.354987px;}
.x21{left:154.279071px;}
.x22{left:161.421759px;}
.x43{left:167.248212px;}
.xd{left:177.157500px;}
.x6{left:179.399987px;}
.x4b{left:186.900000px;}
.x9{left:226.694987px;}
.xe{left:236.437500px;}
.x25{left:251.734417px;}
.xf{left:254.482500px;}
.x24{left:270.120787px;}
.x40{left:299.500764px;}
.x3b{left:307.852416px;}
.x10{left:310.012500px;}
.x11{left:318.262500px;}
.x30{left:320.192269px;}
.x44{left:324.609756px;}
.x38{left:334.769987px;}
.x2d{left:342.269987px;}
.x15{left:347.549987px;}
.x20{left:354.834298px;}
.x23{left:364.246912px;}
.x17{left:383.549987px;}
.xb{left:385.049987px;}
.x54{left:389.594987px;}
.x2a{left:397.094987px;}
.x4d{left:399.345000px;}
.xa{left:403.844987px;}
.x3{left:407.594987px;}
.x4{left:446.624987px;}
.x1f{left:457.586131px;}
.x1e{left:484.204754px;}
.x3e{left:491.287793px;}
.x1d{left:505.405830px;}
.x48{left:510.347719px;}
.x34{left:521.383944px;}
.x1a{left:538.773696px;}
.x1c{left:586.593396px;}
.x4f{left:590.745000px;}
.x1b{left:628.011919px;}
.x12{left:713.100000px;}
.x41{left:778.379987px;}
.x36{left:783.629987px;}
.x2b{left:795.629987px;}
.x18{left:816.674987px;}
@media print{
.va{vertical-align:-37.771172pt;}
.v3{vertical-align:-13.333333pt;}
.v8{vertical-align:-10.753818pt;}
.vc{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.666667pt;}
.vb{vertical-align:5.346657pt;}
.v9{vertical-align:10.753818pt;}
.v7{vertical-align:13.333333pt;}
.v2{vertical-align:34.773333pt;}
.v6{vertical-align:42.666667pt;}
.v1{vertical-align:48.106667pt;}
.v4{vertical-align:50.773333pt;}
.ls3a{letter-spacing:-3.068981pt;}
.ls3d{letter-spacing:-2.935315pt;}
.ls20{letter-spacing:-1.792000pt;}
.ls52{letter-spacing:-1.194583pt;}
.ls23{letter-spacing:-1.134528pt;}
.ls2e{letter-spacing:-1.126168pt;}
.ls43{letter-spacing:-0.999825pt;}
.ls3f{letter-spacing:-0.983785pt;}
.ls2f{letter-spacing:-0.957242pt;}
.ls5{letter-spacing:-0.917333pt;}
.ls16{letter-spacing:-0.874667pt;}
.ls21{letter-spacing:-0.821333pt;}
.ls3e{letter-spacing:-0.695065pt;}
.ls45{letter-spacing:-0.668332pt;}
.ls31{letter-spacing:-0.639868pt;}
.ls55{letter-spacing:-0.618667pt;}
.ls48{letter-spacing:-0.517022pt;}
.ls34{letter-spacing:-0.429991pt;}
.ls4c{letter-spacing:-0.401271pt;}
.ls3b{letter-spacing:-0.395118pt;}
.ls49{letter-spacing:-0.383355pt;}
.ls2c{letter-spacing:-0.378290pt;}
.ls4e{letter-spacing:-0.325795pt;}
.ls40{letter-spacing:-0.320799pt;}
.ls29{letter-spacing:-0.307137pt;}
.ls35{letter-spacing:-0.302018pt;}
.ls4d{letter-spacing:-0.265523pt;}
.ls3c{letter-spacing:-0.261452pt;}
.ls2b{letter-spacing:-0.250316pt;}
.ls51{letter-spacing:-0.190047pt;}
.ls2a{letter-spacing:-0.179163pt;}
.ls47{letter-spacing:-0.053467pt;}
.ls33{letter-spacing:-0.051189pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls58{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.010667pt;}
.ls39{letter-spacing:0.016040pt;}
.ls37{letter-spacing:0.016307pt;}
.ls13{letter-spacing:0.021333pt;}
.ls10{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.065198pt;}
.ls36{letter-spacing:0.069774pt;}
.ls24{letter-spacing:0.102379pt;}
.lsc{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.112617pt;}
.lsd{letter-spacing:0.117333pt;}
.ls26{letter-spacing:0.153568pt;}
.ls22{letter-spacing:0.193569pt;}
.ls11{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.277333pt;}
.lsa{letter-spacing:0.362667pt;}
.ls25{letter-spacing:0.460705pt;}
.ls56{letter-spacing:0.533333pt;}
.ls4f{letter-spacing:0.543317pt;}
.ls30{letter-spacing:0.742247pt;}
.ls1f{letter-spacing:0.747390pt;}
.ls44{letter-spacing:0.775265pt;}
.ls54{letter-spacing:0.787339pt;}
.ls1e{letter-spacing:0.790406pt;}
.ls2d{letter-spacing:0.819031pt;}
.ls19{letter-spacing:0.832000pt;}
.ls42{letter-spacing:0.855465pt;}
.ls53{letter-spacing:0.868787pt;}
.ls32{letter-spacing:0.870220pt;}
.ls6{letter-spacing:0.874667pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls46{letter-spacing:0.908932pt;}
.ls4a{letter-spacing:0.917333pt;}
.ls1d{letter-spacing:0.924828pt;}
.ls50{letter-spacing:1.004535pt;}
.ls17{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.176265pt;}
.ls14{letter-spacing:1.749333pt;}
.ls15{letter-spacing:1.792000pt;}
.ls18{letter-spacing:3.541333pt;}
.lsb{letter-spacing:3.909333pt;}
.lsf{letter-spacing:3.962667pt;}
.ls12{letter-spacing:10.773333pt;}
.lse{letter-spacing:13.546667pt;}
.ls57{letter-spacing:40.874667pt;}
.ls7{letter-spacing:56.352000pt;}
.ls9{letter-spacing:77.525333pt;}
.ls0{letter-spacing:148.272000pt;}
.ls28{letter-spacing:214.847166pt;}
.ls38{letter-spacing:548.059352pt;}
.ws2{word-spacing:-26.656000pt;}
.ws13{word-spacing:-25.600000pt;}
.ws14{word-spacing:-24.725333pt;}
.ws15{word-spacing:-22.883692pt;}
.ws16{word-spacing:-22.594973pt;}
.ws10{word-spacing:-21.909333pt;}
.ws9{word-spacing:-19.584000pt;}
.ws8{word-spacing:-19.541333pt;}
.ws11{word-spacing:-18.688000pt;}
.ws6{word-spacing:-18.666667pt;}
.ws1a{word-spacing:-17.813333pt;}
.ws4{word-spacing:-17.792000pt;}
.wsa{word-spacing:-16.917333pt;}
.ws5{word-spacing:-16.874667pt;}
.ws19{word-spacing:-16.842667pt;}
.ws17{word-spacing:-15.690667pt;}
.ws18{word-spacing:-15.200000pt;}
.ws3{word-spacing:-14.826667pt;}
.wsc{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.wsd{word-spacing:-9.973333pt;}
.ws12{word-spacing:-9.152000pt;}
.wse{word-spacing:-0.554667pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:2.112000pt;}
.wsb{word-spacing:2.485333pt;}
._22{margin-left:-6.828674pt;}
._1e{margin-left:-4.874667pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._8{width:4.426667pt;}
._e{width:5.936000pt;}
._9{width:7.024000pt;}
._c{width:8.186667pt;}
._b{width:9.413333pt;}
._1f{width:10.389333pt;}
._a{width:11.456000pt;}
._17{width:12.661333pt;}
._d{width:13.728000pt;}
._f{width:14.794667pt;}
._10{width:16.677333pt;}
._2d{width:17.657618pt;}
._15{width:19.152000pt;}
._14{width:20.101333pt;}
._16{width:21.461333pt;}
._19{width:22.592000pt;}
._20{width:24.645333pt;}
._21{width:25.552000pt;}
._33{width:27.498667pt;}
._1c{width:29.024000pt;}
._1a{width:30.336000pt;}
._1d{width:32.570667pt;}
._1b{width:33.610667pt;}
._2e{width:35.392000pt;}
._2f{width:38.053333pt;}
._35{width:41.088000pt;}
._34{width:46.277333pt;}
._12{width:48.490667pt;}
._11{width:49.765333pt;}
._32{width:63.173333pt;}
._18{width:66.858667pt;}
._26{width:198.614997pt;}
._25{width:212.538523pt;}
._24{width:215.748100pt;}
._28{width:285.229185pt;}
._27{width:289.691814pt;}
._30{width:315.320007pt;}
._31{width:316.559891pt;}
._2c{width:331.546473pt;}
._2b{width:354.483632pt;}
._29{width:357.873546pt;}
._2a{width:361.273886pt;}
._6{width:433.242667pt;}
._4{width:452.432000pt;}
._13{width:750.741333pt;}
._7{width:1043.290667pt;}
._23{width:1051.571384pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs15{font-size:46.070489pt;}
.fs16{font-size:46.198463pt;}
.fs1d{font-size:48.119914pt;}
.fs1c{font-size:48.253580pt;}
.fsd{font-size:48.392180pt;}
.fse{font-size:48.526602pt;}
.fs24{font-size:48.869288pt;}
.fs23{font-size:49.005036pt;}
.fs11{font-size:51.189432pt;}
.fs13{font-size:51.317406pt;}
.fs6{font-size:53.333333pt;}
.fs1a{font-size:53.466571pt;}
.fs18{font-size:53.600237pt;}
.fs21{font-size:54.299209pt;}
.fs1f{font-size:54.434957pt;}
.fs14{font-size:56.346796pt;}
.fs12{font-size:56.436349pt;}
.fs10{font-size:56.457543pt;}
.fsf{font-size:56.591966pt;}
.fsa{font-size:58.666667pt;}
.fs1b{font-size:58.854483pt;}
.fs19{font-size:58.946894pt;}
.fs3{font-size:59.337505pt;}
.fs22{font-size:59.764855pt;}
.fs20{font-size:59.864878pt;}
.fs17{font-size:61.427319pt;}
.fs2{font-size:64.000000pt;}
.fs1e{font-size:64.293551pt;}
.fsc{font-size:64.522906pt;}
.fsb{font-size:64.657329pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:6.374418pt;}
.y134{bottom:6.666667pt;}
.y123{bottom:7.112121pt;}
.y136{bottom:7.333333pt;}
.ydb{bottom:8.639752pt;}
.y111{bottom:11.476833pt;}
.y4e{bottom:17.333333pt;}
.y50{bottom:20.666667pt;}
.ybe{bottom:23.446603pt;}
.y6{bottom:25.256766pt;}
.yff{bottom:26.457799pt;}
.y122{bottom:27.508130pt;}
.yda{bottom:27.835150pt;}
.y4d{bottom:28.000000pt;}
.y110{bottom:30.891881pt;}
.yeb{bottom:31.382961pt;}
.y7{bottom:32.101830pt;}
.y4f{bottom:38.693333pt;}
.y4{bottom:40.700000pt;}
.y101{bottom:43.199519pt;}
.y124{bottom:43.288841pt;}
.yb3{bottom:47.004156pt;}
.y3{bottom:58.033333pt;}
.yb8{bottom:61.152156pt;}
.ye6{bottom:61.172267pt;}
.y12f{bottom:62.904418pt;}
.yb2{bottom:66.529056pt;}
.yc0{bottom:70.561791pt;}
.yc4{bottom:73.250238pt;}
.y10e{bottom:74.644546pt;}
.ye5{bottom:76.561091pt;}
.y12e{bottom:79.160244pt;}
.ydc{bottom:83.599637pt;}
.y92{bottom:86.733333pt;}
.yd8{bottom:87.400000pt;}
.y125{bottom:87.678445pt;}
.y102{bottom:90.049602pt;}
.y120{bottom:90.066667pt;}
.yc3{bottom:90.758799pt;}
.y5d{bottom:91.400000pt;}
.ye4{bottom:91.917920pt;}
.y10d{bottom:92.054598pt;}
.yfd{bottom:93.400000pt;}
.y12d{bottom:95.416069pt;}
.ybc{bottom:97.479905pt;}
.y5c{bottom:103.400000pt;}
.y91{bottom:105.400000pt;}
.y11f{bottom:108.733333pt;}
.y10c{bottom:109.431234pt;}
.yba{bottom:110.955804pt;}
.yfc{bottom:112.066667pt;}
.yb0{bottom:112.733333pt;}
.yb4{bottom:113.644211pt;}
.y5b{bottom:122.066667pt;}
.y90{bottom:124.100000pt;}
.y11e{bottom:126.766667pt;}
.yfb{bottom:130.100000pt;}
.yaf{bottom:130.766667pt;}
.y126{bottom:132.034111pt;}
.ybd{bottom:132.463428pt;}
.ydd{bottom:132.936012pt;}
.y12c{bottom:133.187970pt;}
.y160{bottom:133.440000pt;}
.y103{bottom:136.905031pt;}
.y5a{bottom:140.773333pt;}
.y8f{bottom:142.106667pt;}
.y11d{bottom:145.440000pt;}
.yfa{bottom:147.426667pt;}
.yae{bottom:149.440000pt;}
.y109{bottom:153.613334pt;}
.y59{bottom:158.773333pt;}
.yf9{bottom:159.426667pt;}
.y8e{bottom:160.773333pt;}
.ye3{bottom:161.115795pt;}
.y11c{bottom:163.440000pt;}
.yad{bottom:167.440000pt;}
.ybf{bottom:167.479229pt;}
.y15f{bottom:168.093333pt;}
.yb7{bottom:169.495522pt;}
.yc2{bottom:172.856130pt;}
.y127{bottom:176.388420pt;}
.y58{bottom:177.426667pt;}
.yf8{bottom:178.106667pt;}
.y8d{bottom:178.773333pt;}
.yd7{bottom:179.440000pt;}
.ybb{bottom:180.249372pt;}
.y11b{bottom:182.133333pt;}
.yde{bottom:182.909696pt;}
.y104{bottom:183.715014pt;}
.yac{bottom:186.133333pt;}
.y15e{bottom:188.133333pt;}
.yb9{bottom:189.699270pt;}
.yc1{bottom:190.371412pt;}
.y57{bottom:195.466667pt;}
.yf7{bottom:196.133333pt;}
.y8c{bottom:197.466667pt;}
.y11a{bottom:200.800000pt;}
.yb6{bottom:202.469413pt;}
.yab{bottom:204.800000pt;}
.yb5{bottom:205.157860pt;}
.y15d{bottom:206.800000pt;}
.yf6{bottom:211.466667pt;}
.y10f{bottom:212.000000pt;}
.y56{bottom:214.800000pt;}
.y119{bottom:215.466667pt;}
.y8b{bottom:216.133333pt;}
.y121{bottom:216.674781pt;}
.yfe{bottom:217.770746pt;}
.y128{bottom:220.750874pt;}
.yaa{bottom:222.800000pt;}
.y15c{bottom:224.800000pt;}
.y105{bottom:230.565096pt;}
.ydf{bottom:232.243511pt;}
.yd6{bottom:234.133333pt;}
.y8a{bottom:234.800000pt;}
.y55{bottom:235.466667pt;}
.ya9{bottom:241.506667pt;}
.y15b{bottom:243.506667pt;}
.yd5{bottom:252.840000pt;}
.y54{bottom:254.173333pt;}
.y89{bottom:255.506667pt;}
.ya8{bottom:259.506667pt;}
.y15a{bottom:262.173333pt;}
.y129{bottom:265.099754pt;}
.yd4{bottom:271.506667pt;}
.y53{bottom:272.173333pt;}
.y88{bottom:274.173333pt;}
.y106{bottom:277.415179pt;}
.ya7{bottom:278.173333pt;}
.y159{bottom:280.173333pt;}
.ye0{bottom:282.217194pt;}
.yd3{bottom:286.173333pt;}
.yea{bottom:287.506667pt;}
.yd9{bottom:290.414610pt;}
.y52{bottom:290.840000pt;}
.y87{bottom:292.173333pt;}
.ya6{bottom:296.866667pt;}
.y158{bottom:298.866667pt;}
.y12a{bottom:309.462207pt;}
.y51{bottom:309.533333pt;}
.y86{bottom:310.866667pt;}
.ya5{bottom:314.866667pt;}
.y157{bottom:316.866667pt;}
.y4c{bottom:324.200000pt;}
.y107{bottom:324.265262pt;}
.y85{bottom:329.533333pt;}
.ye1{bottom:331.576604pt;}
.y132{bottom:332.675118pt;}
.ya4{bottom:333.533333pt;}
.y156{bottom:335.533333pt;}
.ye9{bottom:337.335416pt;}
.y84{bottom:347.533333pt;}
.y10b{bottom:348.365319pt;}
.y131{bottom:350.322361pt;}
.y155{bottom:353.560000pt;}
.y12b{bottom:353.811087pt;}
.ye8{bottom:354.010373pt;}
.ya3{bottom:354.226667pt;}
.y2a{bottom:360.226667pt;}
.y10a{bottom:364.432023pt;}
.y83{bottom:366.226667pt;}
.y130{bottom:367.996753pt;}
.ye7{bottom:370.646939pt;}
.y108{bottom:371.115344pt;}
.y154{bottom:372.226667pt;}
.ya2{bottom:372.893333pt;}
.y29{bottom:378.226667pt;}
.ye2{bottom:380.910420pt;}
.y4b{bottom:381.560000pt;}
.y82{bottom:384.226667pt;}
.ya1{bottom:390.893333pt;}
.y28{bottom:396.893333pt;}
.y4a{bottom:399.560000pt;}
.y81{bottom:402.893333pt;}
.y153{bottom:408.893333pt;}
.ya0{bottom:409.560000pt;}
.y27{bottom:414.933333pt;}
.y49{bottom:418.266667pt;}
.y80{bottom:421.600000pt;}
.y152{bottom:427.600000pt;}
.y9f{bottom:428.266667pt;}
.y26{bottom:433.600000pt;}
.y48{bottom:436.933333pt;}
.y7f{bottom:439.600000pt;}
.y151{bottom:445.600000pt;}
.y9e{bottom:446.933333pt;}
.y25{bottom:452.266667pt;}
.y47{bottom:454.933333pt;}
.y7e{bottom:458.266667pt;}
.y150{bottom:464.266667pt;}
.y9d{bottom:466.973333pt;}
.y24{bottom:470.306667pt;}
.y46{bottom:473.626667pt;}
.y7d{bottom:476.306667pt;}
.y14f{bottom:482.960000pt;}
.y9c{bottom:485.626667pt;}
.y23{bottom:488.960000pt;}
.y45{bottom:491.626667pt;}
.y7c{bottom:494.960000pt;}
.y14e{bottom:500.960000pt;}
.y9b{bottom:504.306667pt;}
.y22{bottom:506.960000pt;}
.y44{bottom:510.306667pt;}
.y7b{bottom:513.640000pt;}
.y14d{bottom:519.640000pt;}
.y9a{bottom:522.973333pt;}
.y21{bottom:525.666667pt;}
.y43{bottom:529.000000pt;}
.y7a{bottom:531.666667pt;}
.y14c{bottom:537.666667pt;}
.y99{bottom:541.000000pt;}
.y20{bottom:544.333333pt;}
.y42{bottom:547.000000pt;}
.y79{bottom:550.333333pt;}
.y14b{bottom:556.333333pt;}
.y98{bottom:559.666667pt;}
.y1f{bottom:562.333333pt;}
.y41{bottom:565.666667pt;}
.y78{bottom:568.333333pt;}
.y14a{bottom:575.000000pt;}
.y97{bottom:580.333333pt;}
.y1e{bottom:581.000000pt;}
.y40{bottom:583.706667pt;}
.y77{bottom:587.026667pt;}
.y149{bottom:593.026667pt;}
.y1d{bottom:599.026667pt;}
.y3f{bottom:602.360000pt;}
.y76{bottom:605.693333pt;}
.y148{bottom:611.693333pt;}
.y96{bottom:617.026667pt;}
.y1c{bottom:617.693333pt;}
.y3e{bottom:621.040000pt;}
.y75{bottom:623.693333pt;}
.yf5{bottom:627.040000pt;}
.y147{bottom:629.693333pt;}
.y95{bottom:635.693333pt;}
.y1b{bottom:636.360000pt;}
.y3d{bottom:639.066667pt;}
.y74{bottom:642.400000pt;}
.y118{bottom:643.066667pt;}
.yf4{bottom:645.066667pt;}
.y146{bottom:648.400000pt;}
.y1a{bottom:654.400000pt;}
.y3c{bottom:657.733333pt;}
.y73{bottom:659.733333pt;}
.y117{bottom:661.733333pt;}
.yf3{bottom:663.733333pt;}
.y145{bottom:667.066667pt;}
.y72{bottom:671.733333pt;}
.y94{bottom:672.400000pt;}
.y19{bottom:673.066667pt;}
.y3b{bottom:675.733333pt;}
.y116{bottom:679.733333pt;}
.yf2{bottom:682.400000pt;}
.y144{bottom:685.066667pt;}
.y71{bottom:689.733333pt;}
.y18{bottom:691.066667pt;}
.y3a{bottom:694.400000pt;}
.y115{bottom:698.426667pt;}
.yf1{bottom:700.440000pt;}
.y143{bottom:703.773333pt;}
.y70{bottom:708.440000pt;}
.y17{bottom:709.773333pt;}
.y39{bottom:713.106667pt;}
.yd2{bottom:715.773333pt;}
.y114{bottom:717.106667pt;}
.yf0{bottom:719.106667pt;}
.y142{bottom:721.773333pt;}
.y93{bottom:723.106667pt;}
.yb1{bottom:723.333333pt;}
.y6f{bottom:726.440000pt;}
.y16{bottom:728.426667pt;}
.y38{bottom:731.106667pt;}
.yd1{bottom:734.426667pt;}
.y113{bottom:735.106667pt;}
.yef{bottom:737.106667pt;}
.y141{bottom:740.440000pt;}
.y6e{bottom:745.106667pt;}
.y15{bottom:747.106667pt;}
.y37{bottom:749.760000pt;}
.yd0{bottom:752.440000pt;}
.y112{bottom:753.800000pt;}
.yee{bottom:755.800000pt;}
.y140{bottom:759.133333pt;}
.y6d{bottom:763.800000pt;}
.y14{bottom:767.800000pt;}
.y138{bottom:769.133333pt;}
.ycf{bottom:771.133333pt;}
.yed{bottom:774.466667pt;}
.y13f{bottom:777.133333pt;}
.y6c{bottom:781.800000pt;}
.y13{bottom:786.466667pt;}
.yce{bottom:789.800000pt;}
.yec{bottom:792.466667pt;}
.y137{bottom:793.800000pt;}
.y13e{bottom:795.800000pt;}
.y6b{bottom:799.133333pt;}
.y12{bottom:805.133333pt;}
.ycd{bottom:807.800000pt;}
.y6a{bottom:811.173333pt;}
.y13d{bottom:813.840000pt;}
.y135{bottom:817.840000pt;}
.y11{bottom:822.506667pt;}
.y36{bottom:823.173333pt;}
.ycc{bottom:826.506667pt;}
.y69{bottom:829.173333pt;}
.y13c{bottom:833.173333pt;}
.y10{bottom:838.506667pt;}
.y35{bottom:841.840000pt;}
.y133{bottom:842.506667pt;}
.ycb{bottom:844.506667pt;}
.y68{bottom:847.840000pt;}
.y13b{bottom:854.506667pt;}
.yf{bottom:857.173333pt;}
.y34{bottom:859.840000pt;}
.yca{bottom:863.173333pt;}
.y67{bottom:866.506667pt;}
.ye{bottom:875.200000pt;}
.y13a{bottom:876.533333pt;}
.y33{bottom:878.533333pt;}
.yc9{bottom:881.866667pt;}
.y66{bottom:884.533333pt;}
.yd{bottom:893.866667pt;}
.y32{bottom:897.200000pt;}
.yc8{bottom:899.866667pt;}
.y65{bottom:903.200000pt;}
.yc{bottom:913.866667pt;}
.y31{bottom:915.200000pt;}
.yc7{bottom:918.533333pt;}
.y64{bottom:921.200000pt;}
.y30{bottom:933.893333pt;}
.y139{bottom:934.560000pt;}
.yc6{bottom:936.560000pt;}
.y63{bottom:939.893333pt;}
.yb{bottom:941.226667pt;}
.y2f{bottom:951.893333pt;}
.yc5{bottom:955.893333pt;}
.y62{bottom:958.560000pt;}
.ya{bottom:969.226667pt;}
.y2e{bottom:970.560000pt;}
.y61{bottom:976.560000pt;}
.y2d{bottom:989.266667pt;}
.y60{bottom:995.266667pt;}
.y9{bottom:996.600000pt;}
.y2c{bottom:1007.933333pt;}
.y5f{bottom:1013.266667pt;}
.y8{bottom:1024.600000pt;}
.y2b{bottom:1029.933333pt;}
.y5e{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y5{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h37{height:23.333333pt;}
.h3a{height:23.366667pt;}
.h39{height:24.000000pt;}
.h6{height:30.112287pt;}
.h13{height:33.486979pt;}
.h1{height:38.270833pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h22{height:41.323969pt;}
.h23{height:41.438758pt;}
.h2c{height:43.162247pt;}
.h2b{height:43.282142pt;}
.h36{height:43.834415pt;}
.h35{height:43.956178pt;}
.h2{height:44.437500pt;}
.h1e{height:45.915521pt;}
.h20{height:46.030310pt;}
.h12{height:47.218750pt;}
.hb{height:47.838542pt;}
.h29{height:47.958052pt;}
.h27{height:48.077947pt;}
.h33{height:48.704906pt;}
.h31{height:48.826668pt;}
.h21{height:50.541535pt;}
.h1f{height:50.621862pt;}
.h38{height:51.304688pt;}
.h14{height:52.622396pt;}
.h2a{height:52.790862pt;}
.h28{height:53.304709pt;}
.h34{height:53.607441pt;}
.h32{height:53.697159pt;}
.hf{height:53.937500pt;}
.hd{height:54.033333pt;}
.h17{height:54.378191pt;}
.h18{height:54.491479pt;}
.ha{height:55.968750pt;}
.h9{height:57.406250pt;}
.h2f{height:57.669558pt;}
.h1c{height:57.808334pt;}
.h1b{height:57.945973pt;}
.h4{height:59.018798pt;}
.h25{height:61.097387pt;}
.h2e{height:63.948225pt;}
.h1a{height:64.310048pt;}
.hc{height:65.296875pt;}
.h19{height:66.066667pt;}
.h16{height:66.204306pt;}
.h8{height:83.953125pt;}
.h7{height:86.109375pt;}
.h11{height:89.885417pt;}
.he{height:102.044167pt;}
.h10{height:104.710833pt;}
.h15{height:231.733290pt;}
.h26{height:406.135920pt;}
.h2d{height:411.906667pt;}
.h1d{height:422.252056pt;}
.h30{height:423.325219pt;}
.h24{height:425.160000pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.wa{width:56.033333pt;}
.w5{width:75.366667pt;}
.wd{width:160.133333pt;}
.wc{width:169.466667pt;}
.wb{width:188.173333pt;}
.w4{width:506.426667pt;}
.w8{width:598.666667pt;}
.w9{width:615.754589pt;}
.w7{width:620.400000pt;}
.w6{width:648.989369pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:0.941594pt;}
.x27{left:5.784098pt;}
.x13{left:7.333333pt;}
.x51{left:8.666667pt;}
.x33{left:15.143198pt;}
.x47{left:18.302986pt;}
.x32{left:22.186546pt;}
.x3d{left:23.307713pt;}
.x2f{left:24.331570pt;}
.x46{left:25.773593pt;}
.x14{left:28.000000pt;}
.x31{left:29.229899pt;}
.x3c{left:30.664523pt;}
.x3a{left:34.610449pt;}
.x45{left:36.673888pt;}
.x35{left:46.550136pt;}
.x53{left:50.693333pt;}
.x50{left:54.026667pt;}
.x52{left:56.026667pt;}
.x28{left:58.345414pt;}
.x4e{left:59.360000pt;}
.x2{left:65.325585pt;}
.x29{left:68.030418pt;}
.x4c{left:72.733333pt;}
.x1{left:75.399988pt;}
.x19{left:78.066655pt;}
.x5{left:80.733322pt;}
.x2e{left:86.666667pt;}
.x49{left:87.813585pt;}
.x3f{left:89.886846pt;}
.x39{left:97.533333pt;}
.x8{left:98.733322pt;}
.x4a{left:109.433333pt;}
.x2c{left:112.099988pt;}
.x55{left:113.433322pt;}
.x37{left:114.766655pt;}
.x7{left:119.433322pt;}
.x16{left:123.433322pt;}
.xc{left:127.433333pt;}
.x42{left:135.426655pt;}
.x21{left:137.136952pt;}
.x22{left:143.486008pt;}
.x43{left:148.665077pt;}
.xd{left:157.473333pt;}
.x6{left:159.466655pt;}
.x4b{left:166.133333pt;}
.x9{left:201.506655pt;}
.xe{left:210.166667pt;}
.x25{left:223.763926pt;}
.xf{left:226.206667pt;}
.x24{left:240.107367pt;}
.x40{left:266.222901pt;}
.x3b{left:273.646592pt;}
.x10{left:275.566667pt;}
.x11{left:282.900000pt;}
.x30{left:284.615350pt;}
.x44{left:288.542005pt;}
.x38{left:297.573322pt;}
.x2d{left:304.239988pt;}
.x15{left:308.933322pt;}
.x20{left:315.408265pt;}
.x23{left:323.775033pt;}
.x17{left:340.933322pt;}
.xb{left:342.266655pt;}
.x54{left:346.306655pt;}
.x2a{left:352.973322pt;}
.x4d{left:354.973333pt;}
.xa{left:358.973322pt;}
.x3{left:362.306655pt;}
.x4{left:396.999988pt;}
.x1f{left:406.743227pt;}
.x1e{left:430.404226pt;}
.x3e{left:436.700260pt;}
.x1d{left:449.249627pt;}
.x48{left:453.642417pt;}
.x34{left:463.452395pt;}
.x1a{left:478.909952pt;}
.x1c{left:521.416352pt;}
.x4f{left:525.106667pt;}
.x1b{left:558.232817pt;}
.x12{left:633.866667pt;}
.x41{left:691.893322pt;}
.x36{left:696.559988pt;}
.x2b{left:707.226655pt;}
.x18{left:725.933322pt;}
}




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