
    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_f21b573919a286f7dcb6a04e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149902;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_1c1d20244cdd52a26241a766.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.175781;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_35f0908a3305acead7dc568b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_ec6e917fe7e920d122ce9861.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.753906;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_d9726fb2cc1044f6a1d43a8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.755371;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_5fb99390aab907af95cdf9c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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_557c52ba4dd50a45d7380ea6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7f688732b90d73af64a63069.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m4{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255894,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-137.820000px;}
.v1{vertical-align:-5.160000px;}
.v0{vertical-align:0.000000px;}
.ls3b{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.661264px;}
.ls2b{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.391800px;}
.ls14{letter-spacing:-0.384000px;}
.ls1c{letter-spacing:-0.367800px;}
.ls2a{letter-spacing:-0.328800px;}
.ls22{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.252000px;}
.ls2d{letter-spacing:-0.246000px;}
.ls1f{letter-spacing:-0.225600px;}
.ls9{letter-spacing:-0.194400px;}
.ls2e{letter-spacing:-0.189600px;}
.ls1a{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.154800px;}
.ls39{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.117600px;}
.ls40{letter-spacing:-0.112800px;}
.ls3c{letter-spacing:-0.109200px;}
.ls37{letter-spacing:-0.090600px;}
.ls15{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.036000px;}
.ls41{letter-spacing:-0.030240px;}
.ls16{letter-spacing:-0.017280px;}
.ls1{letter-spacing:-0.010080px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.075600px;}
.ls42{letter-spacing:0.134400px;}
.ls3a{letter-spacing:0.138000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.165000px;}
.ls32{letter-spacing:0.175800px;}
.ls4{letter-spacing:0.180000px;}
.ls44{letter-spacing:0.195000px;}
.ls45{letter-spacing:0.210000px;}
.ls24{letter-spacing:0.216000px;}
.ls3f{letter-spacing:0.225600px;}
.lsc{letter-spacing:0.256032px;}
.ls3d{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.319800px;}
.lsf{letter-spacing:0.319968px;}
.ls28{letter-spacing:0.322800px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.474000px;}
.lsd{letter-spacing:1.039968px;}
.ls35{letter-spacing:1.080000px;}
.lse{letter-spacing:1.759968px;}
.ls30{letter-spacing:1.800000px;}
.ls36{letter-spacing:2.479968px;}
.ls10{letter-spacing:2.520000px;}
.ls2f{letter-spacing:10.080000px;}
.ls33{letter-spacing:13.318560px;}
.ls18{letter-spacing:13.896000px;}
.ls12{letter-spacing:15.912000px;}
.ls31{letter-spacing:20.736000px;}
.ls43{letter-spacing:21.720000px;}
.ls25{letter-spacing:23.242176px;}
.ls27{letter-spacing:23.329440px;}
.ls8{letter-spacing:28.066176px;}
.ls7{letter-spacing:28.153440px;}
.ls6{letter-spacing:38.938896px;}
.ls5{letter-spacing:39.067200px;}
.ls19{letter-spacing:46.296000px;}
.ls26{letter-spacing:54.738720px;}
.ls17{letter-spacing:162.175968px;}
.ls11{letter-spacing:437.208000px;}
.ls3e{letter-spacing:652.971120px;}
.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;}
}
.wse{word-spacing:-108.000000px;}
.ws8{word-spacing:-50.080032px;}
.ws25{word-spacing:-50.040000px;}
.ws9{word-spacing:-45.036000px;}
.ws2e{word-spacing:-40.320000px;}
.ws27{word-spacing:-40.247832px;}
.ws26{word-spacing:-40.176000px;}
.wsb{word-spacing:-40.072032px;}
.ws7{word-spacing:-40.032000px;}
.ws29{word-spacing:-39.981432px;}
.wsc{word-spacing:-39.954432px;}
.ws28{word-spacing:-39.744000px;}
.wsd{word-spacing:-39.688032px;}
.ws2a{word-spacing:-39.680232px;}
.ws3{word-spacing:-38.806680px;}
.ws0{word-spacing:-38.683008px;}
.ws1{word-spacing:-38.641680px;}
.ws2{word-spacing:-38.631600px;}
.ws30{word-spacing:-36.957312px;}
.ws35{word-spacing:-36.879312px;}
.ws32{word-spacing:-36.854880px;}
.ws34{word-spacing:-36.824280px;}
.ws33{word-spacing:-36.763680px;}
.ws31{word-spacing:-36.599040px;}
.ws2f{word-spacing:-36.556512px;}
.wsa{word-spacing:-36.028800px;}
.ws10{word-spacing:-30.996000px;}
.wsf{word-spacing:-30.924000px;}
.ws19{word-spacing:-30.024000px;}
.ws15{word-spacing:-29.988000px;}
.ws16{word-spacing:-29.952000px;}
.ws17{word-spacing:-29.909232px;}
.ws12{word-spacing:-29.844000px;}
.ws18{word-spacing:-29.838432px;}
.ws1a{word-spacing:-29.772000px;}
.ws13{word-spacing:-29.736000px;}
.ws1c{word-spacing:-29.700000px;}
.ws14{word-spacing:-29.696232px;}
.ws5{word-spacing:-29.342880px;}
.ws1d{word-spacing:-29.304000px;}
.ws1b{word-spacing:-29.232000px;}
.ws4{word-spacing:-27.957120px;}
.ws23{word-spacing:-26.944080px;}
.ws20{word-spacing:-26.696880px;}
.ws24{word-spacing:-26.621280px;}
.ws22{word-spacing:-26.431680px;}
.ws21{word-spacing:-26.375280px;}
.ws1e{word-spacing:-26.332512px;}
.ws1f{word-spacing:-26.229312px;}
.ws11{word-spacing:-21.600000px;}
.ws2b{word-spacing:-20.376000px;}
.ws2c{word-spacing:-19.148880px;}
.ws2d{word-spacing:-18.305520px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-49.308000px;}
._25{margin-left:-7.638269px;}
._6{margin-left:-3.806592px;}
._1{margin-left:-2.726784px;}
._0{margin-left:-1.245408px;}
._2{width:1.143984px;}
._3{width:2.691552px;}
._4{width:4.115472px;}
._27{width:5.891409px;}
._28{width:7.482496px;}
._26{width:9.203732px;}
._20{width:10.294320px;}
._2f{width:12.358752px;}
._13{width:13.464000px;}
._14{width:14.520000px;}
._2c{width:21.112896px;}
._2d{width:22.257120px;}
._29{width:23.629798px;}
._a{width:27.072000px;}
._2e{width:41.708016px;}
._1c{width:45.900000px;}
._19{width:47.340000px;}
._24{width:48.984000px;}
._23{width:50.136000px;}
._1f{width:54.737856px;}
._11{width:61.608000px;}
._18{width:63.116016px;}
._22{width:73.248000px;}
._21{width:74.328000px;}
._1e{width:80.688864px;}
._d{width:83.568000px;}
._17{width:89.105328px;}
._16{width:111.564000px;}
._1b{width:128.114400px;}
._1a{width:129.138912px;}
._8{width:132.492000px;}
._9{width:155.712000px;}
._10{width:162.625104px;}
._12{width:188.208000px;}
._2a{width:214.037424px;}
._15{width:244.296000px;}
._c{width:256.728000px;}
._b{width:339.096000px;}
._1d{width:372.864000px;}
._2b{width:382.080000px;}
._f{width:438.708000px;}
._7{width:589.008000px;}
._e{width:773.400000px;}
.fca{color:rgb(52,124,85);}
.fc9{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc6{color:rgb(254,134,55);}
.fc5{color:rgb(87,95,109);}
.fc3{color:rgb(210,97,28);}
.fc2{color:rgb(54,104,196);}
.fc7{color:rgb(0,0,0);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(255,255,255);}
.fs21{font-size:59.172645px;}
.fs26{font-size:59.371083px;}
.fsa{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs28{font-size:66.240000px;}
.fs29{font-size:66.384000px;}
.fs27{font-size:72.000000px;}
.fs15{font-size:77.760000px;}
.fs20{font-size:82.789222px;}
.fs1f{font-size:82.920425px;}
.fs25{font-size:83.330146px;}
.fs2a{font-size:84.240000px;}
.fs9{font-size:90.000000px;}
.fs1e{font-size:94.728713px;}
.fs24{font-size:95.046390px;}
.fs23{font-size:95.178034px;}
.fs7{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fsd{font-size:100.800000px;}
.fse{font-size:100.944000px;}
.fs8{font-size:102.240000px;}
.fs11{font-size:108.000000px;}
.fs16{font-size:108.144000px;}
.fs17{font-size:120.240000px;}
.fs14{font-size:129.600000px;}
.fs6{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fs2{font-size:134.640000px;}
.fs1{font-size:134.784000px;}
.fs5{font-size:138.240000px;}
.fsc{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs1d{font-size:156.240000px;}
.fs13{font-size:162.000000px;}
.fs3{font-size:167.760000px;}
.fs0{font-size:167.904000px;}
.fsb{font-size:180.000000px;}
.fs10{font-size:180.144000px;}
.fs22{font-size:192.240000px;}
.fs2b{font-size:192.384000px;}
.fs2e{font-size:239.760000px;}
.fs2d{font-size:239.904000px;}
.fs18{font-size:264.240000px;}
.fs19{font-size:264.384000px;}
.fs1b{font-size:324.000000px;}
.fs1c{font-size:324.144000px;}
.fs2c{font-size:390.384000px;}
.y0{bottom:0.000000px;}
.y99{bottom:0.000275px;}
.y8c{bottom:4.919989px;}
.yb3{bottom:7.832770px;}
.yf6{bottom:14.580000px;}
.yd9{bottom:14.904000px;}
.yf9{bottom:40.830000px;}
.yc4{bottom:41.940000px;}
.yef{bottom:45.360000px;}
.ya2{bottom:51.314741px;}
.yf5{bottom:54.936000px;}
.ydc{bottom:55.440000px;}
.ye4{bottom:55.620000px;}
.yd8{bottom:55.764000px;}
.y9a{bottom:58.909964px;}
.ye2{bottom:63.360000px;}
.yf8{bottom:66.030000px;}
.yc7{bottom:66.960000px;}
.y52{bottom:73.872000px;}
.y97{bottom:76.753874px;}
.ye6{bottom:79.920000px;}
.ydb{bottom:80.640000px;}
.yf3{bottom:83.955000px;}
.ya4{bottom:89.820377px;}
.yd2{bottom:90.216000px;}
.yd6{bottom:92.265000px;}
.yf1{bottom:93.420000px;}
.ybe{bottom:93.996000px;}
.yf4{bottom:95.328000px;}
.yd7{bottom:96.588000px;}
.yed{bottom:103.710000px;}
.yea{bottom:103.755000px;}
.ye0{bottom:108.000000px;}
.yd1{bottom:110.190000px;}
.ycf{bottom:112.065000px;}
.yd5{bottom:112.110000px;}
.ycc{bottom:112.140000px;}
.yf0{bottom:113.400000px;}
.ye7{bottom:116.460000px;}
.y95{bottom:120.050932px;}
.yec{bottom:123.690000px;}
.ye9{bottom:123.735000px;}
.y51{bottom:124.128000px;}
.y8a{bottom:127.923124px;}
.y62{bottom:129.996000px;}
.yce{bottom:132.045000px;}
.yd4{bottom:132.090000px;}
.ycb{bottom:132.120000px;}
.ya0{bottom:134.249957px;}
.yc9{bottom:141.120000px;}
.yf{bottom:142.200000px;}
.yd0{bottom:142.740000px;}
.ya8{bottom:142.803911px;}
.yde{bottom:143.820000px;}
.ybd{bottom:146.196000px;}
.y26{bottom:148.932000px;}
.yee{bottom:151.200000px;}
.yd3{bottom:152.640000px;}
.y94{bottom:153.993201px;}
.y92{bottom:154.294968px;}
.y98{bottom:154.321209px;}
.y96{bottom:154.649217px;}
.y50{bottom:155.985000px;}
.yc2{bottom:156.780000px;}
.y3e{bottom:157.530000px;}
.yf2{bottom:161.100000px;}
.y89{bottom:161.430000px;}
.y93{bottom:164.332013px;}
.ye{bottom:165.600000px;}
.yc0{bottom:168.660000px;}
.y8f{bottom:169.252133px;}
.y61{bottom:173.190000px;}
.y6c{bottom:177.810000px;}
.y3d{bottom:178.590000px;}
.yb8{bottom:182.190000px;}
.y25{bottom:184.755000px;}
.y4f{bottom:185.145000px;}
.ya9{bottom:187.259819px;}
.yd{bottom:189.000000px;}
.y3f{bottom:194.580000px;}
.y41{bottom:197.640000px;}
.ybc{bottom:198.390000px;}
.y53{bottom:201.780000px;}
.y5c{bottom:202.965000px;}
.yc5{bottom:206.820000px;}
.y91{bottom:207.629071px;}
.y6b{bottom:209.130000px;}
.y103{bottom:209.160000px;}
.y88{bottom:210.570000px;}
.y10c{bottom:211.575000px;}
.yc{bottom:214.020000px;}
.y4e{bottom:214.305000px;}
.y60{bottom:216.435000px;}
.y24{bottom:220.395000px;}
.y7d{bottom:222.945000px;}
.yb7{bottom:225.435000px;}
.yaa{bottom:231.728892px;}
.y5b{bottom:232.125000px;}
.y8d{bottom:234.945709px;}
.y83{bottom:235.365000px;}
.y6a{bottom:239.370000px;}
.yb{bottom:245.340000px;}
.ybb{bottom:250.635000px;}
.y1e{bottom:250.770000px;}
.ya3{bottom:250.843485px;}
.y102{bottom:250.920000px;}
.y87{bottom:252.870000px;}
.yb2{bottom:252.883955px;}
.y4d{bottom:254.985000px;}
.ya5{bottom:256.806922px;}
.ya1{bottom:256.833251px;}
.ya7{bottom:257.928522px;}
.yc6{bottom:258.660000px;}
.y5f{bottom:259.635000px;}
.y5a{bottom:261.465000px;}
.y23{bottom:262.185000px;}
.y69{bottom:265.290000px;}
.ye3{bottom:266.040000px;}
.ye1{bottom:266.070000px;}
.ydf{bottom:266.115000px;}
.ye5{bottom:266.190000px;}
.yc8{bottom:267.555000px;}
.yc1{bottom:267.585000px;}
.yc3{bottom:267.660000px;}
.y76{bottom:267.735000px;}
.y2c{bottom:268.635000px;}
.y82{bottom:269.205000px;}
.y7c{bottom:275.145000px;}
.yab{bottom:276.184801px;}
.ya{bottom:278.820000px;}
.y8e{bottom:280.342018px;}
.y4c{bottom:284.145000px;}
.y101{bottom:286.560000px;}
.y8b{bottom:287.623664px;}
.y90{bottom:287.754867px;}
.y59{bottom:290.625000px;}
.y68{bottom:291.210000px;}
.y22{bottom:297.825000px;}
.y86{bottom:302.010000px;}
.yba{bottom:302.835000px;}
.y75{bottom:306.645000px;}
.y3c{bottom:309.885000px;}
.ya6{bottom:310.978321px;}
.y2b{bottom:311.835000px;}
.y9{bottom:312.330000px;}
.y4b{bottom:313.350000px;}
.y58{bottom:319.830000px;}
.y39{bottom:320.115000px;}
.yac{bottom:320.653874px;}
.y100{bottom:322.410000px;}
.y7b{bottom:327.345000px;}
.y16{bottom:328.035000px;}
.y3b{bottom:339.270000px;}
.y21{bottom:339.405000px;}
.yeb{bottom:342.360000px;}
.y4a{bottom:342.690000px;}
.y8{bottom:345.450000px;}
.ycd{bottom:346.860000px;}
.y57{bottom:349.170000px;}
.y85{bottom:351.360000px;}
.y74{bottom:352.185000px;}
.y2a{bottom:355.035000px;}
.yb9{bottom:355.215000px;}
.y67{bottom:356.220000px;}
.yff{bottom:358.050000px;}
.yb6{bottom:364.035000px;}
.yad{bottom:365.083454px;}
.y3a{bottom:368.430000px;}
.y7a{bottom:370.590000px;}
.y49{bottom:371.850000px;}
.y20{bottom:375.225000px;}
.y7{bottom:377.490000px;}
.y15{bottom:380.265000px;}
.y34{bottom:383.475000px;}
.y56{bottom:389.670000px;}
.y73{bottom:391.065000px;}
.y10b{bottom:395.895000px;}
.y5e{bottom:398.265000px;}
.y29{bottom:398.625000px;}
.yfe{bottom:399.630000px;}
.y107{bottom:399.960000px;}
.y84{bottom:400.500000px;}
.y48{bottom:401.010000px;}
.yb5{bottom:407.265000px;}
.yae{bottom:409.539363px;}
.y6{bottom:411.510000px;}
.y79{bottom:413.790000px;}
.y1f{bottom:416.850000px;}
.y66{bottom:427.680000px;}
.y47{bottom:430.170000px;}
.y14{bottom:432.465000px;}
.yfd{bottom:435.450000px;}
.y33{bottom:435.675000px;}
.y72{bottom:436.605000px;}
.y28{bottom:441.465000px;}
.y10a{bottom:446.325000px;}
.yb4{bottom:450.465000px;}
.y5{bottom:452.550000px;}
.yaf{bottom:454.008436px;}
.y78{bottom:456.990000px;}
.ye8{bottom:458.460000px;}
.y55{bottom:459.510000px;}
.yca{bottom:469.440000px;}
.y46{bottom:470.850000px;}
.yfc{bottom:471.090000px;}
.y38{bottom:471.165000px;}
.y19{bottom:473.505000px;}
.y32{bottom:478.905000px;}
.y13{bottom:484.665000px;}
.yfa{bottom:485.025000px;}
.y54{bottom:488.700000px;}
.y4{bottom:490.350000px;}
.y5d{bottom:493.665000px;}
.y109{bottom:496.725000px;}
.yb0{bottom:498.464344px;}
.y65{bottom:498.990000px;}
.y45{bottom:500.040000px;}
.y77{bottom:500.190000px;}
.y37{bottom:500.505000px;}
.yda{bottom:511.020000px;}
.y18{bottom:525.885000px;}
.y12{bottom:527.865000px;}
.yf7{bottom:529.020000px;}
.y44{bottom:529.200000px;}
.y36{bottom:529.665000px;}
.y31{bottom:531.105000px;}
.y27{bottom:536.865000px;}
.y71{bottom:537.870000px;}
.y3{bottom:538.590000px;}
.yb1{bottom:542.933417px;}
.y108{bottom:543.885000px;}
.y7f{bottom:545.400000px;}
.y1d{bottom:554.040000px;}
.y1a{bottom:556.020000px;}
.y43{bottom:558.540000px;}
.y81{bottom:566.790000px;}
.y7e{bottom:569.700000px;}
.y30{bottom:574.305000px;}
.y11{bottom:580.110000px;}
.y42{bottom:587.700000px;}
.y2{bottom:588.990000px;}
.y1c{bottom:589.860000px;}
.y106{bottom:597.090000px;}
.y80{bottom:608.910000px;}
.y9d{bottom:621.540000px;}
.y1b{bottom:625.500000px;}
.y70{bottom:625.575000px;}
.y2f{bottom:626.550000px;}
.y1{bottom:639.390000px;}
.y6f{bottom:643.605000px;}
.y64{bottom:654.405000px;}
.y105{bottom:654.510000px;}
.y10{bottom:657.645000px;}
.y9f{bottom:658.365000px;}
.y40{bottom:666.645000px;}
.y9c{bottom:675.540000px;}
.y2e{bottom:678.750000px;}
.ydd{bottom:683.715000px;}
.y17{bottom:690.270000px;}
.y6d{bottom:692.175000px;}
.y63{bottom:693.645000px;}
.yfb{bottom:694.185000px;}
.y6e{bottom:695.805000px;}
.ybf{bottom:700.770000px;}
.y35{bottom:711.645000px;}
.y104{bottom:712.110000px;}
.y9e{bottom:715.245000px;}
.y9b{bottom:729.540000px;}
.y2d{bottom:750.705000px;}
.h32{height:27.645072px;}
.h4a{height:30.240000px;}
.h41{height:31.320000px;}
.h9{height:57.046289px;}
.h3{height:57.183750px;}
.h26{height:57.362259px;}
.h25{height:57.453166px;}
.h31{height:57.737049px;}
.h29{height:61.715220px;}
.h33{height:61.922184px;}
.h3b{height:63.232031px;}
.h3e{height:63.369492px;}
.h21{height:65.634787px;}
.h2e{height:65.854897px;}
.h2c{height:65.946108px;}
.h36{height:68.730469px;}
.h48{height:69.086250px;}
.h49{height:70.560000px;}
.h40{height:72.180000px;}
.h44{height:74.228906px;}
.h14{height:76.279219px;}
.h43{height:80.414648px;}
.h8{height:85.913086px;}
.h1e{height:88.286133px;}
.h6{height:91.411523px;}
.h4b{height:91.980000px;}
.h1b{height:93.936445px;}
.h1a{height:94.077703px;}
.h7{height:97.597266px;}
.h13{height:103.095703px;}
.hf{height:105.943359px;}
.h15{height:106.084617px;}
.h42{height:106.560000px;}
.h47{height:110.880000px;}
.h51{height:112.640625px;}
.h3f{height:112.860000px;}
.h17{height:114.779883px;}
.h16{height:117.950273px;}
.h5{height:125.776758px;}
.h3d{height:126.540000px;}
.h10{height:129.250898px;}
.h11{height:129.392156px;}
.h46{height:129.780000px;}
.h4{height:131.962500px;}
.he{height:137.460938px;}
.h34{height:137.598398px;}
.h45{height:140.040000px;}
.hb{height:141.257812px;}
.hc{height:141.399070px;}
.h3a{height:148.140000px;}
.h3c{height:148.320000px;}
.h1f{height:153.264727px;}
.h12{height:158.915039px;}
.h2{height:160.141992px;}
.h1{height:160.279453px;}
.h27{height:174.172254px;}
.h24{height:175.156278px;}
.ha{height:176.572266px;}
.hd{height:176.713523px;}
.h2a{height:188.579180px;}
.h4c{height:188.720438px;}
.h37{height:226.980000px;}
.h50{height:228.872461px;}
.h4f{height:235.194258px;}
.h4e{height:235.335516px;}
.h4d{height:245.129930px;}
.h18{height:259.208086px;}
.h19{height:259.349344px;}
.h22{height:259.782344px;}
.h30{height:272.501424px;}
.h2d{height:275.463396px;}
.h38{height:278.820000px;}
.h2b{height:282.374664px;}
.h39{height:287.640000px;}
.h35{height:287.820000px;}
.h23{height:305.047450px;}
.h20{height:312.919642px;}
.h1c{height:317.830078px;}
.h1d{height:317.971336px;}
.h2f{height:564.749328px;}
.h28{height:634.695226px;}
.h0{height:810.000000px;}
.we{width:32.040000px;}
.w18{width:34.560000px;}
.w19{width:34.740000px;}
.w7{width:40.501945px;}
.w8{width:41.489797px;}
.wd{width:42.300000px;}
.w9{width:42.477649px;}
.w2{width:60.433362px;}
.w1{width:71.512811px;}
.w1c{width:114.300000px;}
.w15{width:126.540000px;}
.w1b{width:127.080000px;}
.w14{width:138.780000px;}
.w5{width:159.141186px;}
.w11{width:178.740000px;}
.w1a{width:178.920000px;}
.w13{width:183.600000px;}
.wf{width:183.780000px;}
.w3{width:184.321753px;}
.w10{width:188.280000px;}
.w12{width:189.180000px;}
.w1d{width:209.700000px;}
.w16{width:217.800000px;}
.w4{width:218.567324px;}
.wb{width:222.266770px;}
.w17{width:228.420000px;}
.w1e{width:228.600000px;}
.wc{width:327.966968px;}
.wa{width:816.953862px;}
.w6{width:977.999806px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x40{left:7.902818px;}
.x5e{left:9.570000px;}
.x21{left:10.800000px;}
.x42{left:12.868423px;}
.x35{left:14.033970px;}
.x30{left:15.108340px;}
.x4c{left:19.950000px;}
.x51{left:24.450000px;}
.x54{left:29.772000px;}
.x4e{left:30.930000px;}
.x4f{left:32.730000px;}
.x37{left:34.111275px;}
.x53{left:39.315000px;}
.x22{left:43.020000px;}
.xf{left:47.448000px;}
.x2c{left:48.996000px;}
.x2b{left:50.616000px;}
.x5f{left:52.092000px;}
.x28{left:55.296000px;}
.xb{left:57.492000px;}
.x4b{left:58.830000px;}
.x25{left:61.848000px;}
.x9{left:64.800000px;}
.xc{left:65.808000px;}
.x5c{left:71.100000px;}
.x12{left:74.556000px;}
.x60{left:79.092000px;}
.x43{left:83.016000px;}
.x20{left:84.420000px;}
.x3f{left:85.939262px;}
.x26{left:88.848000px;}
.x27{left:90.612000px;}
.x1{left:91.620000px;}
.x1e{left:93.888000px;}
.xa{left:97.020000px;}
.x2{left:100.080000px;}
.x36{left:102.000000px;}
.x13{left:106.776000px;}
.x5{left:109.260000px;}
.x1f{left:117.288000px;}
.x52{left:120.060000px;}
.x1d{left:121.608000px;}
.x3a{left:139.283286px;}
.x1a{left:143.280000px;}
.x18{left:174.930000px;}
.x39{left:177.765000px;}
.x11{left:201.390000px;}
.x3b{left:203.493687px;}
.x2d{left:204.735000px;}
.xd{left:205.920000px;}
.x29{left:209.310000px;}
.x32{left:221.859501px;}
.x10{left:228.390000px;}
.x2e{left:231.735000px;}
.xe{left:232.920000px;}
.x2a{left:236.310000px;}
.x24{left:249.990000px;}
.x3c{left:266.716235px;}
.x7{left:275.220000px;}
.x61{left:280.830000px;}
.x16{left:307.185000px;}
.x19{left:308.520000px;}
.x14{left:310.425000px;}
.x33{left:314.523988px;}
.x17{left:327.525000px;}
.x15{left:330.765000px;}
.x5a{left:349.920000px;}
.x5b{left:352.260000px;}
.x49{left:357.840000px;}
.x4a{left:364.320000px;}
.x50{left:366.840000px;}
.x23{left:370.800000px;}
.x59{left:380.340000px;}
.x48{left:388.800000px;}
.x38{left:395.430000px;}
.x58{left:404.820000px;}
.x56{left:424.440000px;}
.x44{left:435.060000px;}
.x47{left:441.720000px;}
.x3d{left:458.359583px;}
.x57{left:475.920000px;}
.x6{left:523.155000px;}
.x3{left:528.555000px;}
.x8{left:537.015000px;}
.x31{left:539.134649px;}
.x45{left:543.240000px;}
.x1b{left:561.315000px;}
.x46{left:583.920000px;}
.x3e{left:586.780384px;}
.x4{left:588.855000px;}
.x1c{left:606.495000px;}
.x4d{left:613.080000px;}
.x2f{left:662.015818px;}
.x41{left:680.626353px;}
.x5d{left:707.940000px;}
.x55{left:751.860000px;}
.x34{left:829.214785px;}
@media print{
.v2{vertical-align:-122.506667pt;}
.v1{vertical-align:-4.586667pt;}
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.587790pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.348267pt;}
.ls14{letter-spacing:-0.341333pt;}
.ls1c{letter-spacing:-0.326933pt;}
.ls2a{letter-spacing:-0.292267pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.224000pt;}
.ls2d{letter-spacing:-0.218667pt;}
.ls1f{letter-spacing:-0.200533pt;}
.ls9{letter-spacing:-0.172800pt;}
.ls2e{letter-spacing:-0.168533pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.137600pt;}
.ls39{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.104533pt;}
.ls40{letter-spacing:-0.100267pt;}
.ls3c{letter-spacing:-0.097067pt;}
.ls37{letter-spacing:-0.080533pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.032000pt;}
.ls41{letter-spacing:-0.026880pt;}
.ls16{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:-0.008960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.067200pt;}
.ls42{letter-spacing:0.119467pt;}
.ls3a{letter-spacing:0.122667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.146667pt;}
.ls32{letter-spacing:0.156267pt;}
.ls4{letter-spacing:0.160000pt;}
.ls44{letter-spacing:0.173333pt;}
.ls45{letter-spacing:0.186667pt;}
.ls24{letter-spacing:0.192000pt;}
.ls3f{letter-spacing:0.200533pt;}
.lsc{letter-spacing:0.227584pt;}
.ls3d{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.284267pt;}
.lsf{letter-spacing:0.284416pt;}
.ls28{letter-spacing:0.286933pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.421333pt;}
.lsd{letter-spacing:0.924416pt;}
.ls35{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.564416pt;}
.ls30{letter-spacing:1.600000pt;}
.ls36{letter-spacing:2.204416pt;}
.ls10{letter-spacing:2.240000pt;}
.ls2f{letter-spacing:8.960000pt;}
.ls33{letter-spacing:11.838720pt;}
.ls18{letter-spacing:12.352000pt;}
.ls12{letter-spacing:14.144000pt;}
.ls31{letter-spacing:18.432000pt;}
.ls43{letter-spacing:19.306667pt;}
.ls25{letter-spacing:20.659712pt;}
.ls27{letter-spacing:20.737280pt;}
.ls8{letter-spacing:24.947712pt;}
.ls7{letter-spacing:25.025280pt;}
.ls6{letter-spacing:34.612352pt;}
.ls5{letter-spacing:34.726400pt;}
.ls19{letter-spacing:41.152000pt;}
.ls26{letter-spacing:48.656640pt;}
.ls17{letter-spacing:144.156416pt;}
.ls11{letter-spacing:388.629333pt;}
.ls3e{letter-spacing:580.418773pt;}
.wse{word-spacing:-96.000000pt;}
.ws8{word-spacing:-44.515584pt;}
.ws25{word-spacing:-44.480000pt;}
.ws9{word-spacing:-40.032000pt;}
.ws2e{word-spacing:-35.840000pt;}
.ws27{word-spacing:-35.775851pt;}
.ws26{word-spacing:-35.712000pt;}
.wsb{word-spacing:-35.619584pt;}
.ws7{word-spacing:-35.584000pt;}
.ws29{word-spacing:-35.539051pt;}
.wsc{word-spacing:-35.515051pt;}
.ws28{word-spacing:-35.328000pt;}
.wsd{word-spacing:-35.278251pt;}
.ws2a{word-spacing:-35.271317pt;}
.ws3{word-spacing:-34.494827pt;}
.ws0{word-spacing:-34.384896pt;}
.ws1{word-spacing:-34.348160pt;}
.ws2{word-spacing:-34.339200pt;}
.ws30{word-spacing:-32.850944pt;}
.ws35{word-spacing:-32.781611pt;}
.ws32{word-spacing:-32.759893pt;}
.ws34{word-spacing:-32.732693pt;}
.ws33{word-spacing:-32.678827pt;}
.ws31{word-spacing:-32.532480pt;}
.ws2f{word-spacing:-32.494677pt;}
.wsa{word-spacing:-32.025600pt;}
.ws10{word-spacing:-27.552000pt;}
.wsf{word-spacing:-27.488000pt;}
.ws19{word-spacing:-26.688000pt;}
.ws15{word-spacing:-26.656000pt;}
.ws16{word-spacing:-26.624000pt;}
.ws17{word-spacing:-26.585984pt;}
.ws12{word-spacing:-26.528000pt;}
.ws18{word-spacing:-26.523051pt;}
.ws1a{word-spacing:-26.464000pt;}
.ws13{word-spacing:-26.432000pt;}
.ws1c{word-spacing:-26.400000pt;}
.ws14{word-spacing:-26.396651pt;}
.ws5{word-spacing:-26.082560pt;}
.ws1d{word-spacing:-26.048000pt;}
.ws1b{word-spacing:-25.984000pt;}
.ws4{word-spacing:-24.850773pt;}
.ws23{word-spacing:-23.950293pt;}
.ws20{word-spacing:-23.730560pt;}
.ws24{word-spacing:-23.663360pt;}
.ws22{word-spacing:-23.494827pt;}
.ws21{word-spacing:-23.444693pt;}
.ws1e{word-spacing:-23.406677pt;}
.ws1f{word-spacing:-23.314944pt;}
.ws11{word-spacing:-19.200000pt;}
.ws2b{word-spacing:-18.112000pt;}
.ws2c{word-spacing:-17.021227pt;}
.ws2d{word-spacing:-16.271573pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-43.829333pt;}
._25{margin-left:-6.789573pt;}
._6{margin-left:-3.383637pt;}
._1{margin-left:-2.423808pt;}
._0{margin-left:-1.107029pt;}
._2{width:1.016875pt;}
._3{width:2.392491pt;}
._4{width:3.658197pt;}
._27{width:5.236808pt;}
._28{width:6.651108pt;}
._26{width:8.181095pt;}
._20{width:9.150507pt;}
._2f{width:10.985557pt;}
._13{width:11.968000pt;}
._14{width:12.906667pt;}
._2c{width:18.767019pt;}
._2d{width:19.784107pt;}
._29{width:21.004265pt;}
._a{width:24.064000pt;}
._2e{width:37.073792pt;}
._1c{width:40.800000pt;}
._19{width:42.080000pt;}
._24{width:43.541333pt;}
._23{width:44.565333pt;}
._1f{width:48.655872pt;}
._11{width:54.762667pt;}
._18{width:56.103125pt;}
._22{width:65.109333pt;}
._21{width:66.069333pt;}
._1e{width:71.723435pt;}
._d{width:74.282667pt;}
._17{width:79.204736pt;}
._16{width:99.168000pt;}
._1b{width:113.879467pt;}
._1a{width:114.790144pt;}
._8{width:117.770667pt;}
._9{width:138.410667pt;}
._10{width:144.555648pt;}
._12{width:167.296000pt;}
._2a{width:190.255488pt;}
._15{width:217.152000pt;}
._c{width:228.202667pt;}
._b{width:301.418667pt;}
._1d{width:331.434667pt;}
._2b{width:339.626667pt;}
._f{width:389.962667pt;}
._7{width:523.562667pt;}
._e{width:687.466667pt;}
.fs21{font-size:52.597907pt;}
.fs26{font-size:52.774296pt;}
.fsa{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs28{font-size:58.880000pt;}
.fs29{font-size:59.008000pt;}
.fs27{font-size:64.000000pt;}
.fs15{font-size:69.120000pt;}
.fs20{font-size:73.590419pt;}
.fs1f{font-size:73.707044pt;}
.fs25{font-size:74.071241pt;}
.fs2a{font-size:74.880000pt;}
.fs9{font-size:80.000000pt;}
.fs1e{font-size:84.203301pt;}
.fs24{font-size:84.485680pt;}
.fs23{font-size:84.602697pt;}
.fs7{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fsd{font-size:89.600000pt;}
.fse{font-size:89.728000pt;}
.fs8{font-size:90.880000pt;}
.fs11{font-size:96.000000pt;}
.fs16{font-size:96.128000pt;}
.fs17{font-size:106.880000pt;}
.fs14{font-size:115.200000pt;}
.fs6{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fs2{font-size:119.680000pt;}
.fs1{font-size:119.808000pt;}
.fs5{font-size:122.880000pt;}
.fsc{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs1d{font-size:138.880000pt;}
.fs13{font-size:144.000000pt;}
.fs3{font-size:149.120000pt;}
.fs0{font-size:149.248000pt;}
.fsb{font-size:160.000000pt;}
.fs10{font-size:160.128000pt;}
.fs22{font-size:170.880000pt;}
.fs2b{font-size:171.008000pt;}
.fs2e{font-size:213.120000pt;}
.fs2d{font-size:213.248000pt;}
.fs18{font-size:234.880000pt;}
.fs19{font-size:235.008000pt;}
.fs1b{font-size:288.000000pt;}
.fs1c{font-size:288.128000pt;}
.fs2c{font-size:347.008000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:0.000244pt;}
.y8c{bottom:4.373324pt;}
.yb3{bottom:6.962463pt;}
.yf6{bottom:12.960000pt;}
.yd9{bottom:13.248000pt;}
.yf9{bottom:36.293333pt;}
.yc4{bottom:37.280000pt;}
.yef{bottom:40.320000pt;}
.ya2{bottom:45.613103pt;}
.yf5{bottom:48.832000pt;}
.ydc{bottom:49.280000pt;}
.ye4{bottom:49.440000pt;}
.yd8{bottom:49.568000pt;}
.y9a{bottom:52.364412pt;}
.ye2{bottom:56.320000pt;}
.yf8{bottom:58.693333pt;}
.yc7{bottom:59.520000pt;}
.y52{bottom:65.664000pt;}
.y97{bottom:68.225666pt;}
.ye6{bottom:71.040000pt;}
.ydb{bottom:71.680000pt;}
.yf3{bottom:74.626667pt;}
.ya4{bottom:79.840335pt;}
.yd2{bottom:80.192000pt;}
.yd6{bottom:82.013333pt;}
.yf1{bottom:83.040000pt;}
.ybe{bottom:83.552000pt;}
.yf4{bottom:84.736000pt;}
.yd7{bottom:85.856000pt;}
.yed{bottom:92.186667pt;}
.yea{bottom:92.226667pt;}
.ye0{bottom:96.000000pt;}
.yd1{bottom:97.946667pt;}
.ycf{bottom:99.613333pt;}
.yd5{bottom:99.653333pt;}
.ycc{bottom:99.680000pt;}
.yf0{bottom:100.800000pt;}
.ye7{bottom:103.520000pt;}
.y95{bottom:106.711939pt;}
.yec{bottom:109.946667pt;}
.ye9{bottom:109.986667pt;}
.y51{bottom:110.336000pt;}
.y8a{bottom:113.709444pt;}
.y62{bottom:115.552000pt;}
.yce{bottom:117.373333pt;}
.yd4{bottom:117.413333pt;}
.ycb{bottom:117.440000pt;}
.ya0{bottom:119.333295pt;}
.yc9{bottom:125.440000pt;}
.yf{bottom:126.400000pt;}
.yd0{bottom:126.880000pt;}
.ya8{bottom:126.936809pt;}
.yde{bottom:127.840000pt;}
.ybd{bottom:129.952000pt;}
.y26{bottom:132.384000pt;}
.yee{bottom:134.400000pt;}
.yd3{bottom:135.680000pt;}
.y94{bottom:136.882845pt;}
.y92{bottom:137.151083pt;}
.y98{bottom:137.174408pt;}
.y96{bottom:137.465970pt;}
.y50{bottom:138.653333pt;}
.yc2{bottom:139.360000pt;}
.y3e{bottom:140.026667pt;}
.yf2{bottom:143.200000pt;}
.y89{bottom:143.493333pt;}
.y93{bottom:146.072901pt;}
.ye{bottom:147.200000pt;}
.yc0{bottom:149.920000pt;}
.y8f{bottom:150.446341pt;}
.y61{bottom:153.946667pt;}
.y6c{bottom:158.053333pt;}
.y3d{bottom:158.746667pt;}
.yb8{bottom:161.946667pt;}
.y25{bottom:164.226667pt;}
.y4f{bottom:164.573333pt;}
.ya9{bottom:166.453173pt;}
.yd{bottom:168.000000pt;}
.y3f{bottom:172.960000pt;}
.y41{bottom:175.680000pt;}
.ybc{bottom:176.346667pt;}
.y53{bottom:179.360000pt;}
.y5c{bottom:180.413333pt;}
.yc5{bottom:183.840000pt;}
.y91{bottom:184.559174pt;}
.y6b{bottom:185.893333pt;}
.y103{bottom:185.920000pt;}
.y88{bottom:187.173333pt;}
.y10c{bottom:188.066667pt;}
.yc{bottom:190.240000pt;}
.y4e{bottom:190.493333pt;}
.y60{bottom:192.386667pt;}
.y24{bottom:195.906667pt;}
.y7d{bottom:198.173333pt;}
.yb7{bottom:200.386667pt;}
.yaa{bottom:205.981238pt;}
.y5b{bottom:206.333333pt;}
.y8d{bottom:208.840630pt;}
.y83{bottom:209.213333pt;}
.y6a{bottom:212.773333pt;}
.yb{bottom:218.080000pt;}
.ybb{bottom:222.786667pt;}
.y1e{bottom:222.906667pt;}
.ya3{bottom:222.971987pt;}
.y102{bottom:223.040000pt;}
.y87{bottom:224.773333pt;}
.yb2{bottom:224.785737pt;}
.y4d{bottom:226.653333pt;}
.ya5{bottom:228.272819pt;}
.ya1{bottom:228.296223pt;}
.ya7{bottom:229.269797pt;}
.yc6{bottom:229.920000pt;}
.y5f{bottom:230.786667pt;}
.y5a{bottom:232.413333pt;}
.y23{bottom:233.053333pt;}
.y69{bottom:235.813333pt;}
.ye3{bottom:236.480000pt;}
.ye1{bottom:236.506667pt;}
.ydf{bottom:236.546667pt;}
.ye5{bottom:236.613333pt;}
.yc8{bottom:237.826667pt;}
.yc1{bottom:237.853333pt;}
.yc3{bottom:237.920000pt;}
.y76{bottom:237.986667pt;}
.y2c{bottom:238.786667pt;}
.y82{bottom:239.293333pt;}
.y7c{bottom:244.573333pt;}
.yab{bottom:245.497601pt;}
.ya{bottom:247.840000pt;}
.y8e{bottom:249.192905pt;}
.y4c{bottom:252.573333pt;}
.y101{bottom:254.720000pt;}
.y8b{bottom:255.665479pt;}
.y90{bottom:255.782104pt;}
.y59{bottom:258.333333pt;}
.y68{bottom:258.853333pt;}
.y22{bottom:264.733333pt;}
.y86{bottom:268.453333pt;}
.yba{bottom:269.186667pt;}
.y75{bottom:272.573333pt;}
.y3c{bottom:275.453333pt;}
.ya6{bottom:276.425174pt;}
.y2b{bottom:277.186667pt;}
.y9{bottom:277.626667pt;}
.y4b{bottom:278.533333pt;}
.y58{bottom:284.293333pt;}
.y39{bottom:284.546667pt;}
.yac{bottom:285.025666pt;}
.y100{bottom:286.586667pt;}
.y7b{bottom:290.973333pt;}
.y16{bottom:291.586667pt;}
.y3b{bottom:301.573333pt;}
.y21{bottom:301.693333pt;}
.yeb{bottom:304.320000pt;}
.y4a{bottom:304.613333pt;}
.y8{bottom:307.066667pt;}
.ycd{bottom:308.320000pt;}
.y57{bottom:310.373333pt;}
.y85{bottom:312.320000pt;}
.y74{bottom:313.053333pt;}
.y2a{bottom:315.586667pt;}
.yb9{bottom:315.746667pt;}
.y67{bottom:316.640000pt;}
.yff{bottom:318.266667pt;}
.yb6{bottom:323.586667pt;}
.yad{bottom:324.518626pt;}
.y3a{bottom:327.493333pt;}
.y7a{bottom:329.413333pt;}
.y49{bottom:330.533333pt;}
.y20{bottom:333.533333pt;}
.y7{bottom:335.546667pt;}
.y15{bottom:338.013333pt;}
.y34{bottom:340.866667pt;}
.y56{bottom:346.373333pt;}
.y73{bottom:347.613333pt;}
.y10b{bottom:351.906667pt;}
.y5e{bottom:354.013333pt;}
.y29{bottom:354.333333pt;}
.yfe{bottom:355.226667pt;}
.y107{bottom:355.520000pt;}
.y84{bottom:356.000000pt;}
.y48{bottom:356.453333pt;}
.yb5{bottom:362.013333pt;}
.yae{bottom:364.034989pt;}
.y6{bottom:365.786667pt;}
.y79{bottom:367.813333pt;}
.y1f{bottom:370.533333pt;}
.y66{bottom:380.160000pt;}
.y47{bottom:382.373333pt;}
.y14{bottom:384.413333pt;}
.yfd{bottom:387.066667pt;}
.y33{bottom:387.266667pt;}
.y72{bottom:388.093333pt;}
.y28{bottom:392.413333pt;}
.y10a{bottom:396.733333pt;}
.yb4{bottom:400.413333pt;}
.y5{bottom:402.266667pt;}
.yaf{bottom:403.563054pt;}
.y78{bottom:406.213333pt;}
.ye8{bottom:407.520000pt;}
.y55{bottom:408.453333pt;}
.yca{bottom:417.280000pt;}
.y46{bottom:418.533333pt;}
.yfc{bottom:418.746667pt;}
.y38{bottom:418.813333pt;}
.y19{bottom:420.893333pt;}
.y32{bottom:425.693333pt;}
.y13{bottom:430.813333pt;}
.yfa{bottom:431.133333pt;}
.y54{bottom:434.400000pt;}
.y4{bottom:435.866667pt;}
.y5d{bottom:438.813333pt;}
.y109{bottom:441.533333pt;}
.yb0{bottom:443.079417pt;}
.y65{bottom:443.546667pt;}
.y45{bottom:444.480000pt;}
.y77{bottom:444.613333pt;}
.y37{bottom:444.893333pt;}
.yda{bottom:454.240000pt;}
.y18{bottom:467.453333pt;}
.y12{bottom:469.213333pt;}
.yf7{bottom:470.240000pt;}
.y44{bottom:470.400000pt;}
.y36{bottom:470.813333pt;}
.y31{bottom:472.093333pt;}
.y27{bottom:477.213333pt;}
.y71{bottom:478.106667pt;}
.y3{bottom:478.746667pt;}
.yb1{bottom:482.607482pt;}
.y108{bottom:483.453333pt;}
.y7f{bottom:484.800000pt;}
.y1d{bottom:492.480000pt;}
.y1a{bottom:494.240000pt;}
.y43{bottom:496.480000pt;}
.y81{bottom:503.813333pt;}
.y7e{bottom:506.400000pt;}
.y30{bottom:510.493333pt;}
.y11{bottom:515.653333pt;}
.y42{bottom:522.400000pt;}
.y2{bottom:523.546667pt;}
.y1c{bottom:524.320000pt;}
.y106{bottom:530.746667pt;}
.y80{bottom:541.253333pt;}
.y9d{bottom:552.480000pt;}
.y1b{bottom:556.000000pt;}
.y70{bottom:556.066667pt;}
.y2f{bottom:556.933333pt;}
.y1{bottom:568.346667pt;}
.y6f{bottom:572.093333pt;}
.y64{bottom:581.693333pt;}
.y105{bottom:581.786667pt;}
.y10{bottom:584.573333pt;}
.y9f{bottom:585.213333pt;}
.y40{bottom:592.573333pt;}
.y9c{bottom:600.480000pt;}
.y2e{bottom:603.333333pt;}
.ydd{bottom:607.746667pt;}
.y17{bottom:613.573333pt;}
.y6d{bottom:615.266667pt;}
.y63{bottom:616.573333pt;}
.yfb{bottom:617.053333pt;}
.y6e{bottom:618.493333pt;}
.ybf{bottom:622.906667pt;}
.y35{bottom:632.573333pt;}
.y104{bottom:632.986667pt;}
.y9e{bottom:635.773333pt;}
.y9b{bottom:648.480000pt;}
.y2d{bottom:667.293333pt;}
.h32{height:24.573397pt;}
.h4a{height:26.880000pt;}
.h41{height:27.840000pt;}
.h9{height:50.707812pt;}
.h3{height:50.830000pt;}
.h26{height:50.988674pt;}
.h25{height:51.069481pt;}
.h31{height:51.321821pt;}
.h29{height:54.857973pt;}
.h33{height:55.041942pt;}
.h3b{height:56.206250pt;}
.h3e{height:56.328437pt;}
.h21{height:58.342033pt;}
.h2e{height:58.537686pt;}
.h2c{height:58.618763pt;}
.h36{height:61.093750pt;}
.h48{height:61.410000pt;}
.h49{height:62.720000pt;}
.h40{height:64.160000pt;}
.h44{height:65.981250pt;}
.h14{height:67.803750pt;}
.h43{height:71.479687pt;}
.h8{height:76.367188pt;}
.h1e{height:78.476562pt;}
.h6{height:81.254688pt;}
.h4b{height:81.760000pt;}
.h1b{height:83.499062pt;}
.h1a{height:83.624625pt;}
.h7{height:86.753125pt;}
.h13{height:91.640625pt;}
.hf{height:94.171875pt;}
.h15{height:94.297438pt;}
.h42{height:94.720000pt;}
.h47{height:98.560000pt;}
.h51{height:100.125000pt;}
.h3f{height:100.320000pt;}
.h17{height:102.026562pt;}
.h16{height:104.844687pt;}
.h5{height:111.801562pt;}
.h3d{height:112.480000pt;}
.h10{height:114.889687pt;}
.h11{height:115.015250pt;}
.h46{height:115.360000pt;}
.h4{height:117.300000pt;}
.he{height:122.187500pt;}
.h34{height:122.309687pt;}
.h45{height:124.480000pt;}
.hb{height:125.562500pt;}
.hc{height:125.688063pt;}
.h3a{height:131.680000pt;}
.h3c{height:131.840000pt;}
.h1f{height:136.235313pt;}
.h12{height:141.257812pt;}
.h2{height:142.348437pt;}
.h1{height:142.470625pt;}
.h27{height:154.819781pt;}
.h24{height:155.694469pt;}
.ha{height:156.953125pt;}
.hd{height:157.078688pt;}
.h2a{height:167.625937pt;}
.h4c{height:167.751500pt;}
.h37{height:201.760000pt;}
.h50{height:203.442187pt;}
.h4f{height:209.061562pt;}
.h4e{height:209.187125pt;}
.h4d{height:217.893271pt;}
.h18{height:230.407187pt;}
.h19{height:230.532750pt;}
.h22{height:230.917639pt;}
.h30{height:242.223488pt;}
.h2d{height:244.856352pt;}
.h38{height:247.840000pt;}
.h2b{height:250.999702pt;}
.h39{height:255.680000pt;}
.h35{height:255.840000pt;}
.h23{height:271.153289pt;}
.h20{height:278.150793pt;}
.h1c{height:282.515625pt;}
.h1d{height:282.641188pt;}
.h2f{height:501.999403pt;}
.h28{height:564.173534pt;}
.h0{height:720.000000pt;}
.we{width:28.480000pt;}
.w18{width:30.720000pt;}
.w19{width:30.880000pt;}
.w7{width:36.001729pt;}
.w8{width:36.879820pt;}
.wd{width:37.600000pt;}
.w9{width:37.757911pt;}
.w2{width:53.718544pt;}
.w1{width:63.566943pt;}
.w1c{width:101.600000pt;}
.w15{width:112.480000pt;}
.w1b{width:112.960000pt;}
.w14{width:123.360000pt;}
.w5{width:141.458832pt;}
.w11{width:158.880000pt;}
.w1a{width:159.040000pt;}
.w13{width:163.200000pt;}
.wf{width:163.360000pt;}
.w3{width:163.841558pt;}
.w10{width:167.360000pt;}
.w12{width:168.160000pt;}
.w1d{width:186.400000pt;}
.w16{width:193.600000pt;}
.w4{width:194.282066pt;}
.wb{width:197.570462pt;}
.w17{width:203.040000pt;}
.w1e{width:203.200000pt;}
.wc{width:291.526193pt;}
.wa{width:726.181211pt;}
.w6{width:869.333161pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x40{left:7.024728pt;}
.x5e{left:8.506667pt;}
.x21{left:9.600000pt;}
.x42{left:11.438598pt;}
.x35{left:12.474640pt;}
.x30{left:13.429636pt;}
.x4c{left:17.733333pt;}
.x51{left:21.733333pt;}
.x54{left:26.464000pt;}
.x4e{left:27.493333pt;}
.x4f{left:29.093333pt;}
.x37{left:30.321134pt;}
.x53{left:34.946667pt;}
.x22{left:38.240000pt;}
.xf{left:42.176000pt;}
.x2c{left:43.552000pt;}
.x2b{left:44.992000pt;}
.x5f{left:46.304000pt;}
.x28{left:49.152000pt;}
.xb{left:51.104000pt;}
.x4b{left:52.293333pt;}
.x25{left:54.976000pt;}
.x9{left:57.600000pt;}
.xc{left:58.496000pt;}
.x5c{left:63.200000pt;}
.x12{left:66.272000pt;}
.x60{left:70.304000pt;}
.x43{left:73.792000pt;}
.x20{left:75.040000pt;}
.x3f{left:76.390455pt;}
.x26{left:78.976000pt;}
.x27{left:80.544000pt;}
.x1{left:81.440000pt;}
.x1e{left:83.456000pt;}
.xa{left:86.240000pt;}
.x2{left:88.960000pt;}
.x36{left:90.666667pt;}
.x13{left:94.912000pt;}
.x5{left:97.120000pt;}
.x1f{left:104.256000pt;}
.x52{left:106.720000pt;}
.x1d{left:108.096000pt;}
.x3a{left:123.807366pt;}
.x1a{left:127.360000pt;}
.x18{left:155.493333pt;}
.x39{left:158.013333pt;}
.x11{left:179.013333pt;}
.x3b{left:180.883277pt;}
.x2d{left:181.986667pt;}
.xd{left:183.040000pt;}
.x29{left:186.053333pt;}
.x32{left:197.208445pt;}
.x10{left:203.013333pt;}
.x2e{left:205.986667pt;}
.xe{left:207.040000pt;}
.x2a{left:210.053333pt;}
.x24{left:222.213333pt;}
.x3c{left:237.081097pt;}
.x7{left:244.640000pt;}
.x61{left:249.626667pt;}
.x16{left:273.053333pt;}
.x19{left:274.240000pt;}
.x14{left:275.933333pt;}
.x33{left:279.576878pt;}
.x17{left:291.133333pt;}
.x15{left:294.013333pt;}
.x5a{left:311.040000pt;}
.x5b{left:313.120000pt;}
.x49{left:318.080000pt;}
.x4a{left:323.840000pt;}
.x50{left:326.080000pt;}
.x23{left:329.600000pt;}
.x59{left:338.080000pt;}
.x48{left:345.600000pt;}
.x38{left:351.493333pt;}
.x58{left:359.840000pt;}
.x56{left:377.280000pt;}
.x44{left:386.720000pt;}
.x47{left:392.640000pt;}
.x3d{left:407.430741pt;}
.x57{left:423.040000pt;}
.x6{left:465.026667pt;}
.x3{left:469.826667pt;}
.x8{left:477.346667pt;}
.x31{left:479.230799pt;}
.x45{left:482.880000pt;}
.x1b{left:498.946667pt;}
.x46{left:519.040000pt;}
.x3e{left:521.582563pt;}
.x4{left:523.426667pt;}
.x1c{left:539.106667pt;}
.x4d{left:544.960000pt;}
.x2f{left:588.458504pt;}
.x41{left:605.001203pt;}
.x5d{left:629.280000pt;}
.x55{left:668.320000pt;}
.x34{left:737.079809pt;}
}




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