
    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_3973906716df44789bdca67b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_c88e8f3d098ab7354c4cb959.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_71e77efe9d149454a6eac847.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_552f7157150cad9cd151ff09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dc40283ab06c05de30e922e0.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_5bca6a50b81620e34a561804.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_ca54cb40ef8cd288996ab807.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15e4403a4ed0c40e297a7dd2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m4{transform:matrix(0.000000,-0.249729,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249729,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249729,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v10{vertical-align:-62.340000px;}
.v8{vertical-align:-28.800000px;}
.vb{vertical-align:-26.170680px;}
.v3{vertical-align:-24.000000px;}
.ve{vertical-align:-20.914133px;}
.v2{vertical-align:-19.200000px;}
.v5{vertical-align:-9.540000px;}
.v9{vertical-align:-8.088246px;}
.v4{vertical-align:-4.800000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:4.277778px;}
.va{vertical-align:8.088246px;}
.v7{vertical-align:9.600000px;}
.v1{vertical-align:19.200000px;}
.vd{vertical-align:20.914107px;}
.vc{vertical-align:24.000000px;}
.v6{vertical-align:28.800000px;}
.ls23{letter-spacing:-7.860000px;}
.ls41{letter-spacing:-6.420000px;}
.lsd{letter-spacing:-5.616000px;}
.ls25{letter-spacing:-4.284000px;}
.ls38{letter-spacing:-3.984000px;}
.ls3{letter-spacing:-3.600000px;}
.ls18{letter-spacing:-3.066000px;}
.lsc{letter-spacing:-2.400000px;}
.ls1d{letter-spacing:-1.198021px;}
.ls3b{letter-spacing:-1.128000px;}
.ls6{letter-spacing:-1.038000px;}
.ls10{letter-spacing:-0.816000px;}
.ls22{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.518400px;}
.ls4{letter-spacing:-0.470400px;}
.ls20{letter-spacing:-0.298544px;}
.ls37{letter-spacing:-0.250698px;}
.ls1e{letter-spacing:-0.218463px;}
.ls34{letter-spacing:-0.190510px;}
.ls36{letter-spacing:-0.119380px;}
.ls15{letter-spacing:-0.075000px;}
.ls35{letter-spacing:-0.071130px;}
.ls11{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.084000px;}
.ls7{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.768784px;}
.ls9{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.852000px;}
.lsf{letter-spacing:0.966000px;}
.lsb{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.320000px;}
.ls2f{letter-spacing:1.562400px;}
.ls5{letter-spacing:1.620000px;}
.ls12{letter-spacing:1.632000px;}
.ls29{letter-spacing:1.668000px;}
.ls1b{letter-spacing:1.728000px;}
.ls26{letter-spacing:1.788000px;}
.ls21{letter-spacing:1.848000px;}
.ls1c{letter-spacing:1.908000px;}
.ls2e{letter-spacing:2.340000px;}
.ls1{letter-spacing:2.400000px;}
.ls39{letter-spacing:2.574000px;}
.ls40{letter-spacing:2.580000px;}
.ls16{letter-spacing:3.168000px;}
.ls0{letter-spacing:3.780000px;}
.ls2a{letter-spacing:6.000000px;}
.ls42{letter-spacing:6.180000px;}
.ls2d{letter-spacing:6.487200px;}
.ls28{letter-spacing:10.740000px;}
.ls3c{letter-spacing:10.800000px;}
.ls3e{letter-spacing:10.920000px;}
.ls44{letter-spacing:12.000000px;}
.ls14{letter-spacing:13.552800px;}
.ls19{letter-spacing:15.600000px;}
.ls3f{letter-spacing:15.660000px;}
.ls3a{letter-spacing:15.720000px;}
.ls24{letter-spacing:15.780000px;}
.ls2b{letter-spacing:20.400000px;}
.ls2c{letter-spacing:20.580000px;}
.ls3d{letter-spacing:23.212800px;}
.ls30{letter-spacing:117.756871px;}
.ls32{letter-spacing:140.916560px;}
.ls43{letter-spacing:172.162800px;}
.ls31{letter-spacing:670.695836px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-72.000000px;}
.wsf{word-spacing:-21.168000px;}
.ws18{word-spacing:-20.400000px;}
.ws10{word-spacing:-19.632000px;}
.ws23{word-spacing:-19.200000px;}
.ws9{word-spacing:-18.966000px;}
.ws5{word-spacing:-18.420000px;}
.wsd{word-spacing:-18.024000px;}
.wse{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.976000px;}
.ws16{word-spacing:-17.208000px;}
.wsa{word-spacing:-17.184000px;}
.ws6{word-spacing:-16.800000px;}
.ws1b{word-spacing:-16.281600px;}
.wsb{word-spacing:-15.600000px;}
.ws11{word-spacing:-14.934000px;}
.ws3{word-spacing:-14.716800px;}
.ws1{word-spacing:-14.400000px;}
.ws22{word-spacing:-14.016000px;}
.ws13{word-spacing:-13.817767px;}
.ws12{word-spacing:-13.048983px;}
.ws19{word-spacing:-12.516000px;}
.ws8{word-spacing:-12.384000px;}
.ws0{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.800000px;}
.ws1f{word-spacing:-10.533552px;}
.ws24{word-spacing:-10.380000px;}
.ws17{word-spacing:-10.140000px;}
.ws2{word-spacing:-9.600000px;}
.ws14{word-spacing:-8.687256px;}
.ws7{word-spacing:0.000000px;}
.ws1e{word-spacing:67.127781px;}
.ws1d{word-spacing:84.577134px;}
.ws1c{word-spacing:84.786049px;}
.ws21{word-spacing:107.965635px;}
.ws15{word-spacing:144.185394px;}
.ws20{word-spacing:375.807735px;}
._27{margin-left:-2749.023369px;}
._1c{margin-left:-2746.578085px;}
._26{margin-left:-2744.853608px;}
._24{margin-left:-2743.592743px;}
._22{margin-left:-2742.470193px;}
._20{margin-left:-2728.522654px;}
._15{margin-left:-2706.320004px;}
._12{margin-left:-2704.269246px;}
._10{margin-left:-2628.150769px;}
._18{margin-left:-2557.476277px;}
._c{margin-left:-2358.311108px;}
._d{margin-left:-1783.528777px;}
._19{margin-left:-1776.800369px;}
._5{margin-left:-1766.660400px;}
._11{margin-left:-1704.789192px;}
._2a{margin-left:-1506.450085px;}
._1e{margin-left:-1464.822346px;}
._13{margin-left:-1130.470192px;}
._1f{margin-left:-464.174485px;}
._16{margin-left:-318.097242px;}
._42{margin-left:-10.533304px;}
._7{margin-left:-7.980642px;}
._17{margin-left:-6.901708px;}
._8{margin-left:-5.898558px;}
._4{margin-left:-4.300800px;}
._6{margin-left:-2.775558px;}
._1{margin-left:-1.480800px;}
._2{width:1.545600px;}
._3{width:3.093600px;}
._0{width:4.368000px;}
._a{width:5.410223px;}
._e{width:6.473915px;}
._44{width:7.478231px;}
._14{width:8.512800px;}
._b{width:9.808896px;}
._f{width:11.270554px;}
._21{width:12.434400px;}
._2e{width:13.756877px;}
._2d{width:15.034500px;}
._1d{width:16.617281px;}
._40{width:18.584019px;}
._9{width:19.861800px;}
._25{width:21.573600px;}
._31{width:23.148865px;}
._33{width:24.198396px;}
._29{width:25.440550px;}
._28{width:26.461758px;}
._41{width:27.534497px;}
._2c{width:29.696781px;}
._23{width:31.338665px;}
._2f{width:32.441023px;}
._1b{width:34.575312px;}
._1a{width:36.202135px;}
._32{width:37.217884px;}
._2b{width:39.599358px;}
._37{width:40.622746px;}
._35{width:43.056423px;}
._30{width:44.501315px;}
._34{width:49.198419px;}
._3f{width:63.293958px;}
._3e{width:64.635042px;}
._3b{width:67.983473px;}
._3c{width:69.120515px;}
._3d{width:71.970685px;}
._36{width:97.165200px;}
._39{width:178.207115px;}
._3a{width:179.289388px;}
._38{width:184.156800px;}
._43{width:848.250000px;}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.400000px;}
.fsb{font-size:38.439188px;}
.fs6{font-size:43.200000px;}
.fsc{font-size:45.646536px;}
.fsa{font-size:45.726617px;}
.fsf{font-size:46.608638px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:57.738864px;}
.fs10{font-size:59.689920px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:62.400000px;}
.fs0{font-size:67.200000px;}
.fsd{font-size:69.837206px;}
.fse{font-size:69.912957px;}
.fs12{font-size:69.956586px;}
.fs2{font-size:72.000000px;}
.fs11{font-size:79.387593px;}
.fs13{font-size:79.506973px;}
.fs8{font-size:86.550000px;}
.fs1{font-size:96.150000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:4.514054px;}
.yc2{bottom:6.541024px;}
.ybe{bottom:8.058135px;}
.y8d{bottom:11.240246px;}
.yca{bottom:15.407496px;}
.ybc{bottom:34.799855px;}
.yc4{bottom:38.052361px;}
.y26{bottom:56.475000px;}
.yb6{bottom:57.452181px;}
.ycb{bottom:60.050586px;}
.y1{bottom:76.875000px;}
.yc5{bottom:78.467412px;}
.ybd{bottom:81.178927px;}
.y8b{bottom:87.457109px;}
.y8e{bottom:97.651520px;}
.yb7{bottom:98.011483px;}
.yb4{bottom:110.512500px;}
.y23{bottom:111.712500px;}
.yf5{bottom:117.712500px;}
.yc6{bottom:118.907332px;}
.y72{bottom:118.912500px;}
.ye6{bottom:121.312500px;}
.y9b{bottom:123.712500px;}
.ycf{bottom:128.512500px;}
.y124{bottom:132.150000px;}
.y5f{bottom:133.350000px;}
.ya8{bottom:135.750000px;}
.y87{bottom:136.210823px;}
.y3e{bottom:136.950000px;}
.yb8{bottom:138.603116px;}
.y139{bottom:139.350000px;}
.y149{bottom:140.550000px;}
.y22{bottom:148.950000px;}
.ydd{bottom:151.350000px;}
.yb3{bottom:152.550000px;}
.yf4{bottom:158.550000px;}
.yc7{bottom:159.347254px;}
.y71{bottom:160.950000px;}
.ye5{bottom:162.150000px;}
.y9a{bottom:165.750000px;}
.y138{bottom:166.950000px;}
.y93{bottom:169.350000px;}
.y123{bottom:170.580000px;}
.y5e{bottom:175.380000px;}
.ya7{bottom:176.580000px;}
.y3d{bottom:178.980000px;}
.yb9{bottom:179.192262px;}
.y21{bottom:186.180000px;}
.y85{bottom:187.380000px;}
.y109{bottom:188.580000px;}
.y86{bottom:190.866581px;}
.yb2{bottom:193.380000px;}
.y122{bottom:198.180000px;}
.yc8{bottom:199.749868px;}
.yf3{bottom:200.580000px;}
.y70{bottom:201.780000px;}
.ye4{bottom:204.195000px;}
.y137{bottom:205.380000px;}
.ye7{bottom:206.580000px;}
.yce{bottom:211.425000px;}
.y20{bottom:213.825000px;}
.y5d{bottom:216.225000px;}
.y89{bottom:216.332527px;}
.yac{bottom:217.425000px;}
.ya6{bottom:218.625000px;}
.yba{bottom:219.744101px;}
.y3c{bottom:219.825000px;}
.y121{bottom:227.025000px;}
.y108{bottom:228.225000px;}
.y84{bottom:229.425000px;}
.y136{bottom:233.025000px;}
.y88{bottom:233.646176px;}
.ydc{bottom:234.225000px;}
.yb1{bottom:235.425000px;}
.ye8{bottom:237.825000px;}
.yc9{bottom:240.189789px;}
.yf2{bottom:241.425000px;}
.y1f{bottom:242.625000px;}
.y91{bottom:252.255000px;}
.ye3{bottom:254.655000px;}
.y99{bottom:257.070000px;}
.y5c{bottom:258.255000px;}
.ya5{bottom:259.455000px;}
.ybb{bottom:260.333247px;}
.y4e{bottom:260.670000px;}
.y3b{bottom:261.855000px;}
.y107{bottom:265.455000px;}
.y83{bottom:270.255000px;}
.y1e{bottom:271.455000px;}
.y148{bottom:273.870000px;}
.ydb{bottom:275.070000px;}
.yc0{bottom:278.961456px;}
.yf1{bottom:283.455000px;}
.yb0{bottom:285.855000px;}
.y6f{bottom:293.100000px;}
.y1d{bottom:299.100000px;}
.y135{bottom:300.300000px;}
.ya4{bottom:301.500000px;}
.y3a{bottom:302.700000px;}
.y106{bottom:305.100000px;}
.yab{bottom:308.700000px;}
.y92{bottom:311.100000px;}
.y82{bottom:312.300000px;}
.y120{bottom:321.900000px;}
.y8c{bottom:323.561813px;}
.yaf{bottom:324.300000px;}
.yda{bottom:325.500000px;}
.y1c{bottom:327.900000px;}
.y147{bottom:329.130000px;}
.ye2{bottom:330.330000px;}
.y8a{bottom:331.329711px;}
.y6e{bottom:335.130000px;}
.y5b{bottom:341.130000px;}
.y90{bottom:341.476070px;}
.ya3{bottom:342.330000px;}
.y4d{bottom:343.530000px;}
.y39{bottom:344.745000px;}
.yaa{bottom:350.730000px;}
.y81{bottom:353.130000px;}
.y8f{bottom:354.969825px;}
.y1b{bottom:356.730000px;}
.ye1{bottom:357.945000px;}
.y11f{bottom:360.330000px;}
.y98{bottom:361.545000px;}
.yf0{bottom:366.330000px;}
.yd9{bottom:367.530000px;}
.y6d{bottom:375.975000px;}
.y1a{bottom:384.375000px;}
.y38{bottom:385.575000px;}
.ye0{bottom:386.775000px;}
.yae{bottom:389.175000px;}
.y5a{bottom:391.575000px;}
.y7b{bottom:393.975000px;}
.y80{bottom:395.175000px;}
.y97{bottom:403.575000px;}
.yef{bottom:407.175000px;}
.yd8{bottom:408.375000px;}
.y19{bottom:413.205000px;}
.ydf{bottom:414.405000px;}
.y105{bottom:415.620000px;}
.y6c{bottom:418.005000px;}
.y134{bottom:421.605000px;}
.ya2{bottom:424.005000px;}
.y4c{bottom:426.405000px;}
.y37{bottom:427.605000px;}
.ya9{bottom:433.605000px;}
.y7a{bottom:436.005000px;}
.ybf{bottom:437.701857px;}
.yb5{bottom:437.851074px;}
.y18{bottom:442.005000px;}
.y96{bottom:444.405000px;}
.yee{bottom:449.250000px;}
.yd7{bottom:450.450000px;}
.y11e{bottom:452.850000px;}
.y6b{bottom:458.850000px;}
.ya1{bottom:461.250000px;}
.yde{bottom:464.850000px;}
.y36{bottom:468.450000px;}
.y17{bottom:470.850000px;}
.y79{bottom:476.850000px;}
.y7f{bottom:478.050000px;}
.y11d{bottom:481.650000px;}
.y95{bottom:486.450000px;}
.ya0{bottom:488.880000px;}
.yed{bottom:490.080000px;}
.yd6{bottom:491.280000px;}
.y59{bottom:492.480000px;}
.y16{bottom:498.480000px;}
.y6a{bottom:500.880000px;}
.y104{bottom:505.695000px;}
.y4b{bottom:509.280000px;}
.y9f{bottom:516.480000px;}
.y35{bottom:518.880000px;}
.y11c{bottom:520.080000px;}
.y15{bottom:527.280000px;}
.y146{bottom:528.525000px;}
.yec{bottom:532.125000px;}
.y58{bottom:533.325000px;}
.y94{bottom:536.925000px;}
.y69{bottom:541.725000px;}
.y9e{bottom:545.325000px;}
.y103{bottom:547.725000px;}
.y4a{bottom:551.325000px;}
.y14{bottom:556.125000px;}
.y78{bottom:559.725000px;}
.y34{bottom:560.925000px;}
.yd5{bottom:574.155000px;}
.y57{bottom:575.355000px;}
.yeb{bottom:576.570000px;}
.y68{bottom:583.755000px;}
.y13{bottom:584.955000px;}
.y11b{bottom:586.155000px;}
.y102{bottom:588.570000px;}
.y9d{bottom:590.955000px;}
.y49{bottom:592.155000px;}
.y33{bottom:601.755000px;}
.y12{bottom:612.600000px;}
.y11a{bottom:613.800000px;}
.y56{bottom:616.200000px;}
.yea{bottom:619.800000px;}
.y145{bottom:622.200000px;}
.y67{bottom:624.600000px;}
.y101{bottom:630.600000px;}
.y48{bottom:634.200000px;}
.y133{bottom:639.000000px;}
.y77{bottom:642.600000px;}
.y32{bottom:643.800000px;}
.y11{bottom:647.445000px;}
.y144{bottom:649.830000px;}
.y119{bottom:652.230000px;}
.yd4{bottom:657.030000px;}
.y55{bottom:658.230000px;}
.y152{bottom:660.630000px;}
.ye9{bottom:663.030000px;}
.y66{bottom:666.630000px;}
.y132{bottom:667.830000px;}
.y100{bottom:671.430000px;}
.y47{bottom:675.030000px;}
.y118{bottom:679.830000px;}
.y10{bottom:683.430000px;}
.y31{bottom:684.630000px;}
.y143{bottom:688.275000px;}
.y7e{bottom:694.275000px;}
.y151{bottom:697.875000px;}
.y54{bottom:699.075000px;}
.y131{bottom:706.275000px;}
.y65{bottom:707.475000px;}
.y117{bottom:708.675000px;}
.yc1{bottom:709.736805px;}
.yff{bottom:713.475000px;}
.y142{bottom:715.875000px;}
.y46{bottom:717.075000px;}
.y76{bottom:725.475000px;}
.y30{bottom:726.705000px;}
.yf{bottom:731.505000px;}
.yc3{bottom:733.015838px;}
.y130{bottom:733.905000px;}
.yd3{bottom:739.905000px;}
.y53{bottom:741.105000px;}
.y7d{bottom:742.305000px;}
.y116{bottom:747.105000px;}
.y64{bottom:749.505000px;}
.y150{bottom:753.105000px;}
.yfe{bottom:754.305000px;}
.y45{bottom:757.905000px;}
.ye{bottom:761.505000px;}
.y12f{bottom:762.705000px;}
.y2f{bottom:767.550000px;}
.y75{bottom:772.350000px;}
.y115{bottom:774.750000px;}
.y52{bottom:781.950000px;}
.y7c{bottom:785.550000px;}
.yd{bottom:786.750000px;}
.y14f{bottom:792.750000px;}
.yfd{bottom:796.350000px;}
.y44{bottom:799.950000px;}
.y12e{bottom:801.150000px;}
.y114{bottom:802.350000px;}
.y74{bottom:808.380000px;}
.y2e{bottom:809.580000px;}
.y141{bottom:810.780000px;}
.yc{bottom:815.580000px;}
.y14e{bottom:819.195000px;}
.yd2{bottom:822.780000px;}
.y12d{bottom:828.780000px;}
.y51{bottom:829.980000px;}
.yfc{bottom:837.195000px;}
.y43{bottom:840.780000px;}
.y113{bottom:841.980000px;}
.y14d{bottom:848.025000px;}
.y140{bottom:849.225000px;}
.y2d{bottom:850.425000px;}
.y12c{bottom:856.425000px;}
.yb{bottom:858.825000px;}
.yd1{bottom:864.825000px;}
.y112{bottom:868.425000px;}
.y50{bottom:869.625000px;}
.y9c{bottom:874.425000px;}
.y13f{bottom:876.825000px;}
.yfb{bottom:879.225000px;}
.ya{bottom:881.625000px;}
.y42{bottom:882.825000px;}
.y12b{bottom:885.225000px;}
.y73{bottom:891.255000px;}
.y2c{bottom:892.455000px;}
.y111{bottom:897.255000px;}
.yd0{bottom:905.655000px;}
.y9{bottom:906.855000px;}
.y13e{bottom:915.255000px;}
.yfa{bottom:920.070000px;}
.y4f{bottom:923.655000px;}
.y8{bottom:930.900000px;}
.y2b{bottom:933.300000px;}
.y110{bottom:935.700000px;}
.y13d{bottom:942.900000px;}
.y12a{bottom:951.300000px;}
.y7{bottom:956.100000px;}
.yf9{bottom:962.100000px;}
.y10f{bottom:963.300000px;}
.y63{bottom:965.730000px;}
.y41{bottom:974.130000px;}
.y2a{bottom:975.330000px;}
.y129{bottom:980.130000px;}
.y13c{bottom:981.330000px;}
.ycc{bottom:986.996483px;}
.y6{bottom:988.530000px;}
.y10e{bottom:1001.730000px;}
.yf8{bottom:1002.945000px;}
.y62{bottom:1006.575000px;}
.y13b{bottom:1008.975000px;}
.y5{bottom:1011.375000px;}
.y29{bottom:1016.175000px;}
.y128{bottom:1018.575000px;}
.y14c{bottom:1036.575000px;}
.y10d{bottom:1038.975000px;}
.yf7{bottom:1045.005000px;}
.y127{bottom:1046.205000px;}
.y13a{bottom:1047.405000px;}
.y61{bottom:1048.605000px;}
.yad{bottom:1049.820000px;}
.y4{bottom:1055.820000px;}
.y40{bottom:1057.005000px;}
.y28{bottom:1058.205000px;}
.y10c{bottom:1066.605000px;}
.y126{bottom:1075.005000px;}
.y14b{bottom:1076.205000px;}
.yf6{bottom:1085.850000px;}
.y60{bottom:1089.450000px;}
.y10b{bottom:1095.450000px;}
.y3{bottom:1096.650000px;}
.y27{bottom:1099.050000px;}
.y14a{bottom:1102.650000px;}
.y125{bottom:1113.450000px;}
.y10a{bottom:1136.280000px;}
.y3f{bottom:1139.880000px;}
.y2{bottom:1141.080000px;}
.y25{bottom:1233.150000px;}
.y24{bottom:1251.150000px;}
.h1c{height:27.905042px;}
.h18{height:29.994189px;}
.h5{height:42.839062px;}
.h7{height:43.066406px;}
.h11{height:46.738665px;}
.h10{height:46.820662px;}
.hc{height:51.464063px;}
.hf{height:59.120311px;}
.h1e{height:60.243750px;}
.h9{height:65.953125px;}
.h2{height:66.839062px;}
.hd{height:67.725000px;}
.h13{height:69.462104px;}
.h1b{height:69.580843px;}
.hb{height:70.628906px;}
.h4{height:70.664062px;}
.h15{height:71.508116px;}
.h14{height:71.585679px;}
.h17{height:72.501102px;}
.h6{height:72.562500px;}
.h19{height:81.287004px;}
.h1d{height:81.409240px;}
.ha{height:87.226172px;}
.h3{height:96.901172px;}
.h1a{height:282.034162px;}
.h12{height:302.031035px;}
.h16{height:302.180260px;}
.he{height:368.850000px;}
.h1{height:1262.250000px;}
.h8{height:1262.399908px;}
.h0{height:1262.400000px;}
.w7{width:53.629812px;}
.w9{width:57.364459px;}
.w8{width:529.276935px;}
.w5{width:529.276948px;}
.w6{width:529.426334px;}
.w4{width:637.680000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x29{left:8.993078px;}
.x27{left:19.659280px;}
.xe{left:24.321770px;}
.x25{left:25.365847px;}
.x24{left:34.179663px;}
.x23{left:51.867045px;}
.x26{left:72.452527px;}
.xb{left:74.512473px;}
.x8{left:82.912500px;}
.x9{left:95.040000px;}
.xa{left:99.749987px;}
.x15{left:102.896736px;}
.x7{left:127.387500px;}
.x1b{left:134.587487px;}
.x2a{left:135.787487px;}
.x20{left:139.387487px;}
.x1c{left:140.587487px;}
.x2f{left:141.787487px;}
.x1d{left:144.187487px;}
.x5{left:146.587500px;}
.x2e{left:147.787487px;}
.x11{left:149.657047px;}
.x33{left:159.824987px;}
.x2d{left:162.224987px;}
.x32{left:163.424987px;}
.x10{left:164.787034px;}
.xd{left:173.024987px;}
.x22{left:181.572548px;}
.x1e{left:186.269987px;}
.x3{left:216.300000px;}
.x28{left:253.422018px;}
.x31{left:254.744987px;}
.x16{left:260.150835px;}
.xf{left:318.771522px;}
.x21{left:359.294987px;}
.x4{left:360.495000px;}
.x2{left:362.895000px;}
.x6{left:379.725000px;}
.x14{left:398.564570px;}
.x13{left:401.008775px;}
.x2b{left:409.754987px;}
.x19{left:437.399987px;}
.x1{left:442.200000px;}
.x1a{left:445.799987px;}
.x18{left:451.014659px;}
.x17{left:460.591107px;}
.x12{left:568.816998px;}
.x30{left:694.544987px;}
.x1f{left:711.329987px;}
.x2c{left:740.174987px;}
.xc{left:765.419987px;}
@media print{
.v10{vertical-align:-55.413333pt;}
.v8{vertical-align:-25.600000pt;}
.vb{vertical-align:-23.262827pt;}
.v3{vertical-align:-21.333333pt;}
.ve{vertical-align:-18.590341pt;}
.v2{vertical-align:-17.066667pt;}
.v5{vertical-align:-8.480000pt;}
.v9{vertical-align:-7.189552pt;}
.v4{vertical-align:-4.266667pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:3.802469pt;}
.va{vertical-align:7.189552pt;}
.v7{vertical-align:8.533333pt;}
.v1{vertical-align:17.066667pt;}
.vd{vertical-align:18.590317pt;}
.vc{vertical-align:21.333333pt;}
.v6{vertical-align:25.600000pt;}
.ls23{letter-spacing:-6.986667pt;}
.ls41{letter-spacing:-5.706667pt;}
.lsd{letter-spacing:-4.992000pt;}
.ls25{letter-spacing:-3.808000pt;}
.ls38{letter-spacing:-3.541333pt;}
.ls3{letter-spacing:-3.200000pt;}
.ls18{letter-spacing:-2.725333pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls1d{letter-spacing:-1.064908pt;}
.ls3b{letter-spacing:-1.002667pt;}
.ls6{letter-spacing:-0.922667pt;}
.ls10{letter-spacing:-0.725333pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.460800pt;}
.ls4{letter-spacing:-0.418133pt;}
.ls20{letter-spacing:-0.265373pt;}
.ls37{letter-spacing:-0.222842pt;}
.ls1e{letter-spacing:-0.194189pt;}
.ls34{letter-spacing:-0.169343pt;}
.ls36{letter-spacing:-0.106115pt;}
.ls15{letter-spacing:-0.066667pt;}
.ls35{letter-spacing:-0.063227pt;}
.ls11{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.074667pt;}
.ls7{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.683363pt;}
.ls9{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.757333pt;}
.lsf{letter-spacing:0.858667pt;}
.lsb{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.173333pt;}
.ls2f{letter-spacing:1.388800pt;}
.ls5{letter-spacing:1.440000pt;}
.ls12{letter-spacing:1.450667pt;}
.ls29{letter-spacing:1.482667pt;}
.ls1b{letter-spacing:1.536000pt;}
.ls26{letter-spacing:1.589333pt;}
.ls21{letter-spacing:1.642667pt;}
.ls1c{letter-spacing:1.696000pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls1{letter-spacing:2.133333pt;}
.ls39{letter-spacing:2.288000pt;}
.ls40{letter-spacing:2.293333pt;}
.ls16{letter-spacing:2.816000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls2a{letter-spacing:5.333333pt;}
.ls42{letter-spacing:5.493333pt;}
.ls2d{letter-spacing:5.766400pt;}
.ls28{letter-spacing:9.546667pt;}
.ls3c{letter-spacing:9.600000pt;}
.ls3e{letter-spacing:9.706667pt;}
.ls44{letter-spacing:10.666667pt;}
.ls14{letter-spacing:12.046933pt;}
.ls19{letter-spacing:13.866667pt;}
.ls3f{letter-spacing:13.920000pt;}
.ls3a{letter-spacing:13.973333pt;}
.ls24{letter-spacing:14.026667pt;}
.ls2b{letter-spacing:18.133333pt;}
.ls2c{letter-spacing:18.293333pt;}
.ls3d{letter-spacing:20.633600pt;}
.ls30{letter-spacing:104.672774pt;}
.ls32{letter-spacing:125.259164pt;}
.ls43{letter-spacing:153.033600pt;}
.ls31{letter-spacing:596.174076pt;}
.ws1a{word-spacing:-64.000000pt;}
.wsf{word-spacing:-18.816000pt;}
.ws18{word-spacing:-18.133333pt;}
.ws10{word-spacing:-17.450667pt;}
.ws23{word-spacing:-17.066667pt;}
.ws9{word-spacing:-16.858667pt;}
.ws5{word-spacing:-16.373333pt;}
.wsd{word-spacing:-16.021333pt;}
.wse{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.978667pt;}
.ws16{word-spacing:-15.296000pt;}
.wsa{word-spacing:-15.274667pt;}
.ws6{word-spacing:-14.933333pt;}
.ws1b{word-spacing:-14.472533pt;}
.wsb{word-spacing:-13.866667pt;}
.ws11{word-spacing:-13.274667pt;}
.ws3{word-spacing:-13.081600pt;}
.ws1{word-spacing:-12.800000pt;}
.ws22{word-spacing:-12.458667pt;}
.ws13{word-spacing:-12.282459pt;}
.ws12{word-spacing:-11.599096pt;}
.ws19{word-spacing:-11.125333pt;}
.ws8{word-spacing:-11.008000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.600000pt;}
.ws1f{word-spacing:-9.363157pt;}
.ws24{word-spacing:-9.226667pt;}
.ws17{word-spacing:-9.013333pt;}
.ws2{word-spacing:-8.533333pt;}
.ws14{word-spacing:-7.722006pt;}
.ws7{word-spacing:0.000000pt;}
.ws1e{word-spacing:59.669139pt;}
.ws1d{word-spacing:75.179675pt;}
.ws1c{word-spacing:75.365377pt;}
.ws21{word-spacing:95.969453pt;}
.ws15{word-spacing:128.164795pt;}
.ws20{word-spacing:334.051320pt;}
._27{margin-left:-2443.576328pt;}
._1c{margin-left:-2441.402742pt;}
._26{margin-left:-2439.869874pt;}
._24{margin-left:-2438.749105pt;}
._22{margin-left:-2437.751282pt;}
._20{margin-left:-2425.353470pt;}
._15{margin-left:-2405.617781pt;}
._12{margin-left:-2403.794885pt;}
._10{margin-left:-2336.134017pt;}
._18{margin-left:-2273.312246pt;}
._c{margin-left:-2096.276540pt;}
._d{margin-left:-1585.358913pt;}
._19{margin-left:-1579.378106pt;}
._5{margin-left:-1570.364800pt;}
._11{margin-left:-1515.368171pt;}
._2a{margin-left:-1339.066742pt;}
._1e{margin-left:-1302.064308pt;}
._13{margin-left:-1004.862393pt;}
._1f{margin-left:-412.599542pt;}
._16{margin-left:-282.753104pt;}
._42{margin-left:-9.362937pt;}
._7{margin-left:-7.093904pt;}
._17{margin-left:-6.134851pt;}
._8{margin-left:-5.243162pt;}
._4{margin-left:-3.822933pt;}
._6{margin-left:-2.467162pt;}
._1{margin-left:-1.316267pt;}
._2{width:1.373867pt;}
._3{width:2.749867pt;}
._0{width:3.882667pt;}
._a{width:4.809087pt;}
._e{width:5.754591pt;}
._44{width:6.647316pt;}
._14{width:7.566933pt;}
._b{width:8.719019pt;}
._f{width:10.018270pt;}
._21{width:11.052800pt;}
._2e{width:12.228335pt;}
._2d{width:13.364000pt;}
._1d{width:14.770916pt;}
._40{width:16.519128pt;}
._9{width:17.654933pt;}
._25{width:19.176533pt;}
._31{width:20.576769pt;}
._33{width:21.509686pt;}
._29{width:22.613822pt;}
._28{width:23.521562pt;}
._41{width:24.475108pt;}
._2c{width:26.397138pt;}
._23{width:27.856591pt;}
._2f{width:28.836465pt;}
._1b{width:30.733610pt;}
._1a{width:32.179675pt;}
._32{width:33.082564pt;}
._2b{width:35.199429pt;}
._37{width:36.109108pt;}
._35{width:38.272376pt;}
._30{width:39.556725pt;}
._34{width:43.731928pt;}
._3f{width:56.261296pt;}
._3e{width:57.453371pt;}
._3b{width:60.429754pt;}
._3c{width:61.440458pt;}
._3d{width:63.973942pt;}
._36{width:86.369067pt;}
._39{width:158.406325pt;}
._3a{width:159.368345pt;}
._38{width:163.694933pt;}
._43{width:754.000000pt;}
.fs4{font-size:34.133333pt;}
.fsb{font-size:34.168167pt;}
.fs6{font-size:38.400000pt;}
.fsc{font-size:40.574698pt;}
.fsa{font-size:40.645882pt;}
.fsf{font-size:41.429900pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:51.323434pt;}
.fs10{font-size:53.057706pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:55.466667pt;}
.fs0{font-size:59.733333pt;}
.fsd{font-size:62.077517pt;}
.fse{font-size:62.144851pt;}
.fs12{font-size:62.183632pt;}
.fs2{font-size:64.000000pt;}
.fs11{font-size:70.566750pt;}
.fs13{font-size:70.672865pt;}
.fs8{font-size:76.933333pt;}
.fs1{font-size:85.466667pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:4.012492pt;}
.yc2{bottom:5.814243pt;}
.ybe{bottom:7.162787pt;}
.y8d{bottom:9.991330pt;}
.yca{bottom:13.695552pt;}
.ybc{bottom:30.933205pt;}
.yc4{bottom:33.824321pt;}
.y26{bottom:50.200000pt;}
.yb6{bottom:51.068606pt;}
.ycb{bottom:53.378298pt;}
.y1{bottom:68.333333pt;}
.yc5{bottom:69.748811pt;}
.ybd{bottom:72.159046pt;}
.y8b{bottom:77.739653pt;}
.y8e{bottom:86.801351pt;}
.yb7{bottom:87.121318pt;}
.yb4{bottom:98.233333pt;}
.y23{bottom:99.300000pt;}
.yf5{bottom:104.633333pt;}
.yc6{bottom:105.695407pt;}
.y72{bottom:105.700000pt;}
.ye6{bottom:107.833333pt;}
.y9b{bottom:109.966667pt;}
.ycf{bottom:114.233333pt;}
.y124{bottom:117.466667pt;}
.y5f{bottom:118.533333pt;}
.ya8{bottom:120.666667pt;}
.y87{bottom:121.076287pt;}
.y3e{bottom:121.733333pt;}
.yb8{bottom:123.202770pt;}
.y139{bottom:123.866667pt;}
.y149{bottom:124.933333pt;}
.y22{bottom:132.400000pt;}
.ydd{bottom:134.533333pt;}
.yb3{bottom:135.600000pt;}
.yf4{bottom:140.933333pt;}
.yc7{bottom:141.642003pt;}
.y71{bottom:143.066667pt;}
.ye5{bottom:144.133333pt;}
.y9a{bottom:147.333333pt;}
.y138{bottom:148.400000pt;}
.y93{bottom:150.533333pt;}
.y123{bottom:151.626667pt;}
.y5e{bottom:155.893333pt;}
.ya7{bottom:156.960000pt;}
.y3d{bottom:159.093333pt;}
.yb9{bottom:159.282011pt;}
.y21{bottom:165.493333pt;}
.y85{bottom:166.560000pt;}
.y109{bottom:167.626667pt;}
.y86{bottom:169.659183pt;}
.yb2{bottom:171.893333pt;}
.y122{bottom:176.160000pt;}
.yc8{bottom:177.555438pt;}
.yf3{bottom:178.293333pt;}
.y70{bottom:179.360000pt;}
.ye4{bottom:181.506667pt;}
.y137{bottom:182.560000pt;}
.ye7{bottom:183.626667pt;}
.yce{bottom:187.933333pt;}
.y20{bottom:190.066667pt;}
.y5d{bottom:192.200000pt;}
.y89{bottom:192.295580pt;}
.yac{bottom:193.266667pt;}
.ya6{bottom:194.333333pt;}
.yba{bottom:195.328090pt;}
.y3c{bottom:195.400000pt;}
.y121{bottom:201.800000pt;}
.y108{bottom:202.866667pt;}
.y84{bottom:203.933333pt;}
.y136{bottom:207.133333pt;}
.y88{bottom:207.685490pt;}
.ydc{bottom:208.200000pt;}
.yb1{bottom:209.266667pt;}
.ye8{bottom:211.400000pt;}
.yc9{bottom:213.502035pt;}
.yf2{bottom:214.600000pt;}
.y1f{bottom:215.666667pt;}
.y91{bottom:224.226667pt;}
.ye3{bottom:226.360000pt;}
.y99{bottom:228.506667pt;}
.y5c{bottom:229.560000pt;}
.ya5{bottom:230.626667pt;}
.ybb{bottom:231.407330pt;}
.y4e{bottom:231.706667pt;}
.y3b{bottom:232.760000pt;}
.y107{bottom:235.960000pt;}
.y83{bottom:240.226667pt;}
.y1e{bottom:241.293333pt;}
.y148{bottom:243.440000pt;}
.ydb{bottom:244.506667pt;}
.yc0{bottom:247.965739pt;}
.yf1{bottom:251.960000pt;}
.yb0{bottom:254.093333pt;}
.y6f{bottom:260.533333pt;}
.y1d{bottom:265.866667pt;}
.y135{bottom:266.933333pt;}
.ya4{bottom:268.000000pt;}
.y3a{bottom:269.066667pt;}
.y106{bottom:271.200000pt;}
.yab{bottom:274.400000pt;}
.y92{bottom:276.533333pt;}
.y82{bottom:277.600000pt;}
.y120{bottom:286.133333pt;}
.y8c{bottom:287.610501pt;}
.yaf{bottom:288.266667pt;}
.yda{bottom:289.333333pt;}
.y1c{bottom:291.466667pt;}
.y147{bottom:292.560000pt;}
.ye2{bottom:293.626667pt;}
.y8a{bottom:294.515299pt;}
.y6e{bottom:297.893333pt;}
.y5b{bottom:303.226667pt;}
.y90{bottom:303.534284pt;}
.ya3{bottom:304.293333pt;}
.y4d{bottom:305.360000pt;}
.y39{bottom:306.440000pt;}
.yaa{bottom:311.760000pt;}
.y81{bottom:313.893333pt;}
.y8f{bottom:315.528734pt;}
.y1b{bottom:317.093333pt;}
.ye1{bottom:318.173333pt;}
.y11f{bottom:320.293333pt;}
.y98{bottom:321.373333pt;}
.yf0{bottom:325.626667pt;}
.yd9{bottom:326.693333pt;}
.y6d{bottom:334.200000pt;}
.y1a{bottom:341.666667pt;}
.y38{bottom:342.733333pt;}
.ye0{bottom:343.800000pt;}
.yae{bottom:345.933333pt;}
.y5a{bottom:348.066667pt;}
.y7b{bottom:350.200000pt;}
.y80{bottom:351.266667pt;}
.y97{bottom:358.733333pt;}
.yef{bottom:361.933333pt;}
.yd8{bottom:363.000000pt;}
.y19{bottom:367.293333pt;}
.ydf{bottom:368.360000pt;}
.y105{bottom:369.440000pt;}
.y6c{bottom:371.560000pt;}
.y134{bottom:374.760000pt;}
.ya2{bottom:376.893333pt;}
.y4c{bottom:379.026667pt;}
.y37{bottom:380.093333pt;}
.ya9{bottom:385.426667pt;}
.y7a{bottom:387.560000pt;}
.ybf{bottom:389.068317pt;}
.yb5{bottom:389.200955pt;}
.y18{bottom:392.893333pt;}
.y96{bottom:395.026667pt;}
.yee{bottom:399.333333pt;}
.yd7{bottom:400.400000pt;}
.y11e{bottom:402.533333pt;}
.y6b{bottom:407.866667pt;}
.ya1{bottom:410.000000pt;}
.yde{bottom:413.200000pt;}
.y36{bottom:416.400000pt;}
.y17{bottom:418.533333pt;}
.y79{bottom:423.866667pt;}
.y7f{bottom:424.933333pt;}
.y11d{bottom:428.133333pt;}
.y95{bottom:432.400000pt;}
.ya0{bottom:434.560000pt;}
.yed{bottom:435.626667pt;}
.yd6{bottom:436.693333pt;}
.y59{bottom:437.760000pt;}
.y16{bottom:443.093333pt;}
.y6a{bottom:445.226667pt;}
.y104{bottom:449.506667pt;}
.y4b{bottom:452.693333pt;}
.y9f{bottom:459.093333pt;}
.y35{bottom:461.226667pt;}
.y11c{bottom:462.293333pt;}
.y15{bottom:468.693333pt;}
.y146{bottom:469.800000pt;}
.yec{bottom:473.000000pt;}
.y58{bottom:474.066667pt;}
.y94{bottom:477.266667pt;}
.y69{bottom:481.533333pt;}
.y9e{bottom:484.733333pt;}
.y103{bottom:486.866667pt;}
.y4a{bottom:490.066667pt;}
.y14{bottom:494.333333pt;}
.y78{bottom:497.533333pt;}
.y34{bottom:498.600000pt;}
.yd5{bottom:510.360000pt;}
.y57{bottom:511.426667pt;}
.yeb{bottom:512.506667pt;}
.y68{bottom:518.893333pt;}
.y13{bottom:519.960000pt;}
.y11b{bottom:521.026667pt;}
.y102{bottom:523.173333pt;}
.y9d{bottom:525.293333pt;}
.y49{bottom:526.360000pt;}
.y33{bottom:534.893333pt;}
.y12{bottom:544.533333pt;}
.y11a{bottom:545.600000pt;}
.y56{bottom:547.733333pt;}
.yea{bottom:550.933333pt;}
.y145{bottom:553.066667pt;}
.y67{bottom:555.200000pt;}
.y101{bottom:560.533333pt;}
.y48{bottom:563.733333pt;}
.y133{bottom:568.000000pt;}
.y77{bottom:571.200000pt;}
.y32{bottom:572.266667pt;}
.y11{bottom:575.506667pt;}
.y144{bottom:577.626667pt;}
.y119{bottom:579.760000pt;}
.yd4{bottom:584.026667pt;}
.y55{bottom:585.093333pt;}
.y152{bottom:587.226667pt;}
.ye9{bottom:589.360000pt;}
.y66{bottom:592.560000pt;}
.y132{bottom:593.626667pt;}
.y100{bottom:596.826667pt;}
.y47{bottom:600.026667pt;}
.y118{bottom:604.293333pt;}
.y10{bottom:607.493333pt;}
.y31{bottom:608.560000pt;}
.y143{bottom:611.800000pt;}
.y7e{bottom:617.133333pt;}
.y151{bottom:620.333333pt;}
.y54{bottom:621.400000pt;}
.y131{bottom:627.800000pt;}
.y65{bottom:628.866667pt;}
.y117{bottom:629.933333pt;}
.yc1{bottom:630.877160pt;}
.yff{bottom:634.200000pt;}
.y142{bottom:636.333333pt;}
.y46{bottom:637.400000pt;}
.y76{bottom:644.866667pt;}
.y30{bottom:645.960000pt;}
.yf{bottom:650.226667pt;}
.yc3{bottom:651.569633pt;}
.y130{bottom:652.360000pt;}
.yd3{bottom:657.693333pt;}
.y53{bottom:658.760000pt;}
.y7d{bottom:659.826667pt;}
.y116{bottom:664.093333pt;}
.y64{bottom:666.226667pt;}
.y150{bottom:669.426667pt;}
.yfe{bottom:670.493333pt;}
.y45{bottom:673.693333pt;}
.ye{bottom:676.893333pt;}
.y12f{bottom:677.960000pt;}
.y2f{bottom:682.266667pt;}
.y75{bottom:686.533333pt;}
.y115{bottom:688.666667pt;}
.y52{bottom:695.066667pt;}
.y7c{bottom:698.266667pt;}
.yd{bottom:699.333333pt;}
.y14f{bottom:704.666667pt;}
.yfd{bottom:707.866667pt;}
.y44{bottom:711.066667pt;}
.y12e{bottom:712.133333pt;}
.y114{bottom:713.200000pt;}
.y74{bottom:718.560000pt;}
.y2e{bottom:719.626667pt;}
.y141{bottom:720.693333pt;}
.yc{bottom:724.960000pt;}
.y14e{bottom:728.173333pt;}
.yd2{bottom:731.360000pt;}
.y12d{bottom:736.693333pt;}
.y51{bottom:737.760000pt;}
.yfc{bottom:744.173333pt;}
.y43{bottom:747.360000pt;}
.y113{bottom:748.426667pt;}
.y14d{bottom:753.800000pt;}
.y140{bottom:754.866667pt;}
.y2d{bottom:755.933333pt;}
.y12c{bottom:761.266667pt;}
.yb{bottom:763.400000pt;}
.yd1{bottom:768.733333pt;}
.y112{bottom:771.933333pt;}
.y50{bottom:773.000000pt;}
.y9c{bottom:777.266667pt;}
.y13f{bottom:779.400000pt;}
.yfb{bottom:781.533333pt;}
.ya{bottom:783.666667pt;}
.y42{bottom:784.733333pt;}
.y12b{bottom:786.866667pt;}
.y73{bottom:792.226667pt;}
.y2c{bottom:793.293333pt;}
.y111{bottom:797.560000pt;}
.yd0{bottom:805.026667pt;}
.y9{bottom:806.093333pt;}
.y13e{bottom:813.560000pt;}
.yfa{bottom:817.840000pt;}
.y4f{bottom:821.026667pt;}
.y8{bottom:827.466667pt;}
.y2b{bottom:829.600000pt;}
.y110{bottom:831.733333pt;}
.y13d{bottom:838.133333pt;}
.y12a{bottom:845.600000pt;}
.y7{bottom:849.866667pt;}
.yf9{bottom:855.200000pt;}
.y10f{bottom:856.266667pt;}
.y63{bottom:858.426667pt;}
.y41{bottom:865.893333pt;}
.y2a{bottom:866.960000pt;}
.y129{bottom:871.226667pt;}
.y13c{bottom:872.293333pt;}
.ycc{bottom:877.330207pt;}
.y6{bottom:878.693333pt;}
.y10e{bottom:890.426667pt;}
.yf8{bottom:891.506667pt;}
.y62{bottom:894.733333pt;}
.y13b{bottom:896.866667pt;}
.y5{bottom:899.000000pt;}
.y29{bottom:903.266667pt;}
.y128{bottom:905.400000pt;}
.y14c{bottom:921.400000pt;}
.y10d{bottom:923.533333pt;}
.yf7{bottom:928.893333pt;}
.y127{bottom:929.960000pt;}
.y13a{bottom:931.026667pt;}
.y61{bottom:932.093333pt;}
.yad{bottom:933.173333pt;}
.y4{bottom:938.506667pt;}
.y40{bottom:939.560000pt;}
.y28{bottom:940.626667pt;}
.y10c{bottom:948.093333pt;}
.y126{bottom:955.560000pt;}
.y14b{bottom:956.626667pt;}
.yf6{bottom:965.200000pt;}
.y60{bottom:968.400000pt;}
.y10b{bottom:973.733333pt;}
.y3{bottom:974.800000pt;}
.y27{bottom:976.933333pt;}
.y14a{bottom:980.133333pt;}
.y125{bottom:989.733333pt;}
.y10a{bottom:1010.026667pt;}
.y3f{bottom:1013.226667pt;}
.y2{bottom:1014.293333pt;}
.y25{bottom:1096.133333pt;}
.y24{bottom:1112.133333pt;}
.h1c{height:24.804482pt;}
.h18{height:26.661501pt;}
.h5{height:38.079167pt;}
.h7{height:38.281250pt;}
.h11{height:41.545480pt;}
.h10{height:41.618367pt;}
.hc{height:45.745833pt;}
.hf{height:52.551388pt;}
.h1e{height:53.550000pt;}
.h9{height:58.625000pt;}
.h2{height:59.412500pt;}
.hd{height:60.200000pt;}
.h13{height:61.744092pt;}
.h1b{height:61.849638pt;}
.hb{height:62.781250pt;}
.h4{height:62.812500pt;}
.h15{height:63.562770pt;}
.h14{height:63.631715pt;}
.h17{height:64.445424pt;}
.h6{height:64.500000pt;}
.h19{height:72.255114pt;}
.h1d{height:72.363769pt;}
.ha{height:77.534375pt;}
.h3{height:86.134375pt;}
.h1a{height:250.697033pt;}
.h12{height:268.472031pt;}
.h16{height:268.604675pt;}
.he{height:327.866667pt;}
.h1{height:1122.000000pt;}
.h8{height:1122.133252pt;}
.h0{height:1122.133333pt;}
.w7{width:47.670944pt;}
.w9{width:50.990630pt;}
.w8{width:470.468386pt;}
.w5{width:470.468398pt;}
.w6{width:470.601186pt;}
.w4{width:566.826667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x29{left:7.993847pt;}
.x27{left:17.474915pt;}
.xe{left:21.619351pt;}
.x25{left:22.547419pt;}
.x24{left:30.381922pt;}
.x23{left:46.104040pt;}
.x26{left:64.402246pt;}
.xb{left:66.233310pt;}
.x8{left:73.700000pt;}
.x9{left:84.480000pt;}
.xa{left:88.666655pt;}
.x15{left:91.463766pt;}
.x7{left:113.233333pt;}
.x1b{left:119.633322pt;}
.x2a{left:120.699988pt;}
.x20{left:123.899988pt;}
.x1c{left:124.966655pt;}
.x2f{left:126.033322pt;}
.x1d{left:128.166655pt;}
.x5{left:130.300000pt;}
.x2e{left:131.366655pt;}
.x11{left:133.028486pt;}
.x33{left:142.066655pt;}
.x2d{left:144.199988pt;}
.x32{left:145.266655pt;}
.x10{left:146.477363pt;}
.xd{left:153.799988pt;}
.x22{left:161.397821pt;}
.x1e{left:165.573322pt;}
.x3{left:192.266667pt;}
.x28{left:225.264016pt;}
.x31{left:226.439988pt;}
.x16{left:231.245187pt;}
.xf{left:283.352464pt;}
.x21{left:319.373322pt;}
.x4{left:320.440000pt;}
.x2{left:322.573333pt;}
.x6{left:337.533333pt;}
.x14{left:354.279618pt;}
.x13{left:356.452244pt;}
.x2b{left:364.226655pt;}
.x19{left:388.799988pt;}
.x1{left:393.066667pt;}
.x1a{left:396.266655pt;}
.x18{left:400.901919pt;}
.x17{left:409.414317pt;}
.x12{left:505.615109pt;}
.x30{left:617.373322pt;}
.x1f{left:632.293322pt;}
.x2c{left:657.933322pt;}
.xc{left:680.373322pt;}
}




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