
    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_7fa2e94da4d3b61596918eb5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_820f419f574bc4063dbe97d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2885ee9dfe19d08017e72a6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_768b4d5b63df7ee49fe2423b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_75f4d1fa9436063006aa1e44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.772949;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_c89983b2d51795cc2fbca953.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.230469;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_2e9e53fbef242c424bba972b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9fb3d8c4a116c7858a645ba8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_711006575fd43d5eca1592cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_9b0090e7f55ecd7c8872182a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_c11da632e5a00b09de712d27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_04b3de79862781386976b4e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.771484;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;}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v6{vertical-align:-22.320099px;}
.v3{vertical-align:-19.440032px;}
.v9{vertical-align:-12.960018px;}
.v11{vertical-align:-10.799838px;}
.ve{vertical-align:-9.359802px;}
.v1{vertical-align:-5.040009px;}
.v4{vertical-align:-2.159910px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.879928px;}
.vc{vertical-align:4.320099px;}
.v8{vertical-align:14.400058px;}
.vb{vertical-align:20.159910px;}
.v2{vertical-align:22.319964px;}
.v10{vertical-align:29.519991px;}
.vf{vertical-align:33.839816px;}
.v7{vertical-align:40.319964px;}
.va{vertical-align:42.480148px;}
.vd{vertical-align:53.279847px;}
.v12{vertical-align:73.440031px;}
.ls7{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.017834px;}
.ls3e{letter-spacing:0.017973px;}
.ls16{letter-spacing:0.028575px;}
.lsa{letter-spacing:0.037834px;}
.ls4b{letter-spacing:0.046870px;}
.ls27{letter-spacing:0.050268px;}
.ls41{letter-spacing:0.054863px;}
.ls3c{letter-spacing:0.057576px;}
.ls45{letter-spacing:0.064211px;}
.ls22{letter-spacing:0.065241px;}
.ls23{letter-spacing:0.126303px;}
.ls43{letter-spacing:0.138460px;}
.ls0{letter-spacing:0.138595px;}
.ls11{letter-spacing:0.138599px;}
.ls8{letter-spacing:0.138662px;}
.ls44{letter-spacing:0.138667px;}
.lse{letter-spacing:0.138730px;}
.ls2{letter-spacing:0.138734px;}
.lsb{letter-spacing:0.138869px;}
.ls3b{letter-spacing:0.197043px;}
.ls2f{letter-spacing:0.199617px;}
.ls25{letter-spacing:0.214029px;}
.ls15{letter-spacing:0.215669px;}
.ls13{letter-spacing:0.220624px;}
.ls12{letter-spacing:0.220763px;}
.ls38{letter-spacing:0.222230px;}
.ls2e{letter-spacing:0.222235px;}
.ls2c{letter-spacing:0.222298px;}
.ls31{letter-spacing:0.222302px;}
.ls32{letter-spacing:0.222370px;}
.ls29{letter-spacing:0.234251px;}
.ls36{letter-spacing:0.255861px;}
.ls1f{letter-spacing:0.256806px;}
.ls20{letter-spacing:0.257080px;}
.ls1b{letter-spacing:0.262016px;}
.ls5{letter-spacing:0.262151px;}
.ls3{letter-spacing:0.262155px;}
.ls47{letter-spacing:0.262290px;}
.ls46{letter-spacing:0.262295px;}
.ls21{letter-spacing:0.322609px;}
.ls6{letter-spacing:0.322744px;}
.ls1a{letter-spacing:0.322748px;}
.ls4{letter-spacing:0.322883px;}
.ls1c{letter-spacing:0.322888px;}
.lsd{letter-spacing:0.411748px;}
.ls1{letter-spacing:0.414972px;}
.ls4c{letter-spacing:0.429324px;}
.ls48{letter-spacing:0.429464px;}
.ls49{letter-spacing:0.429599px;}
.ls26{letter-spacing:0.471569px;}
.ls2b{letter-spacing:0.471636px;}
.ls24{letter-spacing:0.471708px;}
.ls3f{letter-spacing:0.566566px;}
.ls9{letter-spacing:0.571292px;}
.ls2d{letter-spacing:0.612017px;}
.ls37{letter-spacing:0.630765px;}
.lsc{letter-spacing:0.640678px;}
.ls10{letter-spacing:0.640683px;}
.lsf{letter-spacing:0.640746px;}
.ls30{letter-spacing:0.640750px;}
.ls3a{letter-spacing:0.700936px;}
.ls42{letter-spacing:0.774881px;}
.ls40{letter-spacing:0.977359px;}
.ls39{letter-spacing:0.982169px;}
.ls1e{letter-spacing:1.042762px;}
.ls1d{letter-spacing:1.042901px;}
.ls17{letter-spacing:1.658105px;}
.ls35{letter-spacing:1.752265px;}
.ls18{letter-spacing:1.927071px;}
.ls14{letter-spacing:2.013291px;}
.ls4a{letter-spacing:4.453061px;}
.ls19{letter-spacing:5.613372px;}
.ls34{letter-spacing:18.658915px;}
.ls33{letter-spacing:22.921863px;}
.ls2a{letter-spacing:111.246137px;}
.ls28{letter-spacing:326.526124px;}
.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;}
}
.ws14{word-spacing:-36.477990px;}
.ws4{word-spacing:-36.000000px;}
.ws6{word-spacing:-15.266696px;}
.ws10{word-spacing:-14.861385px;}
.wse{word-spacing:-14.084113px;}
.wsf{word-spacing:-14.033845px;}
.ws15{word-spacing:-12.718283px;}
.ws2{word-spacing:-12.671413px;}
.wsc{word-spacing:-12.536923px;}
.ws9{word-spacing:-10.551618px;}
.ws7{word-spacing:-10.266515px;}
.ws0{word-spacing:-10.228681px;}
.ws3{word-spacing:-9.360000px;}
.wsb{word-spacing:-9.355930px;}
.ws11{word-spacing:-8.619613px;}
.ws1{word-spacing:-8.244026px;}
.wsd{word-spacing:-7.858983px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:23.690949px;}
.ws13{word-spacing:61.764938px;}
.ws12{word-spacing:124.903850px;}
.ws8{word-spacing:125.477431px;}
._2c{margin-left:-7.073354px;}
._c{margin-left:-4.039758px;}
._7{margin-left:-2.473247px;}
._1{margin-left:-1.111331px;}
._0{width:1.026206px;}
._2{width:2.304631px;}
._4{width:3.518129px;}
._3{width:4.917425px;}
._a{width:6.549284px;}
._f{width:7.554680px;}
._8{width:8.678525px;}
._18{width:9.714406px;}
._b{width:11.016192px;}
._e{width:12.899746px;}
._d{width:14.030182px;}
._9{width:15.183240px;}
._5{width:16.312999px;}
._6{width:17.335394px;}
._10{width:18.521719px;}
._1a{width:20.452738px;}
._22{width:21.564834px;}
._13{width:22.704777px;}
._2d{width:23.860383px;}
._19{width:25.200233px;}
._1f{width:26.233300px;}
._37{width:27.603818px;}
._38{width:28.930578px;}
._15{width:30.018879px;}
._14{width:31.052431px;}
._1d{width:32.141175px;}
._1e{width:33.780467px;}
._17{width:35.109652px;}
._16{width:36.306691px;}
._36{width:37.569064px;}
._35{width:39.023802px;}
._20{width:45.138027px;}
._21{width:46.805447px;}
._11{width:49.842679px;}
._12{width:51.203223px;}
._1c{width:58.377642px;}
._1b{width:59.752690px;}
._26{width:70.625739px;}
._29{width:73.787373px;}
._25{width:85.076150px;}
._28{width:91.716736px;}
._27{width:97.322038px;}
._2a{width:107.627973px;}
._39{width:111.510451px;}
._34{width:126.747705px;}
._33{width:129.741737px;}
._30{width:138.960916px;}
._2b{width:153.625042px;}
._2f{width:154.801793px;}
._32{width:192.684120px;}
._31{width:205.809419px;}
._2e{width:218.022629px;}
._23{width:286.721315px;}
._24{width:341.426762px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.371780px;}
.fsb{font-size:33.775920px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:36.477990px;}
.fs7{font-size:39.180060px;}
.fsd{font-size:43.677540px;}
.fs2{font-size:45.259650px;}
.fs6{font-size:47.961900px;}
.fsa{font-size:50.663700px;}
.fs4{font-size:56.068200px;}
.fs9{font-size:61.597350px;}
.fs0{font-size:62.147700px;}
.fs1{font-size:67.551750px;}
.fs8{font-size:71.393529px;}
.yed{bottom:-1.080025px;}
.ye7{bottom:-0.180038px;}
.y0{bottom:0.000000px;}
.yec{bottom:0.179970px;}
.ye4{bottom:1.799973px;}
.y9d{bottom:3.420044px;}
.y25{bottom:11.887200px;}
.y2{bottom:55.080025px;}
.y1{bottom:73.980011px;}
.y143{bottom:106.740006px;}
.y24{bottom:108.899986px;}
.y19a{bottom:109.620002px;}
.y62{bottom:111.600013px;}
.y10b{bottom:112.320030px;}
.y16b{bottom:112.679970px;}
.y14d{bottom:113.580025px;}
.y12b{bottom:114.299973px;}
.ycc{bottom:115.200027px;}
.y104{bottom:116.279983px;}
.y8e{bottom:117.179970px;}
.y13b{bottom:120.059967px;}
.yb7{bottom:120.779983px;}
.y12a{bottom:122.759994px;}
.y167{bottom:122.940033px;}
.yf8{bottom:123.480011px;}
.y199{bottom:126.720017px;}
.y43{bottom:134.100013px;}
.y142{bottom:137.700027px;}
.y10a{bottom:138.059967px;}
.y16a{bottom:138.419975px;}
.ydd{bottom:140.940033px;}
.y61{bottom:142.559967px;}
.y23{bottom:143.100013px;}
.y198{bottom:144.000000px;}
.y14c{bottom:144.539977px;}
.ycb{bottom:146.159981px;}
.y103{bottom:147.240006px;}
.y8d{bottom:148.320030px;}
.y13a{bottom:151.019989px;}
.y154{bottom:151.379998px;}
.yb6{bottom:151.740006px;}
.y166{bottom:153.899986px;}
.yf7{bottom:154.440033px;}
.y5e{bottom:156.779983px;}
.y129{bottom:158.039977px;}
.y197{bottom:161.279983px;}
.y109{bottom:162.000000px;}
.y159{bottom:163.799973px;}
.y169{bottom:164.340019px;}
.y42{bottom:165.240006px;}
.y141{bottom:168.659981px;}
.ydc{bottom:171.899986px;}
.y60{bottom:173.700027px;}
.y14b{bottom:175.500000px;}
.yca{bottom:177.120002px;}
.y22{bottom:177.299973px;}
.y102{bottom:178.379998px;}
.y8c{bottom:179.279983px;}
.y153{bottom:182.340019px;}
.yb5{bottom:182.700027px;}
.y165{bottom:184.860008px;}
.y139{bottom:185.039977px;}
.yf6{bottom:185.399986px;}
.y7b{bottom:187.740006px;}
.y128{bottom:189.000000px;}
.y158{bottom:189.539977px;}
.y168{bottom:190.259994px;}
.y196{bottom:195.659981px;}
.y41{bottom:196.200027px;}
.y140{bottom:199.620002px;}
.ydb{bottom:203.039977px;}
.y21{bottom:203.220017px;}
.y5f{bottom:204.659981px;}
.y14a{bottom:206.460022px;}
.yc9{bottom:208.080025px;}
.y101{bottom:209.340019px;}
.y8b{bottom:210.240006px;}
.y195{bottom:212.940033px;}
.y152{bottom:213.480011px;}
.yb4{bottom:213.659981px;}
.y157{bottom:215.460022px;}
.y164{bottom:215.820030px;}
.yf5{bottom:216.360008px;}
.y7a{bottom:218.700027px;}
.y127{bottom:219.960022px;}
.y40{bottom:227.159981px;}
.y194{bottom:230.220017px;}
.y13f{bottom:230.580025px;}
.yda{bottom:234.000000px;}
.y5d{bottom:235.620002px;}
.y20{bottom:237.419975px;}
.yc8{bottom:239.039977px;}
.y156{bottom:239.220017px;}
.y100{bottom:240.299973px;}
.y8a{bottom:241.200027px;}
.y138{bottom:242.100013px;}
.ya6{bottom:244.440033px;}
.yb3{bottom:244.799973px;}
.y163{bottom:246.779983px;}
.y193{bottom:247.320030px;}
.yf4{bottom:247.500000px;}
.y79{bottom:249.659981px;}
.y126{bottom:250.919975px;}
.y3f{bottom:258.120002px;}
.y13e{bottom:259.019989px;}
.y1f{bottom:263.340019px;}
.y192{bottom:264.419975px;}
.yd9{bottom:264.960022px;}
.y5c{bottom:266.580025px;}
.y149{bottom:268.379998px;}
.yc7{bottom:270.000000px;}
.y137{bottom:270.899986px;}
.yff{bottom:271.259994px;}
.y89{bottom:272.159981px;}
.y151{bottom:272.700027px;}
.ya5{bottom:275.399986px;}
.yb2{bottom:275.759994px;}
.y162{bottom:277.740006px;}
.yf3{bottom:278.460022px;}
.y78{bottom:280.620002px;}
.y191{bottom:281.700027px;}
.y125{bottom:281.879998px;}
.y13d{bottom:284.759994px;}
.y3e{bottom:289.080025px;}
.y1e{bottom:289.259994px;}
.yd8{bottom:295.919975px;}
.y5b{bottom:297.539977px;}
.y150{bottom:298.440033px;}
.y190{bottom:298.799973px;}
.y148{bottom:299.340019px;}
.y136{bottom:299.519989px;}
.yc6{bottom:300.960022px;}
.yfe{bottom:302.220017px;}
.y88{bottom:303.120002px;}
.ya4{bottom:306.360008px;}
.yb1{bottom:306.720017px;}
.y161{bottom:308.700027px;}
.yf2{bottom:309.419975px;}
.y77{bottom:311.580025px;}
.y124{bottom:312.840019px;}
.y1d{bottom:315.000000px;}
.y18f{bottom:316.080025px;}
.y13c{bottom:317.159981px;}
.y3d{bottom:320.039977px;}
.y14f{bottom:324.179970px;}
.yd7{bottom:326.879998px;}
.y135{bottom:328.139992px;}
.y5a{bottom:328.500000px;}
.y147{bottom:330.299973px;}
.yc5{bottom:332.100013px;}
.yfd{bottom:333.179970px;}
.y18e{bottom:333.360008px;}
.y87{bottom:334.080025px;}
.ya3{bottom:337.320030px;}
.yb0{bottom:337.679970px;}
.y160{bottom:339.840019px;}
.yf1{bottom:340.379998px;}
.y1c{bottom:340.740006px;}
.y76{bottom:342.539977px;}
.y123{bottom:343.980011px;}
.y18d{bottom:350.639992px;}
.y3c{bottom:351.000000px;}
.y14e{bottom:356.580025px;}
.y134{bottom:356.759994px;}
.yd6{bottom:357.840019px;}
.y59{bottom:359.460022px;}
.y146{bottom:361.440033px;}
.yc4{bottom:363.059967px;}
.yfc{bottom:364.139992px;}
.y86{bottom:365.039977px;}
.y1b{bottom:366.480011px;}
.y18c{bottom:367.740006px;}
.ya2{bottom:368.460022px;}
.yaf{bottom:368.639992px;}
.y15f{bottom:370.799973px;}
.yf0{bottom:371.519989px;}
.y75{bottom:373.500000px;}
.y122{bottom:374.940033px;}
.y3b{bottom:381.960022px;}
.y18b{bottom:385.019989px;}
.y133{bottom:385.379998px;}
.yd5{bottom:388.799973px;}
.y58{bottom:390.419975px;}
.y1a{bottom:392.399986px;}
.yc3{bottom:394.019989px;}
.yfb{bottom:395.100013px;}
.y85{bottom:396.000000px;}
.y145{bottom:398.159981px;}
.ya1{bottom:399.419975px;}
.yae{bottom:399.779983px;}
.y15e{bottom:401.759994px;}
.y18a{bottom:402.299973px;}
.yef{bottom:402.480011px;}
.y74{bottom:404.460022px;}
.y121{bottom:405.899986px;}
.y3a{bottom:412.919975px;}
.y132{bottom:413.820030px;}
.y19{bottom:418.320030px;}
.y189{bottom:419.399986px;}
.yd4{bottom:419.759994px;}
.y57{bottom:421.379998px;}
.yc2{bottom:425.159981px;}
.y84{bottom:426.960022px;}
.y144{bottom:428.759994px;}
.yfa{bottom:430.200027px;}
.ya0{bottom:430.379998px;}
.yad{bottom:430.740006px;}
.yee{bottom:433.440033px;}
.y73{bottom:435.419975px;}
.y188{bottom:436.500000px;}
.y120{bottom:436.860008px;}
.yf9{bottom:438.659981px;}
.y15d{bottom:441.179970px;}
.y39{bottom:443.879998px;}
.y18{bottom:444.059967px;}
.yd3{bottom:450.720017px;}
.y56{bottom:452.340019px;}
.y187{bottom:453.779983px;}
.yc1{bottom:456.120002px;}
.y83{bottom:458.100013px;}
.y9f{bottom:461.340019px;}
.yac{bottom:461.700027px;}
.y131{bottom:465.480011px;}
.y72{bottom:466.559967px;}
.yeb{bottom:467.460022px;}
.y11f{bottom:467.820030px;}
.y17{bottom:469.980011px;}
.y186{bottom:471.059967px;}
.y1bb{bottom:472.139992px;}
.y38{bottom:475.019989px;}
.y15c{bottom:477.899986px;}
.yd2{bottom:481.679970px;}
.y55{bottom:483.480011px;}
.yc0{bottom:487.080025px;}
.y185{bottom:488.159981px;}
.y82{bottom:489.059967px;}
.y1ba{bottom:489.419975px;}
.yab{bottom:489.960022px;}
.y130{bottom:491.399986px;}
.y9e{bottom:492.299973px;}
.y16{bottom:495.539977px;}
.y71{bottom:497.519989px;}
.y11e{bottom:498.779983px;}
.y15b{bottom:503.820030px;}
.y184{bottom:505.440033px;}
.y37{bottom:505.980011px;}
.y1b9{bottom:506.700027px;}
.yd1{bottom:512.820030px;}
.yaa{bottom:513.720017px;}
.y54{bottom:514.440033px;}
.yea{bottom:517.500000px;}
.ybf{bottom:518.039977px;}
.y9c{bottom:519.299973px;}
.y81{bottom:520.019989px;}
.y15{bottom:521.460022px;}
.y183{bottom:522.720017px;}
.y9b{bottom:523.259994px;}
.y1b8{bottom:523.799973px;}
.y12f{bottom:525.600013px;}
.y15a{bottom:527.580025px;}
.y70{bottom:528.480011px;}
.y11d{bottom:529.740006px;}
.y108{bottom:534.059967px;}
.y36{bottom:536.940033px;}
.ye9{bottom:537.659981px;}
.y182{bottom:540.000000px;}
.y1b7{bottom:540.899986px;}
.yd0{bottom:543.779983px;}
.y53{bottom:545.399986px;}
.y14{bottom:547.379998px;}
.ybe{bottom:549.000000px;}
.ye6{bottom:550.440033px;}
.y80{bottom:550.980011px;}
.y12e{bottom:551.519989px;}
.y9a{bottom:554.220017px;}
.ye8{bottom:554.580025px;}
.y181{bottom:557.100013px;}
.y1b6{bottom:558.179970px;}
.y6f{bottom:559.440033px;}
.y107{bottom:559.799973px;}
.y11c{bottom:560.700027px;}
.y35{bottom:567.899986px;}
.y13{bottom:573.120002px;}
.y180{bottom:574.379998px;}
.ycf{bottom:574.740006px;}
.y1b5{bottom:575.460022px;}
.y52{bottom:576.360008px;}
.y12d{bottom:577.440033px;}
.ye5{bottom:578.159981px;}
.ybd{bottom:579.960022px;}
.y7f{bottom:581.940033px;}
.ye1{bottom:583.019989px;}
.y106{bottom:585.720017px;}
.y6e{bottom:590.399986px;}
.y17f{bottom:591.480011px;}
.y11b{bottom:591.659981px;}
.y1b4{bottom:592.740006px;}
.ye2{bottom:597.059967px;}
.y34{bottom:598.860008px;}
.y12{bottom:599.039977px;}
.ye3{bottom:599.580025px;}
.y99{bottom:603.539977px;}
.y51{bottom:607.320030px;}
.y17e{bottom:608.759994px;}
.y12c{bottom:609.480011px;}
.y1b3{bottom:609.840019px;}
.ybc{bottom:610.919975px;}
.yce{bottom:611.460022px;}
.y7e{bottom:612.899986px;}
.y98{bottom:614.160015px;}
.y105{bottom:617.759994px;}
.y6d{bottom:621.360008px;}
.y11a{bottom:622.800007px;}
.y11{bottom:624.779983px;}
.y17d{bottom:625.860008px;}
.y1b2{bottom:627.120002px;}
.y33{bottom:629.819995px;}
.ye0{bottom:630.720017px;}
.ycd{bottom:635.399986px;}
.y50{bottom:638.279983px;}
.ybb{bottom:642.060001px;}
.y17c{bottom:643.139992px;}
.y7d{bottom:643.860008px;}
.y1b1{bottom:644.399986px;}
.y97{bottom:650.160015px;}
.y10{bottom:650.699993px;}
.y6c{bottom:652.319995px;}
.y119{bottom:653.759994px;}
.y17b{bottom:660.420010px;}
.y32{bottom:660.779983px;}
.y1b0{bottom:661.500000px;}
.ydf{bottom:662.040012px;}
.y4f{bottom:669.240006px;}
.y7c{bottom:674.819995px;}
.yf{bottom:676.259994px;}
.y17a{bottom:677.519989px;}
.yba{bottom:678.779983px;}
.y96{bottom:681.300007px;}
.y6b{bottom:683.279983px;}
.y118{bottom:684.720017px;}
.yde{bottom:688.319995px;}
.y31{bottom:691.740006px;}
.y179{bottom:694.800007px;}
.y1af{bottom:695.879998px;}
.y4e{bottom:700.199993px;}
.ye{bottom:702.180004px;}
.yb9{bottom:702.540012px;}
.y178{bottom:712.079990px;}
.y95{bottom:712.259994px;}
.y1ae{bottom:713.160015px;}
.y6a{bottom:714.240006px;}
.y117{bottom:715.680004px;}
.y30{bottom:722.699993px;}
.yd{bottom:728.100013px;}
.y177{bottom:729.360008px;}
.y1ad{bottom:730.259994px;}
.y4d{bottom:731.160015px;}
.y94{bottom:743.220017px;}
.y69{bottom:745.379998px;}
.y176{bottom:746.459988px;}
.y116{bottom:746.639992px;}
.y1ac{bottom:747.540012px;}
.ya9{bottom:752.399986px;}
.y2f{bottom:753.839985px;}
.yc{bottom:762.300007px;}
.y175{bottom:763.560001px;}
.y1ab{bottom:764.819995px;}
.y93{bottom:774.180004px;}
.y68{bottom:776.339985px;}
.y115{bottom:777.600013px;}
.ya8{bottom:778.319995px;}
.y174{bottom:780.839985px;}
.y1aa{bottom:782.100013px;}
.y2e{bottom:784.800007px;}
.y4c{bottom:793.259994px;}
.y173{bottom:798.120002px;}
.y1a9{bottom:799.199993px;}
.yb{bottom:801.540012px;}
.y92{bottom:805.139992px;}
.y67{bottom:807.300007px;}
.y114{bottom:808.560001px;}
.ya7{bottom:810.720017px;}
.y2d{bottom:815.759994px;}
.y1a8{bottom:816.480011px;}
.y4b{bottom:824.220017px;}
.y1a7{bottom:833.759994px;}
.y172{bottom:834.839985px;}
.ya{bottom:835.740006px;}
.y91{bottom:836.100013px;}
.y66{bottom:838.259994px;}
.y113{bottom:839.699993px;}
.y2c{bottom:846.720017px;}
.y1a6{bottom:850.860008px;}
.y4a{bottom:855.180004px;}
.y90{bottom:864.540012px;}
.y1a5{bottom:867.959988px;}
.y65{bottom:869.220017px;}
.y9{bottom:870.120002px;}
.y171{bottom:871.740006px;}
.y155{bottom:874.800007px;}
.y112{bottom:876.240006px;}
.y2b{bottom:877.680004px;}
.y1a4{bottom:885.240006px;}
.y49{bottom:886.139992px;}
.y8f{bottom:888.300007px;}
.y170{bottom:897.660015px;}
.y8{bottom:899.459988px;}
.y64{bottom:900.180004px;}
.y111{bottom:901.620002px;}
.y1a3{bottom:902.520006px;}
.y2a{bottom:908.639992px;}
.y48{bottom:917.099997px;}
.y1a2{bottom:919.620002px;}
.y16f{bottom:923.400003px;}
.y7{bottom:930.060001px;}
.y63{bottom:931.139992px;}
.y110{bottom:932.759994px;}
.y1a1{bottom:936.900003px;}
.y29{bottom:939.599997px;}
.y47{bottom:948.060001px;}
.y16e{bottom:949.319996px;}
.y1a0{bottom:954.180004px;}
.y6{bottom:962.099997px;}
.y10f{bottom:963.719999px;}
.y28{bottom:970.560001px;}
.y19f{bottom:971.460004px;}
.y16d{bottom:975.060001px;}
.y46{bottom:979.020006px;}
.y19e{bottom:988.560001px;}
.y5{bottom:993.060001px;}
.y10e{bottom:994.680004px;}
.y27{bottom:1001.520006px;}
.y19d{bottom:1005.840002px;}
.y45{bottom:1009.979994px;}
.y16c{bottom:1011.780001px;}
.y10d{bottom:1022.939999px;}
.y4{bottom:1032.479994px;}
.y19c{bottom:1040.039996px;}
.y44{bottom:1040.939999px;}
.y10c{bottom:1048.680004px;}
.y19b{bottom:1057.319996px;}
.y3{bottom:1063.620002px;}
.y26{bottom:1072.079999px;}
.yb8{bottom:1074.599997px;}
.h23{height:5.399985px;}
.h1a{height:9.360008px;}
.h1d{height:10.079956px;}
.h22{height:10.259994px;}
.h21{height:10.439964px;}
.h25{height:10.620002px;}
.h15{height:17.640060px;}
.h24{height:20.655432px;}
.h1f{height:20.738552px;}
.h1b{height:24.688746px;}
.ha{height:27.351562px;}
.h5{height:29.353383px;}
.h1c{height:32.950263px;}
.h1e{height:33.082859px;}
.h7{height:36.327021px;}
.h19{height:37.032988px;}
.h20{height:37.402958px;}
.h16{height:42.769254px;}
.h2a{height:45.016556px;}
.h6{height:45.117380px;}
.h14{height:49.571093px;}
.h9{height:55.767052px;}
.h18{height:56.441973px;}
.h8{height:57.409675px;}
.h1{height:61.813899px;}
.hb{height:67.188923px;}
.h26{height:67.336376px;}
.hf{height:67.336381px;}
.he{height:67.336516px;}
.h3{height:67.336520px;}
.h10{height:67.336552px;}
.hc{height:67.336583px;}
.h4{height:67.336588px;}
.hd{height:67.336655px;}
.h17{height:68.056534px;}
.h29{height:68.056538px;}
.h2{height:69.167978px;}
.h12{height:70.510955px;}
.h28{height:101.028739px;}
.h2d{height:101.029009px;}
.h2b{height:108.287569px;}
.h11{height:109.007587px;}
.h13{height:109.669072px;}
.h27{height:110.447754px;}
.h2c{height:142.127655px;}
.h0{height:1188.000000px;}
.w18{width:3.239989px;}
.w17{width:3.240006px;}
.wc{width:3.599980px;}
.w16{width:3.599997px;}
.wf{width:3.600014px;}
.w8{width:3.779983px;}
.w4{width:3.779984px;}
.wd{width:3.780017px;}
.w6{width:3.780018px;}
.we{width:6.299972px;}
.w10{width:6.299973px;}
.w7{width:6.300007px;}
.wa{width:6.300008px;}
.w2{width:6.660015px;}
.w14{width:7.920010px;}
.w5{width:8.279983px;}
.w11{width:8.279984px;}
.w9{width:8.280018px;}
.w15{width:8.460004px;}
.w3{width:9.540046px;}
.w1{width:11.340019px;}
.w12{width:15.299973px;}
.wb{width:15.300007px;}
.w13{width:42.840002px;}
.w19{width:126.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:11.700000px;}
.x2{left:138.780001px;}
.x5c{left:141.659998px;}
.x5{left:145.620002px;}
.x7{left:146.699993px;}
.x65{left:149.219999px;}
.x17{left:152.819996px;}
.x3{left:154.080008px;}
.x9{left:158.759994px;}
.x5e{left:159.840002px;}
.xa{left:161.280001px;}
.x58{left:162.360008px;}
.x1c{left:164.520006px;}
.xc{left:168.840002px;}
.x20{left:179.460005px;}
.x69{left:183.960005px;}
.x4c{left:196.199993px;}
.x5f{left:210.599997px;}
.x21{left:222.120002px;}
.xe{left:228.060001px;}
.x4d{left:239.039996px;}
.x4e{left:245.159998px;}
.x4f{left:252.900003px;}
.x50{left:261.000000px;}
.x1e{left:262.439999px;}
.x51{left:264.419992px;}
.x52{left:267.659998px;}
.x53{left:273.960005px;}
.x54{left:277.199993px;}
.x68{left:285.479994px;}
.x66{left:288.000000px;}
.x6{left:292.500000px;}
.x18{left:305.819996px;}
.x19{left:311.220017px;}
.x27{left:318.060001px;}
.x26{left:322.019989px;}
.x28{left:324.720017px;}
.x29{left:332.819996px;}
.x5d{left:335.160015px;}
.x2a{left:336.420010px;}
.x12{left:344.519989px;}
.x22{left:351.000000px;}
.x13{left:353.699993px;}
.x63{left:355.139992px;}
.x23{left:357.660015px;}
.x2c{left:369.720017px;}
.x2b{left:372.600014px;}
.x2d{left:376.199993px;}
.x4{left:380.160015px;}
.x2e{left:384.480011px;}
.x8{left:386.459988px;}
.x2f{left:388.079990px;}
.xf{left:390.240006px;}
.x55{left:403.019989px;}
.x30{left:414.000000px;}
.x31{left:417.420010px;}
.x10{left:424.439999px;}
.x60{left:426.779983px;}
.x32{left:432.540012px;}
.x33{left:436.139992px;}
.x5a{left:442.620002px;}
.x16{left:450.540012px;}
.x1{left:454.680005px;}
.x56{left:457.019989px;}
.x1a{left:458.459988px;}
.x35{left:465.120002px;}
.x34{left:469.079990px;}
.x36{left:471.779983px;}
.x37{left:479.879998px;}
.x38{left:483.480011px;}
.x11{left:493.560001px;}
.x5b{left:503.819996px;}
.x3a{left:513.000000px;}
.x39{left:514.620002px;}
.x3b{left:516.779983px;}
.x3c{left:531.899987px;}
.x3d{left:535.500000px;}
.x62{left:549.720017px;}
.x61{left:551.699993px;}
.x3f{left:562.319996px;}
.x3e{left:566.100014px;}
.x40{left:568.980011px;}
.x41{left:577.080025px;}
.x42{left:580.860008px;}
.x64{left:590.039978px;}
.x24{left:614.159981px;}
.x44{left:619.200027px;}
.x43{left:622.080025px;}
.x25{left:623.700027px;}
.x45{left:625.860008px;}
.x46{left:633.960023px;}
.x47{left:637.740006px;}
.xd{left:645.120002px;}
.x1d{left:677.519989px;}
.x1b{left:678.600014px;}
.x48{left:684.360008px;}
.x49{left:687.600014px;}
.x57{left:697.139992px;}
.x1f{left:698.580025px;}
.x4a{left:702.899987px;}
.x4b{left:706.320030px;}
.x67{left:710.100014px;}
.x59{left:722.879998px;}
.x14{left:762.659981px;}
.x15{left:778.320030px;}
@media print{
.v6{vertical-align:-19.840088pt;}
.v3{vertical-align:-17.280028pt;}
.v9{vertical-align:-11.520016pt;}
.v11{vertical-align:-9.599856pt;}
.ve{vertical-align:-8.319824pt;}
.v1{vertical-align:-4.480008pt;}
.v4{vertical-align:-1.919920pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.559936pt;}
.vc{vertical-align:3.840088pt;}
.v8{vertical-align:12.800052pt;}
.vb{vertical-align:17.919920pt;}
.v2{vertical-align:19.839968pt;}
.v10{vertical-align:26.239992pt;}
.vf{vertical-align:30.079836pt;}
.v7{vertical-align:35.839968pt;}
.va{vertical-align:37.760132pt;}
.vd{vertical-align:47.359864pt;}
.v12{vertical-align:65.280028pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.015852pt;}
.ls3e{letter-spacing:0.015976pt;}
.ls16{letter-spacing:0.025400pt;}
.lsa{letter-spacing:0.033630pt;}
.ls4b{letter-spacing:0.041662pt;}
.ls27{letter-spacing:0.044683pt;}
.ls41{letter-spacing:0.048767pt;}
.ls3c{letter-spacing:0.051178pt;}
.ls45{letter-spacing:0.057076pt;}
.ls22{letter-spacing:0.057992pt;}
.ls23{letter-spacing:0.112269pt;}
.ls43{letter-spacing:0.123075pt;}
.ls0{letter-spacing:0.123195pt;}
.ls11{letter-spacing:0.123199pt;}
.ls8{letter-spacing:0.123255pt;}
.ls44{letter-spacing:0.123259pt;}
.lse{letter-spacing:0.123315pt;}
.ls2{letter-spacing:0.123319pt;}
.lsb{letter-spacing:0.123439pt;}
.ls3b{letter-spacing:0.175149pt;}
.ls2f{letter-spacing:0.177437pt;}
.ls25{letter-spacing:0.190248pt;}
.ls15{letter-spacing:0.191706pt;}
.ls13{letter-spacing:0.196110pt;}
.ls12{letter-spacing:0.196234pt;}
.ls38{letter-spacing:0.197538pt;}
.ls2e{letter-spacing:0.197542pt;}
.ls2c{letter-spacing:0.197598pt;}
.ls31{letter-spacing:0.197602pt;}
.ls32{letter-spacing:0.197662pt;}
.ls29{letter-spacing:0.208223pt;}
.ls36{letter-spacing:0.227432pt;}
.ls1f{letter-spacing:0.228272pt;}
.ls20{letter-spacing:0.228516pt;}
.ls1b{letter-spacing:0.232903pt;}
.ls5{letter-spacing:0.233023pt;}
.ls3{letter-spacing:0.233027pt;}
.ls47{letter-spacing:0.233147pt;}
.ls46{letter-spacing:0.233151pt;}
.ls21{letter-spacing:0.286763pt;}
.ls6{letter-spacing:0.286883pt;}
.ls1a{letter-spacing:0.286887pt;}
.ls4{letter-spacing:0.287007pt;}
.ls1c{letter-spacing:0.287011pt;}
.lsd{letter-spacing:0.365998pt;}
.ls1{letter-spacing:0.368864pt;}
.ls4c{letter-spacing:0.381622pt;}
.ls48{letter-spacing:0.381746pt;}
.ls49{letter-spacing:0.381866pt;}
.ls26{letter-spacing:0.419172pt;}
.ls2b{letter-spacing:0.419232pt;}
.ls24{letter-spacing:0.419296pt;}
.ls3f{letter-spacing:0.503614pt;}
.ls9{letter-spacing:0.507815pt;}
.ls2d{letter-spacing:0.544015pt;}
.ls37{letter-spacing:0.560680pt;}
.lsc{letter-spacing:0.569492pt;}
.ls10{letter-spacing:0.569496pt;}
.lsf{letter-spacing:0.569552pt;}
.ls30{letter-spacing:0.569556pt;}
.ls3a{letter-spacing:0.623054pt;}
.ls42{letter-spacing:0.688783pt;}
.ls40{letter-spacing:0.868764pt;}
.ls39{letter-spacing:0.873039pt;}
.ls1e{letter-spacing:0.926899pt;}
.ls1d{letter-spacing:0.927023pt;}
.ls17{letter-spacing:1.473871pt;}
.ls35{letter-spacing:1.557569pt;}
.ls18{letter-spacing:1.712952pt;}
.ls14{letter-spacing:1.789592pt;}
.ls4a{letter-spacing:3.958276pt;}
.ls19{letter-spacing:4.989664pt;}
.ls34{letter-spacing:16.585702pt;}
.ls33{letter-spacing:20.374990pt;}
.ls2a{letter-spacing:98.885455pt;}
.ls28{letter-spacing:290.245443pt;}
.ws14{word-spacing:-32.424880pt;}
.ws4{word-spacing:-32.000000pt;}
.ws6{word-spacing:-13.570396pt;}
.ws10{word-spacing:-13.210120pt;}
.wse{word-spacing:-12.519211pt;}
.wsf{word-spacing:-12.474529pt;}
.ws15{word-spacing:-11.305140pt;}
.ws2{word-spacing:-11.263478pt;}
.wsc{word-spacing:-11.143932pt;}
.ws9{word-spacing:-9.379216pt;}
.ws7{word-spacing:-9.125791pt;}
.ws0{word-spacing:-9.092161pt;}
.ws3{word-spacing:-8.320000pt;}
.wsb{word-spacing:-8.316382pt;}
.ws11{word-spacing:-7.661878pt;}
.ws1{word-spacing:-7.328023pt;}
.wsd{word-spacing:-6.985763pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:21.058622pt;}
.ws13{word-spacing:54.902167pt;}
.ws12{word-spacing:111.025645pt;}
.ws8{word-spacing:111.535494pt;}
._2c{margin-left:-6.287426pt;}
._c{margin-left:-3.590896pt;}
._7{margin-left:-2.198442pt;}
._1{margin-left:-0.987850pt;}
._0{width:0.912183pt;}
._2{width:2.048561pt;}
._4{width:3.127226pt;}
._3{width:4.371045pt;}
._a{width:5.821585pt;}
._f{width:6.715271pt;}
._8{width:7.714245pt;}
._18{width:8.635028pt;}
._b{width:9.792171pt;}
._e{width:11.466440pt;}
._d{width:12.471273pt;}
._9{width:13.496213pt;}
._5{width:14.500444pt;}
._6{width:15.409239pt;}
._10{width:16.463750pt;}
._1a{width:18.180212pt;}
._22{width:19.168742pt;}
._13{width:20.182024pt;}
._2d{width:21.209229pt;}
._19{width:22.400207pt;}
._1f{width:23.318489pt;}
._37{width:24.536727pt;}
._38{width:25.716070pt;}
._15{width:26.683448pt;}
._14{width:27.602161pt;}
._1d{width:28.569934pt;}
._1e{width:30.027082pt;}
._17{width:31.208579pt;}
._16{width:32.272614pt;}
._36{width:33.394724pt;}
._35{width:34.687824pt;}
._20{width:40.122690pt;}
._21{width:41.604841pt;}
._11{width:44.304603pt;}
._12{width:45.513976pt;}
._1c{width:51.891237pt;}
._1b{width:53.113502pt;}
._26{width:62.778435pt;}
._29{width:65.588776pt;}
._25{width:75.623244pt;}
._28{width:81.525988pt;}
._27{width:86.508478pt;}
._2a{width:95.669309pt;}
._39{width:99.120401pt;}
._34{width:112.664627pt;}
._33{width:115.325988pt;}
._30{width:123.520814pt;}
._2b{width:136.555593pt;}
._2f{width:137.601594pt;}
._32{width:171.274773pt;}
._31{width:182.941705pt;}
._2e{width:193.797893pt;}
._23{width:254.863391pt;}
._24{width:303.490455pt;}
.fsc{font-size:25.219360pt;}
.fsb{font-size:30.023040pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:32.424880pt;}
.fs7{font-size:34.826720pt;}
.fsd{font-size:38.824480pt;}
.fs2{font-size:40.230800pt;}
.fs6{font-size:42.632800pt;}
.fsa{font-size:45.034400pt;}
.fs4{font-size:49.838400pt;}
.fs9{font-size:54.753200pt;}
.fs0{font-size:55.242400pt;}
.fs1{font-size:60.046000pt;}
.fs8{font-size:63.460915pt;}
.yed{bottom:-0.960022pt;}
.ye7{bottom:-0.160034pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:0.159973pt;}
.ye4{bottom:1.599976pt;}
.y9d{bottom:3.040039pt;}
.y25{bottom:10.566400pt;}
.y2{bottom:48.960022pt;}
.y1{bottom:65.760010pt;}
.y143{bottom:94.880005pt;}
.y24{bottom:96.799988pt;}
.y19a{bottom:97.440002pt;}
.y62{bottom:99.200012pt;}
.y10b{bottom:99.840027pt;}
.y16b{bottom:100.159973pt;}
.y14d{bottom:100.960022pt;}
.y12b{bottom:101.599976pt;}
.ycc{bottom:102.400024pt;}
.y104{bottom:103.359985pt;}
.y8e{bottom:104.159973pt;}
.y13b{bottom:106.719971pt;}
.yb7{bottom:107.359985pt;}
.y12a{bottom:109.119995pt;}
.y167{bottom:109.280029pt;}
.yf8{bottom:109.760010pt;}
.y199{bottom:112.640015pt;}
.y43{bottom:119.200012pt;}
.y142{bottom:122.400024pt;}
.y10a{bottom:122.719971pt;}
.y16a{bottom:123.039978pt;}
.ydd{bottom:125.280029pt;}
.y61{bottom:126.719971pt;}
.y23{bottom:127.200012pt;}
.y198{bottom:128.000000pt;}
.y14c{bottom:128.479980pt;}
.ycb{bottom:129.919983pt;}
.y103{bottom:130.880005pt;}
.y8d{bottom:131.840027pt;}
.y13a{bottom:134.239990pt;}
.y154{bottom:134.559998pt;}
.yb6{bottom:134.880005pt;}
.y166{bottom:136.799988pt;}
.yf7{bottom:137.280029pt;}
.y5e{bottom:139.359985pt;}
.y129{bottom:140.479980pt;}
.y197{bottom:143.359985pt;}
.y109{bottom:144.000000pt;}
.y159{bottom:145.599976pt;}
.y169{bottom:146.080017pt;}
.y42{bottom:146.880005pt;}
.y141{bottom:149.919983pt;}
.ydc{bottom:152.799988pt;}
.y60{bottom:154.400024pt;}
.y14b{bottom:156.000000pt;}
.yca{bottom:157.440002pt;}
.y22{bottom:157.599976pt;}
.y102{bottom:158.559998pt;}
.y8c{bottom:159.359985pt;}
.y153{bottom:162.080017pt;}
.yb5{bottom:162.400024pt;}
.y165{bottom:164.320007pt;}
.y139{bottom:164.479980pt;}
.yf6{bottom:164.799988pt;}
.y7b{bottom:166.880005pt;}
.y128{bottom:168.000000pt;}
.y158{bottom:168.479980pt;}
.y168{bottom:169.119995pt;}
.y196{bottom:173.919983pt;}
.y41{bottom:174.400024pt;}
.y140{bottom:177.440002pt;}
.ydb{bottom:180.479980pt;}
.y21{bottom:180.640015pt;}
.y5f{bottom:181.919983pt;}
.y14a{bottom:183.520020pt;}
.yc9{bottom:184.960022pt;}
.y101{bottom:186.080017pt;}
.y8b{bottom:186.880005pt;}
.y195{bottom:189.280029pt;}
.y152{bottom:189.760010pt;}
.yb4{bottom:189.919983pt;}
.y157{bottom:191.520020pt;}
.y164{bottom:191.840027pt;}
.yf5{bottom:192.320007pt;}
.y7a{bottom:194.400024pt;}
.y127{bottom:195.520020pt;}
.y40{bottom:201.919983pt;}
.y194{bottom:204.640015pt;}
.y13f{bottom:204.960022pt;}
.yda{bottom:208.000000pt;}
.y5d{bottom:209.440002pt;}
.y20{bottom:211.039978pt;}
.yc8{bottom:212.479980pt;}
.y156{bottom:212.640015pt;}
.y100{bottom:213.599976pt;}
.y8a{bottom:214.400024pt;}
.y138{bottom:215.200012pt;}
.ya6{bottom:217.280029pt;}
.yb3{bottom:217.599976pt;}
.y163{bottom:219.359985pt;}
.y193{bottom:219.840027pt;}
.yf4{bottom:220.000000pt;}
.y79{bottom:221.919983pt;}
.y126{bottom:223.039978pt;}
.y3f{bottom:229.440002pt;}
.y13e{bottom:230.239990pt;}
.y1f{bottom:234.080017pt;}
.y192{bottom:235.039978pt;}
.yd9{bottom:235.520020pt;}
.y5c{bottom:236.960022pt;}
.y149{bottom:238.559998pt;}
.yc7{bottom:240.000000pt;}
.y137{bottom:240.799988pt;}
.yff{bottom:241.119995pt;}
.y89{bottom:241.919983pt;}
.y151{bottom:242.400024pt;}
.ya5{bottom:244.799988pt;}
.yb2{bottom:245.119995pt;}
.y162{bottom:246.880005pt;}
.yf3{bottom:247.520020pt;}
.y78{bottom:249.440002pt;}
.y191{bottom:250.400024pt;}
.y125{bottom:250.559998pt;}
.y13d{bottom:253.119995pt;}
.y3e{bottom:256.960022pt;}
.y1e{bottom:257.119995pt;}
.yd8{bottom:263.039978pt;}
.y5b{bottom:264.479980pt;}
.y150{bottom:265.280029pt;}
.y190{bottom:265.599976pt;}
.y148{bottom:266.080017pt;}
.y136{bottom:266.239990pt;}
.yc6{bottom:267.520020pt;}
.yfe{bottom:268.640015pt;}
.y88{bottom:269.440002pt;}
.ya4{bottom:272.320007pt;}
.yb1{bottom:272.640015pt;}
.y161{bottom:274.400024pt;}
.yf2{bottom:275.039978pt;}
.y77{bottom:276.960022pt;}
.y124{bottom:278.080017pt;}
.y1d{bottom:280.000000pt;}
.y18f{bottom:280.960022pt;}
.y13c{bottom:281.919983pt;}
.y3d{bottom:284.479980pt;}
.y14f{bottom:288.159973pt;}
.yd7{bottom:290.559998pt;}
.y135{bottom:291.679993pt;}
.y5a{bottom:292.000000pt;}
.y147{bottom:293.599976pt;}
.yc5{bottom:295.200012pt;}
.yfd{bottom:296.159973pt;}
.y18e{bottom:296.320007pt;}
.y87{bottom:296.960022pt;}
.ya3{bottom:299.840027pt;}
.yb0{bottom:300.159973pt;}
.y160{bottom:302.080017pt;}
.yf1{bottom:302.559998pt;}
.y1c{bottom:302.880005pt;}
.y76{bottom:304.479980pt;}
.y123{bottom:305.760010pt;}
.y18d{bottom:311.679993pt;}
.y3c{bottom:312.000000pt;}
.y14e{bottom:316.960022pt;}
.y134{bottom:317.119995pt;}
.yd6{bottom:318.080017pt;}
.y59{bottom:319.520020pt;}
.y146{bottom:321.280029pt;}
.yc4{bottom:322.719971pt;}
.yfc{bottom:323.679993pt;}
.y86{bottom:324.479980pt;}
.y1b{bottom:325.760010pt;}
.y18c{bottom:326.880005pt;}
.ya2{bottom:327.520020pt;}
.yaf{bottom:327.679993pt;}
.y15f{bottom:329.599976pt;}
.yf0{bottom:330.239990pt;}
.y75{bottom:332.000000pt;}
.y122{bottom:333.280029pt;}
.y3b{bottom:339.520020pt;}
.y18b{bottom:342.239990pt;}
.y133{bottom:342.559998pt;}
.yd5{bottom:345.599976pt;}
.y58{bottom:347.039978pt;}
.y1a{bottom:348.799988pt;}
.yc3{bottom:350.239990pt;}
.yfb{bottom:351.200012pt;}
.y85{bottom:352.000000pt;}
.y145{bottom:353.919983pt;}
.ya1{bottom:355.039978pt;}
.yae{bottom:355.359985pt;}
.y15e{bottom:357.119995pt;}
.y18a{bottom:357.599976pt;}
.yef{bottom:357.760010pt;}
.y74{bottom:359.520020pt;}
.y121{bottom:360.799988pt;}
.y3a{bottom:367.039978pt;}
.y132{bottom:367.840027pt;}
.y19{bottom:371.840027pt;}
.y189{bottom:372.799988pt;}
.yd4{bottom:373.119995pt;}
.y57{bottom:374.559998pt;}
.yc2{bottom:377.919983pt;}
.y84{bottom:379.520020pt;}
.y144{bottom:381.119995pt;}
.yfa{bottom:382.400024pt;}
.ya0{bottom:382.559998pt;}
.yad{bottom:382.880005pt;}
.yee{bottom:385.280029pt;}
.y73{bottom:387.039978pt;}
.y188{bottom:388.000000pt;}
.y120{bottom:388.320007pt;}
.yf9{bottom:389.919983pt;}
.y15d{bottom:392.159973pt;}
.y39{bottom:394.559998pt;}
.y18{bottom:394.719971pt;}
.yd3{bottom:400.640015pt;}
.y56{bottom:402.080017pt;}
.y187{bottom:403.359985pt;}
.yc1{bottom:405.440002pt;}
.y83{bottom:407.200012pt;}
.y9f{bottom:410.080017pt;}
.yac{bottom:410.400024pt;}
.y131{bottom:413.760010pt;}
.y72{bottom:414.719971pt;}
.yeb{bottom:415.520020pt;}
.y11f{bottom:415.840027pt;}
.y17{bottom:417.760010pt;}
.y186{bottom:418.719971pt;}
.y1bb{bottom:419.679993pt;}
.y38{bottom:422.239990pt;}
.y15c{bottom:424.799988pt;}
.yd2{bottom:428.159973pt;}
.y55{bottom:429.760010pt;}
.yc0{bottom:432.960022pt;}
.y185{bottom:433.919983pt;}
.y82{bottom:434.719971pt;}
.y1ba{bottom:435.039978pt;}
.yab{bottom:435.520020pt;}
.y130{bottom:436.799988pt;}
.y9e{bottom:437.599976pt;}
.y16{bottom:440.479980pt;}
.y71{bottom:442.239990pt;}
.y11e{bottom:443.359985pt;}
.y15b{bottom:447.840027pt;}
.y184{bottom:449.280029pt;}
.y37{bottom:449.760010pt;}
.y1b9{bottom:450.400024pt;}
.yd1{bottom:455.840027pt;}
.yaa{bottom:456.640015pt;}
.y54{bottom:457.280029pt;}
.yea{bottom:460.000000pt;}
.ybf{bottom:460.479980pt;}
.y9c{bottom:461.599976pt;}
.y81{bottom:462.239990pt;}
.y15{bottom:463.520020pt;}
.y183{bottom:464.640015pt;}
.y9b{bottom:465.119995pt;}
.y1b8{bottom:465.599976pt;}
.y12f{bottom:467.200012pt;}
.y15a{bottom:468.960022pt;}
.y70{bottom:469.760010pt;}
.y11d{bottom:470.880005pt;}
.y108{bottom:474.719971pt;}
.y36{bottom:477.280029pt;}
.ye9{bottom:477.919983pt;}
.y182{bottom:480.000000pt;}
.y1b7{bottom:480.799988pt;}
.yd0{bottom:483.359985pt;}
.y53{bottom:484.799988pt;}
.y14{bottom:486.559998pt;}
.ybe{bottom:488.000000pt;}
.ye6{bottom:489.280029pt;}
.y80{bottom:489.760010pt;}
.y12e{bottom:490.239990pt;}
.y9a{bottom:492.640015pt;}
.ye8{bottom:492.960022pt;}
.y181{bottom:495.200012pt;}
.y1b6{bottom:496.159973pt;}
.y6f{bottom:497.280029pt;}
.y107{bottom:497.599976pt;}
.y11c{bottom:498.400024pt;}
.y35{bottom:504.799988pt;}
.y13{bottom:509.440002pt;}
.y180{bottom:510.559998pt;}
.ycf{bottom:510.880005pt;}
.y1b5{bottom:511.520020pt;}
.y52{bottom:512.320007pt;}
.y12d{bottom:513.280029pt;}
.ye5{bottom:513.919983pt;}
.ybd{bottom:515.520020pt;}
.y7f{bottom:517.280029pt;}
.ye1{bottom:518.239990pt;}
.y106{bottom:520.640015pt;}
.y6e{bottom:524.799988pt;}
.y17f{bottom:525.760010pt;}
.y11b{bottom:525.919983pt;}
.y1b4{bottom:526.880005pt;}
.ye2{bottom:530.719971pt;}
.y34{bottom:532.320007pt;}
.y12{bottom:532.479980pt;}
.ye3{bottom:532.960022pt;}
.y99{bottom:536.479980pt;}
.y51{bottom:539.840027pt;}
.y17e{bottom:541.119995pt;}
.y12c{bottom:541.760010pt;}
.y1b3{bottom:542.080017pt;}
.ybc{bottom:543.039978pt;}
.yce{bottom:543.520020pt;}
.y7e{bottom:544.799988pt;}
.y98{bottom:545.920013pt;}
.y105{bottom:549.119995pt;}
.y6d{bottom:552.320007pt;}
.y11a{bottom:553.600006pt;}
.y11{bottom:555.359985pt;}
.y17d{bottom:556.320007pt;}
.y1b2{bottom:557.440002pt;}
.y33{bottom:559.839996pt;}
.ye0{bottom:560.640015pt;}
.ycd{bottom:564.799988pt;}
.y50{bottom:567.359985pt;}
.ybb{bottom:570.720001pt;}
.y17c{bottom:571.679993pt;}
.y7d{bottom:572.320007pt;}
.y1b1{bottom:572.799988pt;}
.y97{bottom:577.920013pt;}
.y10{bottom:578.399994pt;}
.y6c{bottom:579.839996pt;}
.y119{bottom:581.119995pt;}
.y17b{bottom:587.040009pt;}
.y32{bottom:587.359985pt;}
.y1b0{bottom:588.000000pt;}
.ydf{bottom:588.480011pt;}
.y4f{bottom:594.880005pt;}
.y7c{bottom:599.839996pt;}
.yf{bottom:601.119995pt;}
.y17a{bottom:602.239990pt;}
.yba{bottom:603.359985pt;}
.y96{bottom:605.600006pt;}
.y6b{bottom:607.359985pt;}
.y118{bottom:608.640015pt;}
.yde{bottom:611.839996pt;}
.y31{bottom:614.880005pt;}
.y179{bottom:617.600006pt;}
.y1af{bottom:618.559998pt;}
.y4e{bottom:622.399994pt;}
.ye{bottom:624.160004pt;}
.yb9{bottom:624.480011pt;}
.y178{bottom:632.959991pt;}
.y95{bottom:633.119995pt;}
.y1ae{bottom:633.920013pt;}
.y6a{bottom:634.880005pt;}
.y117{bottom:636.160004pt;}
.y30{bottom:642.399994pt;}
.yd{bottom:647.200012pt;}
.y177{bottom:648.320007pt;}
.y1ad{bottom:649.119995pt;}
.y4d{bottom:649.920013pt;}
.y94{bottom:660.640015pt;}
.y69{bottom:662.559998pt;}
.y176{bottom:663.519989pt;}
.y116{bottom:663.679993pt;}
.y1ac{bottom:664.480011pt;}
.ya9{bottom:668.799988pt;}
.y2f{bottom:670.079987pt;}
.yc{bottom:677.600006pt;}
.y175{bottom:678.720001pt;}
.y1ab{bottom:679.839996pt;}
.y93{bottom:688.160004pt;}
.y68{bottom:690.079987pt;}
.y115{bottom:691.200012pt;}
.ya8{bottom:691.839996pt;}
.y174{bottom:694.079987pt;}
.y1aa{bottom:695.200012pt;}
.y2e{bottom:697.600006pt;}
.y4c{bottom:705.119995pt;}
.y173{bottom:709.440002pt;}
.y1a9{bottom:710.399994pt;}
.yb{bottom:712.480011pt;}
.y92{bottom:715.679993pt;}
.y67{bottom:717.600006pt;}
.y114{bottom:718.720001pt;}
.ya7{bottom:720.640015pt;}
.y2d{bottom:725.119995pt;}
.y1a8{bottom:725.760010pt;}
.y4b{bottom:732.640015pt;}
.y1a7{bottom:741.119995pt;}
.y172{bottom:742.079987pt;}
.ya{bottom:742.880005pt;}
.y91{bottom:743.200012pt;}
.y66{bottom:745.119995pt;}
.y113{bottom:746.399994pt;}
.y2c{bottom:752.640015pt;}
.y1a6{bottom:756.320007pt;}
.y4a{bottom:760.160004pt;}
.y90{bottom:768.480011pt;}
.y1a5{bottom:771.519989pt;}
.y65{bottom:772.640015pt;}
.y9{bottom:773.440002pt;}
.y171{bottom:774.880005pt;}
.y155{bottom:777.600006pt;}
.y112{bottom:778.880005pt;}
.y2b{bottom:780.160004pt;}
.y1a4{bottom:786.880005pt;}
.y49{bottom:787.679993pt;}
.y8f{bottom:789.600006pt;}
.y170{bottom:797.920013pt;}
.y8{bottom:799.519989pt;}
.y64{bottom:800.160004pt;}
.y111{bottom:801.440002pt;}
.y1a3{bottom:802.240005pt;}
.y2a{bottom:807.679993pt;}
.y48{bottom:815.199997pt;}
.y1a2{bottom:817.440002pt;}
.y16f{bottom:820.800003pt;}
.y7{bottom:826.720001pt;}
.y63{bottom:827.679993pt;}
.y110{bottom:829.119995pt;}
.y1a1{bottom:832.800003pt;}
.y29{bottom:835.199997pt;}
.y47{bottom:842.720001pt;}
.y16e{bottom:843.839996pt;}
.y1a0{bottom:848.160004pt;}
.y6{bottom:855.199997pt;}
.y10f{bottom:856.639999pt;}
.y28{bottom:862.720001pt;}
.y19f{bottom:863.520004pt;}
.y16d{bottom:866.720001pt;}
.y46{bottom:870.240005pt;}
.y19e{bottom:878.720001pt;}
.y5{bottom:882.720001pt;}
.y10e{bottom:884.160004pt;}
.y27{bottom:890.240005pt;}
.y19d{bottom:894.080002pt;}
.y45{bottom:897.759995pt;}
.y16c{bottom:899.360001pt;}
.y10d{bottom:909.279999pt;}
.y4{bottom:917.759995pt;}
.y19c{bottom:924.479996pt;}
.y44{bottom:925.279999pt;}
.y10c{bottom:932.160004pt;}
.y19b{bottom:939.839996pt;}
.y3{bottom:945.440002pt;}
.y26{bottom:952.959999pt;}
.yb8{bottom:955.199997pt;}
.h23{height:4.799987pt;}
.h1a{height:8.320007pt;}
.h1d{height:8.959961pt;}
.h22{height:9.119995pt;}
.h21{height:9.279968pt;}
.h25{height:9.440002pt;}
.h15{height:15.680053pt;}
.h24{height:18.360384pt;}
.h1f{height:18.434269pt;}
.h1b{height:21.945552pt;}
.ha{height:24.312500pt;}
.h5{height:26.091896pt;}
.h1c{height:29.289122pt;}
.h1e{height:29.406986pt;}
.h7{height:32.290685pt;}
.h19{height:32.918211pt;}
.h20{height:33.247074pt;}
.h16{height:38.017114pt;}
.h2a{height:40.014717pt;}
.h6{height:40.104338pt;}
.h14{height:44.063194pt;}
.h9{height:49.570713pt;}
.h18{height:50.170643pt;}
.h8{height:51.030823pt;}
.h1{height:54.945688pt;}
.hb{height:59.723487pt;}
.h26{height:59.854557pt;}
.hf{height:59.854561pt;}
.he{height:59.854681pt;}
.h3{height:59.854685pt;}
.h10{height:59.854713pt;}
.hc{height:59.854741pt;}
.h4{height:59.854745pt;}
.hd{height:59.854805pt;}
.h17{height:60.494697pt;}
.h29{height:60.494701pt;}
.h2{height:61.482647pt;}
.h12{height:62.676404pt;}
.h28{height:89.803323pt;}
.h2d{height:89.803563pt;}
.h2b{height:96.255617pt;}
.h11{height:96.895633pt;}
.h13{height:97.483619pt;}
.h27{height:98.175781pt;}
.h2c{height:126.335693pt;}
.h0{height:1056.000000pt;}
.w18{width:2.879990pt;}
.w17{width:2.880005pt;}
.wc{width:3.199982pt;}
.w16{width:3.199997pt;}
.wf{width:3.200012pt;}
.w8{width:3.359985pt;}
.w4{width:3.359986pt;}
.wd{width:3.360015pt;}
.w6{width:3.360016pt;}
.we{width:5.599975pt;}
.w10{width:5.599976pt;}
.w7{width:5.600006pt;}
.wa{width:5.600007pt;}
.w2{width:5.920013pt;}
.w14{width:7.040009pt;}
.w5{width:7.359985pt;}
.w11{width:7.359986pt;}
.w9{width:7.360016pt;}
.w15{width:7.520004pt;}
.w3{width:8.480041pt;}
.w1{width:10.080017pt;}
.w12{width:13.599976pt;}
.wb{width:13.600006pt;}
.w13{width:38.080002pt;}
.w19{width:112.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:10.400000pt;}
.x2{left:123.360001pt;}
.x5c{left:125.919998pt;}
.x5{left:129.440002pt;}
.x7{left:130.399994pt;}
.x65{left:132.639999pt;}
.x17{left:135.839996pt;}
.x3{left:136.960007pt;}
.x9{left:141.119995pt;}
.x5e{left:142.080002pt;}
.xa{left:143.360001pt;}
.x58{left:144.320007pt;}
.x1c{left:146.240005pt;}
.xc{left:150.080002pt;}
.x20{left:159.520004pt;}
.x69{left:163.520004pt;}
.x4c{left:174.399994pt;}
.x5f{left:187.199997pt;}
.x21{left:197.440002pt;}
.xe{left:202.720001pt;}
.x4d{left:212.479996pt;}
.x4e{left:217.919998pt;}
.x4f{left:224.800003pt;}
.x50{left:232.000000pt;}
.x1e{left:233.279999pt;}
.x51{left:235.039993pt;}
.x52{left:237.919998pt;}
.x53{left:243.520004pt;}
.x54{left:246.399994pt;}
.x68{left:253.759995pt;}
.x66{left:256.000000pt;}
.x6{left:260.000000pt;}
.x18{left:271.839996pt;}
.x19{left:276.640015pt;}
.x27{left:282.720001pt;}
.x26{left:286.239990pt;}
.x28{left:288.640015pt;}
.x29{left:295.839996pt;}
.x5d{left:297.920013pt;}
.x2a{left:299.040009pt;}
.x12{left:306.239990pt;}
.x22{left:312.000000pt;}
.x13{left:314.399994pt;}
.x63{left:315.679993pt;}
.x23{left:317.920013pt;}
.x2c{left:328.640015pt;}
.x2b{left:331.200012pt;}
.x2d{left:334.399994pt;}
.x4{left:337.920013pt;}
.x2e{left:341.760010pt;}
.x8{left:343.519989pt;}
.x2f{left:344.959991pt;}
.xf{left:346.880005pt;}
.x55{left:358.239990pt;}
.x30{left:368.000000pt;}
.x31{left:371.040009pt;}
.x10{left:377.279999pt;}
.x60{left:379.359985pt;}
.x32{left:384.480011pt;}
.x33{left:387.679993pt;}
.x5a{left:393.440002pt;}
.x16{left:400.480011pt;}
.x1{left:404.160004pt;}
.x56{left:406.239990pt;}
.x1a{left:407.519989pt;}
.x35{left:413.440002pt;}
.x34{left:416.959991pt;}
.x36{left:419.359985pt;}
.x37{left:426.559998pt;}
.x38{left:429.760010pt;}
.x11{left:438.720001pt;}
.x5b{left:447.839996pt;}
.x3a{left:456.000000pt;}
.x39{left:457.440002pt;}
.x3b{left:459.359985pt;}
.x3c{left:472.799988pt;}
.x3d{left:476.000000pt;}
.x62{left:488.640015pt;}
.x61{left:490.399994pt;}
.x3f{left:499.839996pt;}
.x3e{left:503.200012pt;}
.x40{left:505.760010pt;}
.x41{left:512.960022pt;}
.x42{left:516.320007pt;}
.x64{left:524.479980pt;}
.x24{left:545.919983pt;}
.x44{left:550.400024pt;}
.x43{left:552.960022pt;}
.x25{left:554.400024pt;}
.x45{left:556.320007pt;}
.x46{left:563.520020pt;}
.x47{left:566.880005pt;}
.xd{left:573.440002pt;}
.x1d{left:602.239990pt;}
.x1b{left:603.200012pt;}
.x48{left:608.320007pt;}
.x49{left:611.200012pt;}
.x57{left:619.679993pt;}
.x1f{left:620.960022pt;}
.x4a{left:624.799988pt;}
.x4b{left:627.840027pt;}
.x67{left:631.200012pt;}
.x59{left:642.559998pt;}
.x14{left:677.919983pt;}
.x15{left:691.840027pt;}
}




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