
    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_50a1facbbbc1463d62a129fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_32c4449a5c0caf79b6914603.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f21ca44b36c42808313e2fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_55151fb5fac0d647b503ca76.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_376f98b58a9f26fd9f881e2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e2f5a2fc8e20b52ce326c037.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b8bb2ad79ad84fbbaa0f2e40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3eda838f831d19a517508396.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-5.753088px;}
.ls25{letter-spacing:-3.668544px;}
.ls49{letter-spacing:-2.312640px;}
.ls4a{letter-spacing:-2.236608px;}
.ls27{letter-spacing:-1.406592px;}
.ls47{letter-spacing:-1.368576px;}
.ls48{letter-spacing:-1.324224px;}
.ls29{letter-spacing:-0.982080px;}
.ls32{letter-spacing:-0.411264px;}
.ls42{letter-spacing:-0.393120px;}
.ls3d{letter-spacing:-0.350784px;}
.ls20{letter-spacing:-0.342144px;}
.ls45{letter-spacing:-0.338688px;}
.ls3c{letter-spacing:-0.332640px;}
.ls24{letter-spacing:-0.310464px;}
.ls3e{letter-spacing:-0.308448px;}
.ls2c{letter-spacing:-0.302400px;}
.ls12{letter-spacing:-0.297792px;}
.ls3f{letter-spacing:-0.296352px;}
.ls34{letter-spacing:-0.278208px;}
.ls30{letter-spacing:-0.272160px;}
.ls16{letter-spacing:-0.266112px;}
.ls3b{letter-spacing:-0.260064px;}
.ls35{letter-spacing:-0.254016px;}
.ls26{letter-spacing:-0.253440px;}
.ls41{letter-spacing:-0.247968px;}
.ls2d{letter-spacing:-0.241920px;}
.ls46{letter-spacing:-0.235872px;}
.lsb{letter-spacing:-0.234432px;}
.ls2f{letter-spacing:-0.229824px;}
.ls2a{letter-spacing:-0.228096px;}
.lsc{letter-spacing:-0.221760px;}
.ls36{letter-spacing:-0.217728px;}
.ls14{letter-spacing:-0.215424px;}
.ls33{letter-spacing:-0.211680px;}
.lsa{letter-spacing:-0.209088px;}
.ls21{letter-spacing:-0.202752px;}
.ls6{letter-spacing:-0.196416px;}
.ls2e{letter-spacing:-0.193536px;}
.ls5{letter-spacing:-0.190080px;}
.ls3a{letter-spacing:-0.187488px;}
.ls10{letter-spacing:-0.183744px;}
.ls37{letter-spacing:-0.181440px;}
.ls9{letter-spacing:-0.177408px;}
.ls40{letter-spacing:-0.175392px;}
.lse{letter-spacing:-0.171072px;}
.ls7{letter-spacing:-0.164736px;}
.ls31{letter-spacing:-0.163296px;}
.ls1c{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.152064px;}
.ls11{letter-spacing:-0.145728px;}
.ls3{letter-spacing:-0.133056px;}
.ls17{letter-spacing:-0.126720px;}
.ls39{letter-spacing:-0.120960px;}
.lsd{letter-spacing:-0.120384px;}
.ls2b{letter-spacing:-0.102816px;}
.lsf{letter-spacing:-0.101376px;}
.ls44{letter-spacing:-0.096768px;}
.ls13{letter-spacing:-0.095040px;}
.ls38{letter-spacing:-0.078624px;}
.ls4e{letter-spacing:-0.076032px;}
.ls1e{letter-spacing:-0.069696px;}
.ls1d{letter-spacing:-0.063360px;}
.ls18{letter-spacing:-0.050688px;}
.ls4{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.038880px;}
.ls56{letter-spacing:0.242352px;}
.ls58{letter-spacing:0.261360px;}
.ls57{letter-spacing:0.266112px;}
.ls8{letter-spacing:0.267264px;}
.ls55{letter-spacing:0.327888px;}
.ls6d{letter-spacing:0.381600px;}
.ls5f{letter-spacing:0.509760px;}
.ls6b{letter-spacing:0.601920px;}
.ls52{letter-spacing:0.819360px;}
.ls59{letter-spacing:1.280160px;}
.ls65{letter-spacing:1.565280px;}
.ls67{letter-spacing:1.620000px;}
.ls61{letter-spacing:1.647360px;}
.ls69{letter-spacing:1.776960px;}
.ls19{letter-spacing:2.343312px;}
.ls43{letter-spacing:2.727072px;}
.ls5b{letter-spacing:2.887200px;}
.ls22{letter-spacing:2.943360px;}
.ls51{letter-spacing:3.114720px;}
.ls1a{letter-spacing:3.242592px;}
.ls54{letter-spacing:3.335040px;}
.ls4b{letter-spacing:3.362400px;}
.ls6c{letter-spacing:3.898080px;}
.ls50{letter-spacing:3.996000px;}
.ls4c{letter-spacing:4.383792px;}
.ls5c{letter-spacing:4.674240px;}
.ls53{letter-spacing:4.802688px;}
.ls64{letter-spacing:4.963680px;}
.ls23{letter-spacing:5.921280px;}
.ls2{letter-spacing:6.015744px;}
.ls1f{letter-spacing:6.163200px;}
.ls68{letter-spacing:6.325920px;}
.ls66{letter-spacing:6.694560px;}
.ls6a{letter-spacing:7.335360px;}
.ls1b{letter-spacing:8.716752px;}
.ls5a{letter-spacing:10.051344px;}
.ls6e{letter-spacing:11.623680px;}
.ls4d{letter-spacing:12.031776px;}
.ls63{letter-spacing:13.068000px;}
.ls6f{letter-spacing:13.646880px;}
.ls5d{letter-spacing:14.328000px;}
.ls4f{letter-spacing:19.360368px;}
.ls62{letter-spacing:20.018880px;}
.ls60{letter-spacing:36.992160px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.ws9{word-spacing:-14.249664px;}
.ws8{word-spacing:-14.224320px;}
.wsb{word-spacing:-14.198976px;}
.ws4{word-spacing:-14.186304px;}
.ws7{word-spacing:-14.173632px;}
.ws2{word-spacing:-14.154624px;}
.ws5{word-spacing:-14.148288px;}
.ws0{word-spacing:-14.129280px;}
.ws2c{word-spacing:-14.122944px;}
.ws2a{word-spacing:-14.116608px;}
.ws3{word-spacing:-14.097600px;}
.wse{word-spacing:-14.091264px;}
.ws29{word-spacing:-14.084928px;}
.ws28{word-spacing:-14.053248px;}
.ws1a{word-spacing:-13.668480px;}
.ws21{word-spacing:-13.589856px;}
.ws1c{word-spacing:-13.547520px;}
.ws15{word-spacing:-13.535424px;}
.ws22{word-spacing:-13.505184px;}
.ws18{word-spacing:-13.487040px;}
.ws1b{word-spacing:-13.480992px;}
.ws11{word-spacing:-13.474944px;}
.ws14{word-spacing:-13.456800px;}
.ws17{word-spacing:-13.450752px;}
.ws10{word-spacing:-13.438656px;}
.ws25{word-spacing:-13.432608px;}
.wsf{word-spacing:-13.426560px;}
.ws16{word-spacing:-13.414464px;}
.ws1d{word-spacing:-13.408416px;}
.ws12{word-spacing:-13.396320px;}
.ws20{word-spacing:-13.390272px;}
.ws1f{word-spacing:-13.372128px;}
.ws19{word-spacing:-13.366080px;}
.ws26{word-spacing:-13.360032px;}
.wsd{word-spacing:-13.337280px;}
.ws1e{word-spacing:-13.335840px;}
.ws24{word-spacing:-13.329792px;}
.ws23{word-spacing:-13.275360px;}
.ws13{word-spacing:-13.257216px;}
.wsc{word-spacing:-12.912768px;}
.ws27{word-spacing:-12.006720px;}
.ws2b{word-spacing:-11.067408px;}
.wsa{word-spacing:-10.650816px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-4.181760px;}
._9{margin-left:-2.597760px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._3{width:2.027520px;}
._6{width:3.294720px;}
._4{width:4.435200px;}
._5{width:6.399360px;}
._a{width:7.856640px;}
._b{width:9.006336px;}
._e{width:10.172448px;}
._7{width:11.468160px;}
._8{width:12.735360px;}
._2f{width:14.454720px;}
._d{width:15.776640px;}
._18{width:16.792128px;}
._16{width:17.930880px;}
._f{width:19.198080px;}
._10{width:20.655360px;}
._1c{width:22.014720px;}
._48{width:23.074560px;}
._1e{width:24.192000px;}
._33{width:25.885440px;}
._2d{width:27.820800px;}
._13{width:29.082240px;}
._1a{width:31.207680px;}
._36{width:33.687360px;}
._4d{width:36.290880px;}
._2e{width:38.283840px;}
._12{width:40.233600px;}
._26{width:42.154560px;}
._30{width:43.303680px;}
._32{width:44.997120px;}
._28{width:46.932480px;}
._25{width:49.334976px;}
._4a{width:51.258240px;}
._24{width:53.101440px;}
._3b{width:54.794880px;}
._22{width:57.153600px;}
._20{width:58.423680px;}
._21{width:59.814720px;}
._43{width:61.992000px;}
._37{width:65.741760px;}
._2a{width:67.616640px;}
._15{width:71.660160px;}
._49{width:73.751040px;}
._47{width:75.651840px;}
._1b{width:76.809600px;}
._3a{width:78.986880px;}
._3e{width:80.136000px;}
._35{width:82.569600px;}
._11{width:85.227984px;}
._1d{width:88.058880px;}
._40{width:90.599040px;}
._14{width:101.502720px;}
._38{width:104.811840px;}
._4b{width:105.874560px;}
._17{width:107.141760px;}
._4e{width:108.915840px;}
._50{width:117.713376px;}
._4f{width:118.736640px;}
._44{width:125.979840px;}
._29{width:127.552320px;}
._1f{width:129.669120px;}
._2b{width:136.866240px;}
._3d{width:138.680640px;}
._45{width:142.732800px;}
._2c{width:145.031040px;}
._34{width:146.240640px;}
._39{width:151.502400px;}
._19{width:155.252160px;}
._41{width:159.304320px;}
._4c{width:163.643616px;}
._31{width:164.687040px;}
._42{width:168.013440px;}
._3f{width:180.351360px;}
._23{width:185.371200px;}
._27{width:201.156480px;}
._3c{width:239.863680px;}
._46{width:2011.730544px;}
._1{width:2478.560832px;}
.fc7{color:rgb(26,37,76);}
.fc6{color:rgb(0,29,53);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc9{color:rgb(2,114,177);}
.fc8{color:rgb(85,85,85);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:4.140000px;}
.ye6{bottom:4.260000px;}
.y112{bottom:4.320000px;}
.y94{bottom:4.440000px;}
.y9f{bottom:4.500000px;}
.yf9{bottom:4.560000px;}
.y84{bottom:4.740000px;}
.y7f{bottom:4.800000px;}
.ydc{bottom:4.860000px;}
.y79{bottom:4.920000px;}
.y75{bottom:5.040000px;}
.y9d{bottom:5.160000px;}
.y71{bottom:5.220000px;}
.y11d{bottom:5.280000px;}
.ycb{bottom:5.340000px;}
.y82{bottom:5.400000px;}
.y7d{bottom:5.460000px;}
.ya7{bottom:5.520000px;}
.y99{bottom:5.700000px;}
.y7b{bottom:5.760000px;}
.y96{bottom:5.940000px;}
.ya5{bottom:6.180000px;}
.yc5{bottom:22.500000px;}
.y10a{bottom:22.560000px;}
.ye5{bottom:22.620000px;}
.y111{bottom:22.680000px;}
.yf1{bottom:22.800000px;}
.ydb{bottom:22.860000px;}
.yf8{bottom:22.920000px;}
.yff{bottom:23.040000px;}
.yd4{bottom:23.100000px;}
.yc1{bottom:23.160000px;}
.yca{bottom:23.340000px;}
.y11c{bottom:23.640000px;}
.ybc{bottom:23.820000px;}
.yee{bottom:23.880000px;}
.y78{bottom:24.000000px;}
.y9c{bottom:24.240000px;}
.y74{bottom:24.480000px;}
.y98{bottom:24.780000px;}
.ya4{bottom:25.260000px;}
.ye4{bottom:40.620000px;}
.y107{bottom:40.800000px;}
.yc4{bottom:40.860000px;}
.y109{bottom:40.920000px;}
.y110{bottom:41.040000px;}
.yd3{bottom:41.100000px;}
.yc0{bottom:41.160000px;}
.yda{bottom:41.220000px;}
.yf7{bottom:41.280000px;}
.yfe{bottom:41.400000px;}
.yc9{bottom:41.700000px;}
.y11b{bottom:42.000000px;}
.ybb{bottom:42.180000px;}
.yed{bottom:42.240000px;}
.ya1{bottom:43.200000px;}
.y77{bottom:43.440000px;}
.y73{bottom:43.560000px;}
.ya3{bottom:44.700000px;}
.y158{bottom:47.520000px;}
.y152{bottom:53.280000px;}
.y2{bottom:58.320000px;}
.ye3{bottom:58.980000px;}
.y106{bottom:59.160000px;}
.yc3{bottom:59.220000px;}
.yf6{bottom:59.280000px;}
.y10f{bottom:59.400000px;}
.yd2{bottom:59.460000px;}
.ybf{bottom:59.520000px;}
.yd9{bottom:59.580000px;}
.yfd{bottom:59.760000px;}
.yc8{bottom:60.060000px;}
.yec{bottom:60.240000px;}
.y11a{bottom:60.360000px;}
.y114{bottom:60.600000px;}
.y157{bottom:62.640000px;}
.y81{bottom:63.000000px;}
.ye2{bottom:77.340000px;}
.y105{bottom:77.520000px;}
.yf5{bottom:77.640000px;}
.y10e{bottom:77.760000px;}
.yd1{bottom:77.820000px;}
.ybe{bottom:77.880000px;}
.yd8{bottom:77.940000px;}
.yfc{bottom:78.120000px;}
.y119{bottom:78.360000px;}
.yeb{bottom:78.600000px;}
.yef{bottom:85.500000px;}
.y37{bottom:93.960000px;}
.ye1{bottom:95.700000px;}
.y104{bottom:95.880000px;}
.yf4{bottom:96.000000px;}
.y10d{bottom:96.120000px;}
.yd0{bottom:96.180000px;}
.yd7{bottom:96.300000px;}
.yfb{bottom:96.480000px;}
.y118{bottom:96.720000px;}
.yea{bottom:96.960000px;}
.y72{bottom:99.000000px;}
.y13c{bottom:103.320000px;}
.y6f{bottom:105.480000px;}
.y125{bottom:106.200000px;}
.y156{bottom:109.080000px;}
.y36{bottom:113.400000px;}
.yb9{bottom:113.760000px;}
.ye0{bottom:114.060000px;}
.y103{bottom:114.240000px;}
.yf3{bottom:114.360000px;}
.y10c{bottom:114.480000px;}
.ycf{bottom:114.540000px;}
.yd6{bottom:114.660000px;}
.y117{bottom:115.080000px;}
.ye9{bottom:115.320000px;}
.y151{bottom:121.680000px;}
.y13b{bottom:122.400000px;}
.y155{bottom:124.560000px;}
.y6e{bottom:124.920000px;}
.y124{bottom:125.280000px;}
.y150{bottom:126.000000px;}
.ydf{bottom:132.420000px;}
.y35{bottom:132.480000px;}
.y102{bottom:132.600000px;}
.yb8{bottom:132.840000px;}
.yce{bottom:132.900000px;}
.y116{bottom:133.440000px;}
.ye8{bottom:133.680000px;}
.y154{bottom:137.520000px;}
.y13a{bottom:141.840000px;}
.y6d{bottom:144.000000px;}
.y123{bottom:144.720000px;}
.y14f{bottom:145.440000px;}
.yde{bottom:150.780000px;}
.y101{bottom:150.960000px;}
.ycd{bottom:151.260000px;}
.y34{bottom:151.560000px;}
.yb7{bottom:151.920000px;}
.y70{bottom:157.500000px;}
.y139{bottom:160.920000px;}
.y6c{bottom:163.440000px;}
.y122{bottom:163.800000px;}
.y14e{bottom:164.520000px;}
.y33{bottom:171.000000px;}
.yb6{bottom:171.360000px;}
.ye7{bottom:177.000000px;}
.y138{bottom:180.360000px;}
.y6b{bottom:182.520000px;}
.y121{bottom:183.240000px;}
.y14d{bottom:183.600000px;}
.y153{bottom:184.320000px;}
.y32{bottom:190.080000px;}
.yb5{bottom:190.440000px;}
.y137{bottom:199.440000px;}
.y6a{bottom:201.600000px;}
.y120{bottom:202.320000px;}
.y14c{bottom:203.040000px;}
.y31{bottom:209.520000px;}
.yb4{bottom:209.880000px;}
.y136{bottom:218.520000px;}
.y69{bottom:221.040000px;}
.y11f{bottom:221.400000px;}
.y14b{bottom:222.120000px;}
.y30{bottom:228.600000px;}
.yb3{bottom:228.960000px;}
.y135{bottom:237.960000px;}
.y68{bottom:240.120000px;}
.y11e{bottom:240.840000px;}
.y14a{bottom:241.560000px;}
.y2f{bottom:247.680000px;}
.yb2{bottom:248.040000px;}
.y115{bottom:255.000000px;}
.y134{bottom:257.040000px;}
.y67{bottom:259.560000px;}
.y149{bottom:260.640000px;}
.y2e{bottom:267.120000px;}
.yb1{bottom:267.480000px;}
.y133{bottom:276.480000px;}
.y66{bottom:278.640000px;}
.y148{bottom:279.720000px;}
.y2d{bottom:286.200000px;}
.yb0{bottom:286.560000px;}
.y132{bottom:295.560000px;}
.y65{bottom:297.720000px;}
.y147{bottom:299.160000px;}
.y2c{bottom:305.640000px;}
.yaf{bottom:306.000000px;}
.y131{bottom:314.640000px;}
.y64{bottom:317.160000px;}
.y146{bottom:318.240000px;}
.y2b{bottom:324.720000px;}
.yae{bottom:325.080000px;}
.ydd{bottom:325.500000px;}
.y130{bottom:334.080000px;}
.y63{bottom:336.240000px;}
.y145{bottom:337.680000px;}
.y2a{bottom:343.800000px;}
.yad{bottom:344.160000px;}
.y12f{bottom:353.160000px;}
.y62{bottom:355.680000px;}
.y144{bottom:356.760000px;}
.y29{bottom:363.240000px;}
.yac{bottom:363.600000px;}
.y12e{bottom:372.600000px;}
.y61{bottom:374.760000px;}
.y143{bottom:375.840000px;}
.y28{bottom:382.320000px;}
.yab{bottom:382.680000px;}
.y12d{bottom:391.680000px;}
.y60{bottom:394.200000px;}
.y142{bottom:395.280000px;}
.y27{bottom:401.760000px;}
.y113{bottom:402.000000px;}
.yaa{bottom:402.120000px;}
.y12c{bottom:410.760000px;}
.y5f{bottom:413.280000px;}
.y141{bottom:414.360000px;}
.y26{bottom:420.840000px;}
.ya9{bottom:421.200000px;}
.y12b{bottom:430.200000px;}
.y5e{bottom:432.360000px;}
.y140{bottom:433.800000px;}
.y25{bottom:440.280000px;}
.y12a{bottom:449.280000px;}
.y5d{bottom:451.800000px;}
.y13f{bottom:452.880000px;}
.y24{bottom:459.360000px;}
.ya8{bottom:459.720000px;}
.y129{bottom:468.720000px;}
.y5c{bottom:470.880000px;}
.y13e{bottom:472.320000px;}
.ya6{bottom:474.000000px;}
.y10b{bottom:477.000000px;}
.y23{bottom:478.440000px;}
.y13d{bottom:487.080000px;}
.y128{bottom:487.800000px;}
.y5b{bottom:490.320000px;}
.yd5{bottom:490.500000px;}
.ya2{bottom:493.500000px;}
.ya0{bottom:495.000000px;}
.y22{bottom:497.880000px;}
.y127{bottom:506.880000px;}
.y5a{bottom:509.400000px;}
.y21{bottom:516.960000px;}
.y126{bottom:521.640000px;}
.y59{bottom:528.480000px;}
.y20{bottom:536.400000px;}
.y58{bottom:547.920000px;}
.y9e{bottom:553.500000px;}
.y1f{bottom:555.480000px;}
.y57{bottom:567.000000px;}
.y9b{bottom:573.000000px;}
.y1e{bottom:574.560000px;}
.y56{bottom:586.440000px;}
.y1d{bottom:594.000000px;}
.y55{bottom:605.520000px;}
.y108{bottom:606.000000px;}
.y9a{bottom:612.000000px;}
.y1c{bottom:613.080000px;}
.ycc{bottom:619.500000px;}
.y54{bottom:624.600000px;}
.y97{bottom:631.500000px;}
.y1b{bottom:632.520000px;}
.y53{bottom:644.040000px;}
.y1a{bottom:651.600000px;}
.y52{bottom:663.120000px;}
.y95{bottom:670.500000px;}
.y19{bottom:670.680000px;}
.y93{bottom:672.000000px;}
.y51{bottom:682.560000px;}
.y18{bottom:690.120000px;}
.y92{bottom:696.240000px;}
.y50{bottom:701.640000px;}
.y17{bottom:709.200000px;}
.y91{bottom:715.680000px;}
.y4f{bottom:720.720000px;}
.y16{bottom:728.640000px;}
.y90{bottom:734.760000px;}
.y100{bottom:735.000000px;}
.y4e{bottom:740.160000px;}
.y15{bottom:747.720000px;}
.y8f{bottom:754.200000px;}
.y4d{bottom:759.240000px;}
.y14{bottom:766.800000px;}
.y8e{bottom:773.280000px;}
.y4c{bottom:778.680000px;}
.yc7{bottom:784.500000px;}
.y13{bottom:786.240000px;}
.y8d{bottom:792.360000px;}
.y4b{bottom:797.760000px;}
.y12{bottom:805.320000px;}
.y8c{bottom:811.800000px;}
.y4a{bottom:816.840000px;}
.y11{bottom:824.760000px;}
.y8b{bottom:830.880000px;}
.y49{bottom:836.280000px;}
.y10{bottom:843.840000px;}
.y8a{bottom:850.320000px;}
.y48{bottom:855.360000px;}
.yc2{bottom:859.500000px;}
.yf{bottom:862.920000px;}
.y89{bottom:869.400000px;}
.y47{bottom:874.800000px;}
.ye{bottom:882.360000px;}
.y88{bottom:888.480000px;}
.y46{bottom:893.880000px;}
.yfa{bottom:900.000000px;}
.yd{bottom:901.440000px;}
.y87{bottom:907.920000px;}
.y45{bottom:912.960000px;}
.yc{bottom:920.880000px;}
.y86{bottom:927.000000px;}
.y44{bottom:932.400000px;}
.ybd{bottom:933.000000px;}
.yb{bottom:940.680000px;}
.y85{bottom:946.440000px;}
.y43{bottom:951.480000px;}
.ya{bottom:960.120000px;}
.y83{bottom:961.500000px;}
.y42{bottom:970.920000px;}
.y9{bottom:979.560000px;}
.y80{bottom:981.000000px;}
.y41{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y40{bottom:1009.440000px;}
.yf2{bottom:1011.000000px;}
.yba{bottom:1024.500000px;}
.y7{bottom:1024.920000px;}
.y3f{bottom:1028.520000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y7e{bottom:1059.000000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y7c{bottom:1078.500000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y7a{bottom:1098.000000px;}
.y3{bottom:1103.040000px;}
.y3b{bottom:1105.560000px;}
.y76{bottom:1119.000000px;}
.y3a{bottom:1124.640000px;}
.yf0{bottom:1140.000000px;}
.y39{bottom:1143.720000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h8{height:19.500000px;}
.h6{height:21.000000px;}
.h1b{height:32.484375px;}
.h15{height:37.500000px;}
.hb{height:39.000000px;}
.ha{height:40.500000px;}
.h5{height:43.095938px;}
.h18{height:43.312500px;}
.he{height:43.410938px;}
.h3{height:46.004063px;}
.h1a{height:49.992188px;}
.h2{height:50.242500px;}
.hd{height:57.000000px;}
.h7{height:58.500000px;}
.hc{height:60.000000px;}
.h4{height:61.987500px;}
.h10{height:73.500000px;}
.h11{height:75.000000px;}
.h9{height:78.000000px;}
.hf{height:93.000000px;}
.h16{height:111.000000px;}
.h13{height:129.000000px;}
.h14{height:148.500000px;}
.h17{height:165.000000px;}
.h12{height:166.500000px;}
.h19{height:229.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:33.000000px;}
.w8{width:57.000000px;}
.w6{width:60.000000px;}
.w10{width:66.000000px;}
.wf{width:73.500000px;}
.w7{width:79.500000px;}
.w9{width:81.000000px;}
.we{width:84.000000px;}
.wa{width:96.000000px;}
.w5{width:117.000000px;}
.wb{width:118.500000px;}
.wc{width:120.000000px;}
.w4{width:241.500000px;}
.w2{width:361.500000px;}
.w3{width:363.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:8.099856px;}
.xd{left:9.180000px;}
.x1{left:62.009748px;}
.xe{left:68.092884px;}
.x11{left:72.019800px;}
.x12{left:74.460564px;}
.xa{left:84.959856px;}
.x4{left:106.184700px;}
.x1a{left:118.500000px;}
.x5{left:153.456300px;}
.x3{left:181.064592px;}
.x13{left:202.500000px;}
.x14{left:262.500000px;}
.x6{left:264.711168px;}
.x1b{left:276.000000px;}
.x8{left:298.115820px;}
.xf{left:325.500000px;}
.x15{left:340.500000px;}
.x20{left:369.381450px;}
.x1f{left:382.397700px;}
.x1e{left:394.645200px;}
.x16{left:397.500000px;}
.x2{left:442.885680px;}
.xc{left:445.500000px;}
.x17{left:477.000000px;}
.x21{left:537.899400px;}
.x22{left:544.649400px;}
.x10{left:567.000000px;}
.x18{left:571.500000px;}
.x9{left:613.092960px;}
.x7{left:676.726200px;}
.x19{left:688.500000px;}
.x1c{left:690.000000px;}
.x1d{left:794.504520px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-5.113856pt;}
.ls25{letter-spacing:-3.260928pt;}
.ls49{letter-spacing:-2.055680pt;}
.ls4a{letter-spacing:-1.988096pt;}
.ls27{letter-spacing:-1.250304pt;}
.ls47{letter-spacing:-1.216512pt;}
.ls48{letter-spacing:-1.177088pt;}
.ls29{letter-spacing:-0.872960pt;}
.ls32{letter-spacing:-0.365568pt;}
.ls42{letter-spacing:-0.349440pt;}
.ls3d{letter-spacing:-0.311808pt;}
.ls20{letter-spacing:-0.304128pt;}
.ls45{letter-spacing:-0.301056pt;}
.ls3c{letter-spacing:-0.295680pt;}
.ls24{letter-spacing:-0.275968pt;}
.ls3e{letter-spacing:-0.274176pt;}
.ls2c{letter-spacing:-0.268800pt;}
.ls12{letter-spacing:-0.264704pt;}
.ls3f{letter-spacing:-0.263424pt;}
.ls34{letter-spacing:-0.247296pt;}
.ls30{letter-spacing:-0.241920pt;}
.ls16{letter-spacing:-0.236544pt;}
.ls3b{letter-spacing:-0.231168pt;}
.ls35{letter-spacing:-0.225792pt;}
.ls26{letter-spacing:-0.225280pt;}
.ls41{letter-spacing:-0.220416pt;}
.ls2d{letter-spacing:-0.215040pt;}
.ls46{letter-spacing:-0.209664pt;}
.lsb{letter-spacing:-0.208384pt;}
.ls2f{letter-spacing:-0.204288pt;}
.ls2a{letter-spacing:-0.202752pt;}
.lsc{letter-spacing:-0.197120pt;}
.ls36{letter-spacing:-0.193536pt;}
.ls14{letter-spacing:-0.191488pt;}
.ls33{letter-spacing:-0.188160pt;}
.lsa{letter-spacing:-0.185856pt;}
.ls21{letter-spacing:-0.180224pt;}
.ls6{letter-spacing:-0.174592pt;}
.ls2e{letter-spacing:-0.172032pt;}
.ls5{letter-spacing:-0.168960pt;}
.ls3a{letter-spacing:-0.166656pt;}
.ls10{letter-spacing:-0.163328pt;}
.ls37{letter-spacing:-0.161280pt;}
.ls9{letter-spacing:-0.157696pt;}
.ls40{letter-spacing:-0.155904pt;}
.lse{letter-spacing:-0.152064pt;}
.ls7{letter-spacing:-0.146432pt;}
.ls31{letter-spacing:-0.145152pt;}
.ls1c{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.135168pt;}
.ls11{letter-spacing:-0.129536pt;}
.ls3{letter-spacing:-0.118272pt;}
.ls17{letter-spacing:-0.112640pt;}
.ls39{letter-spacing:-0.107520pt;}
.lsd{letter-spacing:-0.107008pt;}
.ls2b{letter-spacing:-0.091392pt;}
.lsf{letter-spacing:-0.090112pt;}
.ls44{letter-spacing:-0.086016pt;}
.ls13{letter-spacing:-0.084480pt;}
.ls38{letter-spacing:-0.069888pt;}
.ls4e{letter-spacing:-0.067584pt;}
.ls1e{letter-spacing:-0.061952pt;}
.ls1d{letter-spacing:-0.056320pt;}
.ls18{letter-spacing:-0.045056pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.034560pt;}
.ls56{letter-spacing:0.215424pt;}
.ls58{letter-spacing:0.232320pt;}
.ls57{letter-spacing:0.236544pt;}
.ls8{letter-spacing:0.237568pt;}
.ls55{letter-spacing:0.291456pt;}
.ls6d{letter-spacing:0.339200pt;}
.ls5f{letter-spacing:0.453120pt;}
.ls6b{letter-spacing:0.535040pt;}
.ls52{letter-spacing:0.728320pt;}
.ls59{letter-spacing:1.137920pt;}
.ls65{letter-spacing:1.391360pt;}
.ls67{letter-spacing:1.440000pt;}
.ls61{letter-spacing:1.464320pt;}
.ls69{letter-spacing:1.579520pt;}
.ls19{letter-spacing:2.082944pt;}
.ls43{letter-spacing:2.424064pt;}
.ls5b{letter-spacing:2.566400pt;}
.ls22{letter-spacing:2.616320pt;}
.ls51{letter-spacing:2.768640pt;}
.ls1a{letter-spacing:2.882304pt;}
.ls54{letter-spacing:2.964480pt;}
.ls4b{letter-spacing:2.988800pt;}
.ls6c{letter-spacing:3.464960pt;}
.ls50{letter-spacing:3.552000pt;}
.ls4c{letter-spacing:3.896704pt;}
.ls5c{letter-spacing:4.154880pt;}
.ls53{letter-spacing:4.269056pt;}
.ls64{letter-spacing:4.412160pt;}
.ls23{letter-spacing:5.263360pt;}
.ls2{letter-spacing:5.347328pt;}
.ls1f{letter-spacing:5.478400pt;}
.ls68{letter-spacing:5.623040pt;}
.ls66{letter-spacing:5.950720pt;}
.ls6a{letter-spacing:6.520320pt;}
.ls1b{letter-spacing:7.748224pt;}
.ls5a{letter-spacing:8.934528pt;}
.ls6e{letter-spacing:10.332160pt;}
.ls4d{letter-spacing:10.694912pt;}
.ls63{letter-spacing:11.616000pt;}
.ls6f{letter-spacing:12.130560pt;}
.ls5d{letter-spacing:12.736000pt;}
.ls4f{letter-spacing:17.209216pt;}
.ls62{letter-spacing:17.794560pt;}
.ls60{letter-spacing:32.881920pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws9{word-spacing:-12.666368pt;}
.ws8{word-spacing:-12.643840pt;}
.wsb{word-spacing:-12.621312pt;}
.ws4{word-spacing:-12.610048pt;}
.ws7{word-spacing:-12.598784pt;}
.ws2{word-spacing:-12.581888pt;}
.ws5{word-spacing:-12.576256pt;}
.ws0{word-spacing:-12.559360pt;}
.ws2c{word-spacing:-12.553728pt;}
.ws2a{word-spacing:-12.548096pt;}
.ws3{word-spacing:-12.531200pt;}
.wse{word-spacing:-12.525568pt;}
.ws29{word-spacing:-12.519936pt;}
.ws28{word-spacing:-12.491776pt;}
.ws1a{word-spacing:-12.149760pt;}
.ws21{word-spacing:-12.079872pt;}
.ws1c{word-spacing:-12.042240pt;}
.ws15{word-spacing:-12.031488pt;}
.ws22{word-spacing:-12.004608pt;}
.ws18{word-spacing:-11.988480pt;}
.ws1b{word-spacing:-11.983104pt;}
.ws11{word-spacing:-11.977728pt;}
.ws14{word-spacing:-11.961600pt;}
.ws17{word-spacing:-11.956224pt;}
.ws10{word-spacing:-11.945472pt;}
.ws25{word-spacing:-11.940096pt;}
.wsf{word-spacing:-11.934720pt;}
.ws16{word-spacing:-11.923968pt;}
.ws1d{word-spacing:-11.918592pt;}
.ws12{word-spacing:-11.907840pt;}
.ws20{word-spacing:-11.902464pt;}
.ws1f{word-spacing:-11.886336pt;}
.ws19{word-spacing:-11.880960pt;}
.ws26{word-spacing:-11.875584pt;}
.wsd{word-spacing:-11.855360pt;}
.ws1e{word-spacing:-11.854080pt;}
.ws24{word-spacing:-11.848704pt;}
.ws23{word-spacing:-11.800320pt;}
.ws13{word-spacing:-11.784192pt;}
.wsc{word-spacing:-11.478016pt;}
.ws27{word-spacing:-10.672640pt;}
.ws2b{word-spacing:-9.837696pt;}
.wsa{word-spacing:-9.467392pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-3.717120pt;}
._9{margin-left:-2.309120pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._3{width:1.802240pt;}
._6{width:2.928640pt;}
._4{width:3.942400pt;}
._5{width:5.688320pt;}
._a{width:6.983680pt;}
._b{width:8.005632pt;}
._e{width:9.042176pt;}
._7{width:10.193920pt;}
._8{width:11.320320pt;}
._2f{width:12.848640pt;}
._d{width:14.023680pt;}
._18{width:14.926336pt;}
._16{width:15.938560pt;}
._f{width:17.064960pt;}
._10{width:18.360320pt;}
._1c{width:19.568640pt;}
._48{width:20.510720pt;}
._1e{width:21.504000pt;}
._33{width:23.009280pt;}
._2d{width:24.729600pt;}
._13{width:25.850880pt;}
._1a{width:27.740160pt;}
._36{width:29.944320pt;}
._4d{width:32.258560pt;}
._2e{width:34.030080pt;}
._12{width:35.763200pt;}
._26{width:37.470720pt;}
._30{width:38.492160pt;}
._32{width:39.997440pt;}
._28{width:41.717760pt;}
._25{width:43.853312pt;}
._4a{width:45.562880pt;}
._24{width:47.201280pt;}
._3b{width:48.706560pt;}
._22{width:50.803200pt;}
._20{width:51.932160pt;}
._21{width:53.168640pt;}
._43{width:55.104000pt;}
._37{width:58.437120pt;}
._2a{width:60.103680pt;}
._15{width:63.697920pt;}
._49{width:65.556480pt;}
._47{width:67.246080pt;}
._1b{width:68.275200pt;}
._3a{width:70.210560pt;}
._3e{width:71.232000pt;}
._35{width:73.395200pt;}
._11{width:75.758208pt;}
._1d{width:78.274560pt;}
._40{width:80.532480pt;}
._14{width:90.224640pt;}
._38{width:93.166080pt;}
._4b{width:94.110720pt;}
._17{width:95.237120pt;}
._4e{width:96.814080pt;}
._50{width:104.634112pt;}
._4f{width:105.543680pt;}
._44{width:111.982080pt;}
._29{width:113.379840pt;}
._1f{width:115.261440pt;}
._2b{width:121.658880pt;}
._3d{width:123.271680pt;}
._45{width:126.873600pt;}
._2c{width:128.916480pt;}
._34{width:129.991680pt;}
._39{width:134.668800pt;}
._19{width:138.001920pt;}
._41{width:141.603840pt;}
._4c{width:145.460992pt;}
._31{width:146.388480pt;}
._42{width:149.345280pt;}
._3f{width:160.312320pt;}
._23{width:164.774400pt;}
._27{width:178.805760pt;}
._3c{width:213.212160pt;}
._46{width:1788.204928pt;}
._1{width:2203.165184pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:3.680000pt;}
.ye6{bottom:3.786667pt;}
.y112{bottom:3.840000pt;}
.y94{bottom:3.946667pt;}
.y9f{bottom:4.000000pt;}
.yf9{bottom:4.053333pt;}
.y84{bottom:4.213333pt;}
.y7f{bottom:4.266667pt;}
.ydc{bottom:4.320000pt;}
.y79{bottom:4.373333pt;}
.y75{bottom:4.480000pt;}
.y9d{bottom:4.586667pt;}
.y71{bottom:4.640000pt;}
.y11d{bottom:4.693333pt;}
.ycb{bottom:4.746667pt;}
.y82{bottom:4.800000pt;}
.y7d{bottom:4.853333pt;}
.ya7{bottom:4.906667pt;}
.y99{bottom:5.066667pt;}
.y7b{bottom:5.120000pt;}
.y96{bottom:5.280000pt;}
.ya5{bottom:5.493333pt;}
.yc5{bottom:20.000000pt;}
.y10a{bottom:20.053333pt;}
.ye5{bottom:20.106667pt;}
.y111{bottom:20.160000pt;}
.yf1{bottom:20.266667pt;}
.ydb{bottom:20.320000pt;}
.yf8{bottom:20.373333pt;}
.yff{bottom:20.480000pt;}
.yd4{bottom:20.533333pt;}
.yc1{bottom:20.586667pt;}
.yca{bottom:20.746667pt;}
.y11c{bottom:21.013333pt;}
.ybc{bottom:21.173333pt;}
.yee{bottom:21.226667pt;}
.y78{bottom:21.333333pt;}
.y9c{bottom:21.546667pt;}
.y74{bottom:21.760000pt;}
.y98{bottom:22.026667pt;}
.ya4{bottom:22.453333pt;}
.ye4{bottom:36.106667pt;}
.y107{bottom:36.266667pt;}
.yc4{bottom:36.320000pt;}
.y109{bottom:36.373333pt;}
.y110{bottom:36.480000pt;}
.yd3{bottom:36.533333pt;}
.yc0{bottom:36.586667pt;}
.yda{bottom:36.640000pt;}
.yf7{bottom:36.693333pt;}
.yfe{bottom:36.800000pt;}
.yc9{bottom:37.066667pt;}
.y11b{bottom:37.333333pt;}
.ybb{bottom:37.493333pt;}
.yed{bottom:37.546667pt;}
.ya1{bottom:38.400000pt;}
.y77{bottom:38.613333pt;}
.y73{bottom:38.720000pt;}
.ya3{bottom:39.733333pt;}
.y158{bottom:42.240000pt;}
.y152{bottom:47.360000pt;}
.y2{bottom:51.840000pt;}
.ye3{bottom:52.426667pt;}
.y106{bottom:52.586667pt;}
.yc3{bottom:52.640000pt;}
.yf6{bottom:52.693333pt;}
.y10f{bottom:52.800000pt;}
.yd2{bottom:52.853333pt;}
.ybf{bottom:52.906667pt;}
.yd9{bottom:52.960000pt;}
.yfd{bottom:53.120000pt;}
.yc8{bottom:53.386667pt;}
.yec{bottom:53.546667pt;}
.y11a{bottom:53.653333pt;}
.y114{bottom:53.866667pt;}
.y157{bottom:55.680000pt;}
.y81{bottom:56.000000pt;}
.ye2{bottom:68.746667pt;}
.y105{bottom:68.906667pt;}
.yf5{bottom:69.013333pt;}
.y10e{bottom:69.120000pt;}
.yd1{bottom:69.173333pt;}
.ybe{bottom:69.226667pt;}
.yd8{bottom:69.280000pt;}
.yfc{bottom:69.440000pt;}
.y119{bottom:69.653333pt;}
.yeb{bottom:69.866667pt;}
.yef{bottom:76.000000pt;}
.y37{bottom:83.520000pt;}
.ye1{bottom:85.066667pt;}
.y104{bottom:85.226667pt;}
.yf4{bottom:85.333333pt;}
.y10d{bottom:85.440000pt;}
.yd0{bottom:85.493333pt;}
.yd7{bottom:85.600000pt;}
.yfb{bottom:85.760000pt;}
.y118{bottom:85.973333pt;}
.yea{bottom:86.186667pt;}
.y72{bottom:88.000000pt;}
.y13c{bottom:91.840000pt;}
.y6f{bottom:93.760000pt;}
.y125{bottom:94.400000pt;}
.y156{bottom:96.960000pt;}
.y36{bottom:100.800000pt;}
.yb9{bottom:101.120000pt;}
.ye0{bottom:101.386667pt;}
.y103{bottom:101.546667pt;}
.yf3{bottom:101.653333pt;}
.y10c{bottom:101.760000pt;}
.ycf{bottom:101.813333pt;}
.yd6{bottom:101.920000pt;}
.y117{bottom:102.293333pt;}
.ye9{bottom:102.506667pt;}
.y151{bottom:108.160000pt;}
.y13b{bottom:108.800000pt;}
.y155{bottom:110.720000pt;}
.y6e{bottom:111.040000pt;}
.y124{bottom:111.360000pt;}
.y150{bottom:112.000000pt;}
.ydf{bottom:117.706667pt;}
.y35{bottom:117.760000pt;}
.y102{bottom:117.866667pt;}
.yb8{bottom:118.080000pt;}
.yce{bottom:118.133333pt;}
.y116{bottom:118.613333pt;}
.ye8{bottom:118.826667pt;}
.y154{bottom:122.240000pt;}
.y13a{bottom:126.080000pt;}
.y6d{bottom:128.000000pt;}
.y123{bottom:128.640000pt;}
.y14f{bottom:129.280000pt;}
.yde{bottom:134.026667pt;}
.y101{bottom:134.186667pt;}
.ycd{bottom:134.453333pt;}
.y34{bottom:134.720000pt;}
.yb7{bottom:135.040000pt;}
.y70{bottom:140.000000pt;}
.y139{bottom:143.040000pt;}
.y6c{bottom:145.280000pt;}
.y122{bottom:145.600000pt;}
.y14e{bottom:146.240000pt;}
.y33{bottom:152.000000pt;}
.yb6{bottom:152.320000pt;}
.ye7{bottom:157.333333pt;}
.y138{bottom:160.320000pt;}
.y6b{bottom:162.240000pt;}
.y121{bottom:162.880000pt;}
.y14d{bottom:163.200000pt;}
.y153{bottom:163.840000pt;}
.y32{bottom:168.960000pt;}
.yb5{bottom:169.280000pt;}
.y137{bottom:177.280000pt;}
.y6a{bottom:179.200000pt;}
.y120{bottom:179.840000pt;}
.y14c{bottom:180.480000pt;}
.y31{bottom:186.240000pt;}
.yb4{bottom:186.560000pt;}
.y136{bottom:194.240000pt;}
.y69{bottom:196.480000pt;}
.y11f{bottom:196.800000pt;}
.y14b{bottom:197.440000pt;}
.y30{bottom:203.200000pt;}
.yb3{bottom:203.520000pt;}
.y135{bottom:211.520000pt;}
.y68{bottom:213.440000pt;}
.y11e{bottom:214.080000pt;}
.y14a{bottom:214.720000pt;}
.y2f{bottom:220.160000pt;}
.yb2{bottom:220.480000pt;}
.y115{bottom:226.666667pt;}
.y134{bottom:228.480000pt;}
.y67{bottom:230.720000pt;}
.y149{bottom:231.680000pt;}
.y2e{bottom:237.440000pt;}
.yb1{bottom:237.760000pt;}
.y133{bottom:245.760000pt;}
.y66{bottom:247.680000pt;}
.y148{bottom:248.640000pt;}
.y2d{bottom:254.400000pt;}
.yb0{bottom:254.720000pt;}
.y132{bottom:262.720000pt;}
.y65{bottom:264.640000pt;}
.y147{bottom:265.920000pt;}
.y2c{bottom:271.680000pt;}
.yaf{bottom:272.000000pt;}
.y131{bottom:279.680000pt;}
.y64{bottom:281.920000pt;}
.y146{bottom:282.880000pt;}
.y2b{bottom:288.640000pt;}
.yae{bottom:288.960000pt;}
.ydd{bottom:289.333333pt;}
.y130{bottom:296.960000pt;}
.y63{bottom:298.880000pt;}
.y145{bottom:300.160000pt;}
.y2a{bottom:305.600000pt;}
.yad{bottom:305.920000pt;}
.y12f{bottom:313.920000pt;}
.y62{bottom:316.160000pt;}
.y144{bottom:317.120000pt;}
.y29{bottom:322.880000pt;}
.yac{bottom:323.200000pt;}
.y12e{bottom:331.200000pt;}
.y61{bottom:333.120000pt;}
.y143{bottom:334.080000pt;}
.y28{bottom:339.840000pt;}
.yab{bottom:340.160000pt;}
.y12d{bottom:348.160000pt;}
.y60{bottom:350.400000pt;}
.y142{bottom:351.360000pt;}
.y27{bottom:357.120000pt;}
.y113{bottom:357.333333pt;}
.yaa{bottom:357.440000pt;}
.y12c{bottom:365.120000pt;}
.y5f{bottom:367.360000pt;}
.y141{bottom:368.320000pt;}
.y26{bottom:374.080000pt;}
.ya9{bottom:374.400000pt;}
.y12b{bottom:382.400000pt;}
.y5e{bottom:384.320000pt;}
.y140{bottom:385.600000pt;}
.y25{bottom:391.360000pt;}
.y12a{bottom:399.360000pt;}
.y5d{bottom:401.600000pt;}
.y13f{bottom:402.560000pt;}
.y24{bottom:408.320000pt;}
.ya8{bottom:408.640000pt;}
.y129{bottom:416.640000pt;}
.y5c{bottom:418.560000pt;}
.y13e{bottom:419.840000pt;}
.ya6{bottom:421.333333pt;}
.y10b{bottom:424.000000pt;}
.y23{bottom:425.280000pt;}
.y13d{bottom:432.960000pt;}
.y128{bottom:433.600000pt;}
.y5b{bottom:435.840000pt;}
.yd5{bottom:436.000000pt;}
.ya2{bottom:438.666667pt;}
.ya0{bottom:440.000000pt;}
.y22{bottom:442.560000pt;}
.y127{bottom:450.560000pt;}
.y5a{bottom:452.800000pt;}
.y21{bottom:459.520000pt;}
.y126{bottom:463.680000pt;}
.y59{bottom:469.760000pt;}
.y20{bottom:476.800000pt;}
.y58{bottom:487.040000pt;}
.y9e{bottom:492.000000pt;}
.y1f{bottom:493.760000pt;}
.y57{bottom:504.000000pt;}
.y9b{bottom:509.333333pt;}
.y1e{bottom:510.720000pt;}
.y56{bottom:521.280000pt;}
.y1d{bottom:528.000000pt;}
.y55{bottom:538.240000pt;}
.y108{bottom:538.666667pt;}
.y9a{bottom:544.000000pt;}
.y1c{bottom:544.960000pt;}
.ycc{bottom:550.666667pt;}
.y54{bottom:555.200000pt;}
.y97{bottom:561.333333pt;}
.y1b{bottom:562.240000pt;}
.y53{bottom:572.480000pt;}
.y1a{bottom:579.200000pt;}
.y52{bottom:589.440000pt;}
.y95{bottom:596.000000pt;}
.y19{bottom:596.160000pt;}
.y93{bottom:597.333333pt;}
.y51{bottom:606.720000pt;}
.y18{bottom:613.440000pt;}
.y92{bottom:618.880000pt;}
.y50{bottom:623.680000pt;}
.y17{bottom:630.400000pt;}
.y91{bottom:636.160000pt;}
.y4f{bottom:640.640000pt;}
.y16{bottom:647.680000pt;}
.y90{bottom:653.120000pt;}
.y100{bottom:653.333333pt;}
.y4e{bottom:657.920000pt;}
.y15{bottom:664.640000pt;}
.y8f{bottom:670.400000pt;}
.y4d{bottom:674.880000pt;}
.y14{bottom:681.600000pt;}
.y8e{bottom:687.360000pt;}
.y4c{bottom:692.160000pt;}
.yc7{bottom:697.333333pt;}
.y13{bottom:698.880000pt;}
.y8d{bottom:704.320000pt;}
.y4b{bottom:709.120000pt;}
.y12{bottom:715.840000pt;}
.y8c{bottom:721.600000pt;}
.y4a{bottom:726.080000pt;}
.y11{bottom:733.120000pt;}
.y8b{bottom:738.560000pt;}
.y49{bottom:743.360000pt;}
.y10{bottom:750.080000pt;}
.y8a{bottom:755.840000pt;}
.y48{bottom:760.320000pt;}
.yc2{bottom:764.000000pt;}
.yf{bottom:767.040000pt;}
.y89{bottom:772.800000pt;}
.y47{bottom:777.600000pt;}
.ye{bottom:784.320000pt;}
.y88{bottom:789.760000pt;}
.y46{bottom:794.560000pt;}
.yfa{bottom:800.000000pt;}
.yd{bottom:801.280000pt;}
.y87{bottom:807.040000pt;}
.y45{bottom:811.520000pt;}
.yc{bottom:818.560000pt;}
.y86{bottom:824.000000pt;}
.y44{bottom:828.800000pt;}
.ybd{bottom:829.333333pt;}
.yb{bottom:836.160000pt;}
.y85{bottom:841.280000pt;}
.y43{bottom:845.760000pt;}
.ya{bottom:853.440000pt;}
.y83{bottom:854.666667pt;}
.y42{bottom:863.040000pt;}
.y9{bottom:870.720000pt;}
.y80{bottom:872.000000pt;}
.y41{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y40{bottom:897.280000pt;}
.yf2{bottom:898.666667pt;}
.yba{bottom:910.666667pt;}
.y7{bottom:911.040000pt;}
.y3f{bottom:914.240000pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y7e{bottom:941.333333pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y7c{bottom:958.666667pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y7a{bottom:976.000000pt;}
.y3{bottom:980.480000pt;}
.y3b{bottom:982.720000pt;}
.y76{bottom:994.666667pt;}
.y3a{bottom:999.680000pt;}
.yf0{bottom:1013.333333pt;}
.y39{bottom:1016.640000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h8{height:17.333333pt;}
.h6{height:18.666667pt;}
.h1b{height:28.875000pt;}
.h15{height:33.333333pt;}
.hb{height:34.666667pt;}
.ha{height:36.000000pt;}
.h5{height:38.307500pt;}
.h18{height:38.500000pt;}
.he{height:38.587500pt;}
.h3{height:40.892500pt;}
.h1a{height:44.437500pt;}
.h2{height:44.660000pt;}
.hd{height:50.666667pt;}
.h7{height:52.000000pt;}
.hc{height:53.333333pt;}
.h4{height:55.100000pt;}
.h10{height:65.333333pt;}
.h11{height:66.666667pt;}
.h9{height:69.333333pt;}
.hf{height:82.666667pt;}
.h16{height:98.666667pt;}
.h13{height:114.666667pt;}
.h14{height:132.000000pt;}
.h17{height:146.666667pt;}
.h12{height:148.000000pt;}
.h19{height:203.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:29.333333pt;}
.w8{width:50.666667pt;}
.w6{width:53.333333pt;}
.w10{width:58.666667pt;}
.wf{width:65.333333pt;}
.w7{width:70.666667pt;}
.w9{width:72.000000pt;}
.we{width:74.666667pt;}
.wa{width:85.333333pt;}
.w5{width:104.000000pt;}
.wb{width:105.333333pt;}
.wc{width:106.666667pt;}
.w4{width:214.666667pt;}
.w2{width:321.333333pt;}
.w3{width:322.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:7.199872pt;}
.xd{left:8.160000pt;}
.x1{left:55.119776pt;}
.xe{left:60.527008pt;}
.x11{left:64.017600pt;}
.x12{left:66.187168pt;}
.xa{left:75.519872pt;}
.x4{left:94.386400pt;}
.x1a{left:105.333333pt;}
.x5{left:136.405600pt;}
.x3{left:160.946304pt;}
.x13{left:180.000000pt;}
.x14{left:233.333333pt;}
.x6{left:235.298816pt;}
.x1b{left:245.333333pt;}
.x8{left:264.991840pt;}
.xf{left:289.333333pt;}
.x15{left:302.666667pt;}
.x20{left:328.339067pt;}
.x1f{left:339.909067pt;}
.x1e{left:350.795733pt;}
.x16{left:353.333333pt;}
.x2{left:393.676160pt;}
.xc{left:396.000000pt;}
.x17{left:424.000000pt;}
.x21{left:478.132800pt;}
.x22{left:484.132800pt;}
.x10{left:504.000000pt;}
.x18{left:508.000000pt;}
.x9{left:544.971520pt;}
.x7{left:601.534400pt;}
.x19{left:612.000000pt;}
.x1c{left:613.333333pt;}
.x1d{left:706.226240pt;}
}




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