
    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_1a767291542a2c1b8d5a5499.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_69e4f7ab1066756a227fff93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.745605;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_2add6aed19f86e7b58fd85b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aa07f8d5b1f38e721141fb3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_7ddb22a683c8c082a8d655bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_e8d842fbd242b80f9c7d8c37.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_e8d6a95986f32cb694e99be2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_06f4d7190362c7daf230fa8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ff01ac466098d5fc44d2196.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ae419d8952f81afc05876dbe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d1153d9854142f71de6bf2cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1087eadca1950163648a73c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.163086;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:ffd;src:url('chunks/assets/font_744d25a0a5b4c6029f038a97.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.056152;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:ffe;src:url('chunks/assets/font_eb6ffb54617b56ca59527e73.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.056152;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:fff;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_86bfbd0f1c7fdc908eb39b16.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.087891;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;}
.m1{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);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-203.760000px;}
.v2{vertical-align:-188.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.480000px;}
.v6{vertical-align:10.656000px;}
.v4{vertical-align:56.700000px;}
.v5{vertical-align:84.240000px;}
.ls6{letter-spacing:-0.381000px;}
.ls2a{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.303600px;}
.ls21{letter-spacing:-0.292200px;}
.ls1d{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.169200px;}
.lsb{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.135600px;}
.ls33{letter-spacing:-0.092400px;}
.lsc{letter-spacing:-0.075600px;}
.lsa{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.036000px;}
.ls15{letter-spacing:-0.000006px;}
.ls3{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.051840px;}
.ls26{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.129600px;}
.lsd{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.170400px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.218880px;}
.ls14{letter-spacing:0.252000px;}
.ls30{letter-spacing:0.259200px;}
.ls1a{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.334080px;}
.ls4{letter-spacing:0.334200px;}
.ls2{letter-spacing:0.338880px;}
.ls28{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.451488px;}
.ls7{letter-spacing:0.504720px;}
.lse{letter-spacing:1.224720px;}
.ls2e{letter-spacing:11.295360px;}
.ls34{letter-spacing:12.735360px;}
.ls27{letter-spacing:13.356000px;}
.ls29{letter-spacing:13.536000px;}
.ls24{letter-spacing:31.099968px;}
.ls23{letter-spacing:31.165920px;}
.ls20{letter-spacing:40.716000px;}
.ls22{letter-spacing:40.740000px;}
.ls2d{letter-spacing:84.909600px;}
.ls2c{letter-spacing:84.960000px;}
.ls25{letter-spacing:89.244000px;}
.ls1b{letter-spacing:93.225600px;}
.ls16{letter-spacing:93.252000px;}
.ls17{letter-spacing:93.264000px;}
.ls1c{letter-spacing:93.276000px;}
.ls11{letter-spacing:97.509600px;}
.ls10{letter-spacing:97.560000px;}
.ls12{letter-spacing:97.629600px;}
.ls13{letter-spacing:97.680000px;}
.ls18{letter-spacing:106.864128px;}
.ls19{letter-spacing:106.930080px;}
.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;}
}
.ws3{word-spacing:-69.480000px;}
.ws8{word-spacing:-50.998320px;}
.ws18{word-spacing:-39.024720px;}
.ws10{word-spacing:-34.084512px;}
.ws7{word-spacing:-34.055280px;}
.wse{word-spacing:-29.261232px;}
.wsa{word-spacing:-29.232000px;}
.ws15{word-spacing:-28.080000px;}
.wsf{word-spacing:-24.408720px;}
.ws14{word-spacing:-23.126400px;}
.ws16{word-spacing:-22.176000px;}
.ws12{word-spacing:-21.953232px;}
.ws11{word-spacing:-21.924000px;}
.ws2{word-spacing:-17.614080px;}
.ws21{word-spacing:-13.498560px;}
.ws23{word-spacing:-13.475952px;}
.ws1e{word-spacing:-13.455360px;}
.ws1d{word-spacing:-13.446720px;}
.ws22{word-spacing:-13.354320px;}
.ws1f{word-spacing:-13.311120px;}
.ws25{word-spacing:-13.306752px;}
.ws19{word-spacing:-11.034000px;}
.ws1a{word-spacing:-10.962000px;}
.ws1c{word-spacing:-10.926000px;}
.ws27{word-spacing:-1.820160px;}
.ws20{word-spacing:-1.818240px;}
.ws28{word-spacing:-0.525600px;}
.ws24{word-spacing:-0.442800px;}
.ws1b{word-spacing:-0.414000px;}
.ws1{word-spacing:-0.397560px;}
.ws0{word-spacing:-0.063360px;}
.ws4{word-spacing:0.000000px;}
.ws26{word-spacing:0.326160px;}
.ws5{word-spacing:72.772320px;}
.ws6{word-spacing:72.857208px;}
.wsc{word-spacing:91.584000px;}
.wsb{word-spacing:95.904000px;}
.ws13{word-spacing:96.336017px;}
.wsd{word-spacing:96.415776px;}
.ws17{word-spacing:1861.848336px;}
.ws9{word-spacing:3391.631040px;}
._5{margin-left:-20.082240px;}
._14{margin-left:-17.079408px;}
._4{margin-left:-10.870992px;}
._15{margin-left:-9.632592px;}
._8{margin-left:-8.166672px;}
._b{margin-left:-7.110000px;}
._c{margin-left:-5.719968px;}
._3{margin-left:-4.681872px;}
._1{margin-left:-3.294720px;}
._6{margin-left:-2.014848px;}
._0{margin-left:-1.013760px;}
._2{width:1.186560px;}
._9{width:3.007440px;}
._f{width:4.054320px;}
._16{width:6.311232px;}
._18{width:9.747408px;}
._17{width:12.412848px;}
._19{width:16.547040px;}
._10{width:20.590848px;}
._13{width:27.767520px;}
._12{width:33.300720px;}
._11{width:37.033920px;}
._a{width:193.712160px;}
._7{width:743.270448px;}
._e{width:1980.309168px;}
._d{width:2104.149168px;}
.fce{color:rgb(70,120,134);}
.fc0{color:rgb(24,65,100);}
.fc1{color:rgb(14,38,57);}
.fc6{color:rgb(14,40,65);}
.fc3{color:rgb(0,0,0);}
.fc7{color:rgb(160,43,147);}
.fc9{color:rgb(255,255,255);}
.fca{color:rgb(34,34,34);}
.fcd{color:rgb(255,80,80);}
.fc4{color:transparent;}
.fcc{color:rgb(45,131,14);}
.fc5{color:rgb(61,95,125);}
.fc2{color:rgb(112,112,112);}
.fc8{color:rgb(233,113,50);}
.fcb{color:rgb(21,96,130);}
.fs1{font-size:48.240000px;}
.fs1b{font-size:54.000000px;}
.fs0{font-size:63.360000px;}
.fs1c{font-size:66.240000px;}
.fs1d{font-size:66.384000px;}
.fsd{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs13{font-size:84.240000px;}
.fs19{font-size:84.384000px;}
.fsa{font-size:90.000000px;}
.fse{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs16{font-size:105.120000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs12{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs18{font-size:126.742821px;}
.fs5{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fsb{font-size:149.760000px;}
.fs7{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs15{font-size:174.240000px;}
.fs1a{font-size:192.240000px;}
.fs17{font-size:239.760000px;}
.fs14{font-size:239.904000px;}
.fs6{font-size:264.240000px;}
.fs4{font-size:360.000000px;}
.fs3{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y3{bottom:9.792000px;}
.y4{bottom:25.776000px;}
.yd5{bottom:34.308000px;}
.yd0{bottom:87.624000px;}
.ycf{bottom:92.160000px;}
.yc2{bottom:94.788000px;}
.ye4{bottom:97.560000px;}
.yd8{bottom:98.820000px;}
.yfc{bottom:103.104000px;}
.y30{bottom:104.148000px;}
.y86{bottom:104.436000px;}
.y92{bottom:104.685000px;}
.y88{bottom:104.730000px;}
.y113{bottom:106.344000px;}
.ya5{bottom:107.640000px;}
.y93{bottom:109.800000px;}
.yda{bottom:111.204000px;}
.y19{bottom:113.976000px;}
.y112{bottom:120.924000px;}
.y137{bottom:121.248000px;}
.yaa{bottom:122.616000px;}
.y9a{bottom:122.724000px;}
.yd7{bottom:124.056000px;}
.y5f{bottom:125.676000px;}
.y2f{bottom:127.404000px;}
.y9d{bottom:128.052000px;}
.yc1{bottom:130.788000px;}
.y111{bottom:135.504000px;}
.yfb{bottom:135.540000px;}
.y125{bottom:137.124000px;}
.y136{bottom:139.068000px;}
.ya3{bottom:145.440000px;}
.y8f{bottom:147.600000px;}
.ycd{bottom:148.392000px;}
.yd6{bottom:149.256000px;}
.y97{bottom:149.652000px;}
.y79{bottom:153.540000px;}
.y124{bottom:154.950000px;}
.y99{bottom:155.130000px;}
.y2e{bottom:156.210000px;}
.y5e{bottom:158.070000px;}
.y9c{bottom:160.455000px;}
.y18{bottom:162.900000px;}
.y110{bottom:165.030000px;}
.ya9{bottom:167.505000px;}
.yfa{bottom:167.940000px;}
.y8{bottom:170.640000px;}
.y135{bottom:171.825000px;}
.y10f{bottom:179.610000px;}
.y96{bottom:182.055000px;}
.ye1{bottom:183.135000px;}
.ya4{bottom:183.240000px;}
.yd4{bottom:183.990000px;}
.yf6{bottom:184.320000px;}
.y91{bottom:185.400000px;}
.y78{bottom:185.940000px;}
.y98{bottom:187.530000px;}
.y123{bottom:187.710000px;}
.y134{bottom:189.645000px;}
.ya6{bottom:190.230000px;}
.y5d{bottom:190.470000px;}
.y9b{bottom:192.855000px;}
.yab{bottom:198.720000px;}
.y90{bottom:201.885000px;}
.y8d{bottom:201.930000px;}
.yf9{bottom:202.680000px;}
.yc0{bottom:202.785000px;}
.y122{bottom:205.530000px;}
.y17{bottom:208.260000px;}
.y10e{bottom:209.310000px;}
.ya8{bottom:210.750000px;}
.ye9{bottom:217.080000px;}
.y6e{bottom:218.730000px;}
.yb5{bottom:219.420000px;}
.y52{bottom:219.570000px;}
.ycc{bottom:220.425000px;}
.ya1{bottom:221.040000px;}
.y133{bottom:222.405000px;}
.y5c{bottom:222.915000px;}
.y8b{bottom:223.200000px;}
.y10d{bottom:223.890000px;}
.y7{bottom:224.460000px;}
.yd3{bottom:225.930000px;}
.yf{bottom:227.190000px;}
.y8c{bottom:234.330000px;}
.y121{bottom:238.470000px;}
.ybf{bottom:238.830000px;}
.y85{bottom:239.250000px;}
.y132{bottom:240.225000px;}
.y1d{bottom:242.310000px;}
.yf3{bottom:245.085000px;}
.y66{bottom:248.475000px;}
.ye8{bottom:249.480000px;}
.y51{bottom:251.970000px;}
.y10c{bottom:253.410000px;}
.y16{bottom:253.650000px;}
.y5b{bottom:255.315000px;}
.yb4{bottom:255.420000px;}
.y120{bottom:256.290000px;}
.ya2{bottom:258.840000px;}
.y8e{bottom:261.000000px;}
.y7d{bottom:262.950000px;}
.y73{bottom:266.685000px;}
.y10b{bottom:267.990000px;}
.yd2{bottom:268.050000px;}
.yef{bottom:269.025000px;}
.y131{bottom:273.165000px;}
.ybe{bottom:274.830000px;}
.y65{bottom:280.875000px;}
.y84{bottom:281.370000px;}
.ye7{bottom:281.880000px;}
.y6d{bottom:283.530000px;}
.y50{bottom:284.400000px;}
.ye{bottom:287.670000px;}
.y5a{bottom:287.715000px;}
.y11f{bottom:289.080000px;}
.ya7{bottom:291.345000px;}
.ycb{bottom:292.425000px;}
.y7c{bottom:295.350000px;}
.yf2{bottom:296.925000px;}
.y10a{bottom:297.540000px;}
.y15{bottom:299.010000px;}
.y72{bottom:299.085000px;}
.y130{bottom:305.970000px;}
.y67{bottom:306.000000px;}
.y11e{bottom:306.900000px;}
.yd1{bottom:311.610000px;}
.y56{bottom:311.940000px;}
.y109{bottom:312.120000px;}
.y6c{bottom:315.930000px;}
.y4f{bottom:316.800000px;}
.y59{bottom:320.115000px;}
.y83{bottom:323.310000px;}
.y12f{bottom:323.790000px;}
.yb3{bottom:327.450000px;}
.yca{bottom:328.425000px;}
.y3c{bottom:333.210000px;}
.ya0{bottom:334.440000px;}
.yee{bottom:335.805000px;}
.y8a{bottom:336.600000px;}
.y11d{bottom:339.660000px;}
.y108{bottom:341.820000px;}
.y14{bottom:344.370000px;}
.ybd{bottom:346.830000px;}
.y43{bottom:347.655000px;}
.yd{bottom:348.015000px;}
.y4e{bottom:349.200000px;}
.y2a{bottom:349.995000px;}
.y53{bottom:356.145000px;}
.y12e{bottom:356.550000px;}
.yde{bottom:357.375000px;}
.y11c{bottom:357.480000px;}
.yd9{bottom:359.100000px;}
.y3b{bottom:360.930000px;}
.yf1{bottom:362.310000px;}
.y77{bottom:362.775000px;}
.yb2{bottom:363.450000px;}
.yc9{bottom:364.425000px;}
.y82{bottom:366.915000px;}
.y107{bottom:371.340000px;}
.y12d{bottom:374.370000px;}
.ydf{bottom:377.820000px;}
.ye2{bottom:377.970000px;}
.yf4{bottom:379.050000px;}
.yf7{bottom:379.155000px;}
.y6{bottom:379.230000px;}
.y6b{bottom:380.730000px;}
.ybc{bottom:382.830000px;}
.y1c{bottom:383.145000px;}
.y58{bottom:384.915000px;}
.yea{bottom:385.815000px;}
.y106{bottom:385.920000px;}
.y64{bottom:387.210000px;}
.y13{bottom:389.730000px;}
.y11b{bottom:390.420000px;}
.y80{bottom:391.425000px;}
.y29{bottom:391.935000px;}
.y42{bottom:393.015000px;}
.y2d{bottom:394.275000px;}
.y76{bottom:395.175000px;}
.y3a{bottom:396.930000px;}
.yb1{bottom:399.090000px;}
.yc8{bottom:400.470000px;}
.yed{bottom:402.810000px;}
.y12c{bottom:407.310000px;}
.y11a{bottom:408.240000px;}
.yc{bottom:408.315000px;}
.y9e{bottom:410.040000px;}
.y87{bottom:412.200000px;}
.y6a{bottom:413.175000px;}
.y4d{bottom:414.000000px;}
.yf0{bottom:415.050000px;}
.y105{bottom:415.440000px;}
.y57{bottom:417.345000px;}
.y2c{bottom:418.395000px;}
.ybb{bottom:418.860000px;}
.y63{bottom:419.610000px;}
.y7f{bottom:423.825000px;}
.y12b{bottom:425.130000px;}
.y75{bottom:427.575000px;}
.y38{bottom:431.205000px;}
.y36{bottom:431.565000px;}
.ydd{bottom:432.900000px;}
.y39{bottom:432.975000px;}
.y28{bottom:434.055000px;}
.y12{bottom:435.135000px;}
.yb0{bottom:435.270000px;}
.yfd{bottom:438.195000px;}
.y41{bottom:438.375000px;}
.y119{bottom:441.000000px;}
.y104{bottom:445.140000px;}
.y4c{bottom:446.400000px;}
.y1f{bottom:454.035000px;}
.yba{bottom:454.860000px;}
.y7e{bottom:456.225000px;}
.y12a{bottom:457.890000px;}
.y118{bottom:458.850000px;}
.y3f{bottom:459.030000px;}
.yc7{bottom:459.720000px;}
.y74{bottom:459.975000px;}
.y37{bottom:463.650000px;}
.y34{bottom:463.860000px;}
.y35{bottom:463.965000px;}
.yb{bottom:468.795000px;}
.yec{bottom:469.590000px;}
.yaf{bottom:471.450000px;}
.y103{bottom:474.690000px;}
.y129{bottom:475.740000px;}
.ydc{bottom:476.130000px;}
.y5{bottom:476.460000px;}
.y27{bottom:477.615000px;}
.y69{bottom:477.975000px;}
.ye6{bottom:478.950000px;}
.y49{bottom:479.265000px;}
.y11{bottom:480.495000px;}
.y40{bottom:483.735000px;}
.y31{bottom:486.870000px;}
.yb9{bottom:490.860000px;}
.yeb{bottom:490.935000px;}
.y117{bottom:491.610000px;}
.y1e{bottom:494.355000px;}
.ye3{bottom:495.030000px;}
.ye0{bottom:495.540000px;}
.yf8{bottom:496.230000px;}
.yf5{bottom:496.725000px;}
.yc6{bottom:498.600000px;}
.y102{bottom:504.210000px;}
.y55{bottom:505.410000px;}
.y33{bottom:507.060000px;}
.yae{bottom:507.495000px;}
.y128{bottom:508.500000px;}
.y116{bottom:509.430000px;}
.y68{bottom:510.375000px;}
.y48{bottom:511.665000px;}
.y9f{bottom:514.770000px;}
.y71{bottom:515.415000px;}
.y1b{bottom:515.955000px;}
.y89{bottom:516.930000px;}
.y101{bottom:518.790000px;}
.ydb{bottom:519.330000px;}
.y10{bottom:525.855000px;}
.y62{bottom:525.930000px;}
.y127{bottom:526.320000px;}
.ya{bottom:529.095000px;}
.y3d{bottom:529.635000px;}
.y100{bottom:533.370000px;}
.y1a{bottom:534.675000px;}
.yc5{bottom:537.480000px;}
.y54{bottom:537.810000px;}
.yb8{bottom:540.570000px;}
.y115{bottom:542.370000px;}
.y47{bottom:544.065000px;}
.y24{bottom:547.050000px;}
.y70{bottom:547.815000px;}
.yff{bottom:547.950000px;}
.y21{bottom:549.900000px;}
.y32{bottom:550.260000px;}
.y26{bottom:551.340000px;}
.y3e{bottom:552.210000px;}
.y61{bottom:558.360000px;}
.y126{bottom:559.260000px;}
.y114{bottom:560.190000px;}
.yfe{bottom:562.530000px;}
.y2b{bottom:568.440000px;}
.y7b{bottom:576.465000px;}
.y6f{bottom:580.215000px;}
.yc4{bottom:582.870000px;}
.y23{bottom:583.770000px;}
.yb7{bottom:585.975000px;}
.yad{bottom:589.395000px;}
.y25{bottom:591.300000px;}
.y95{bottom:595.695000px;}
.y46{bottom:608.910000px;}
.y4b{bottom:615.675000px;}
.y9{bottom:622.155000px;}
.yce{bottom:623.775000px;}
.y7a{bottom:627.270000px;}
.y20{bottom:629.640000px;}
.y81{bottom:631.695000px;}
.yac{bottom:634.755000px;}
.y45{bottom:641.310000px;}
.y94{bottom:647.205000px;}
.yc3{bottom:647.670000px;}
.y4a{bottom:648.105000px;}
.ye5{bottom:649.650000px;}
.yb6{bottom:650.775000px;}
.y22{bottom:652.530000px;}
.y60{bottom:688.035000px;}
.y44{bottom:700.590000px;}
.y2{bottom:745.020000px;}
.y1{bottom:763.380000px;}
.h2{height:36.651094px;}
.h1{height:46.158750px;}
.h2d{height:46.801758px;}
.h2e{height:46.880859px;}
.h2f{height:57.410156px;}
.h31{height:57.507187px;}
.h30{height:57.534961px;}
.h32{height:57.632203px;}
.h13{height:62.402344px;}
.h18{height:73.010742px;}
.h27{height:73.135547px;}
.he{height:78.002930px;}
.h14{height:82.995117px;}
.h15{height:83.119922px;}
.h21{height:88.592344px;}
.h2a{height:93.339844px;}
.h2b{height:93.464297px;}
.h3{height:93.603516px;}
.hb{height:93.728320px;}
.h19{height:93.761719px;}
.h1a{height:93.886734px;}
.h24{height:101.335078px;}
.h17{height:104.211914px;}
.h16{height:104.336719px;}
.h28{height:104.417719px;}
.h25{height:106.815483px;}
.h1b{height:107.419922px;}
.h26{height:124.453125px;}
.h23{height:124.577578px;}
.h6{height:124.804688px;}
.h11{height:124.929492px;}
.hd{height:125.015625px;}
.h12{height:125.140641px;}
.hc{height:128.495625px;}
.hf{height:130.016250px;}
.h8{height:145.397461px;}
.h9{height:145.522266px;}
.ha{height:145.643203px;}
.h10{height:145.768219px;}
.h1f{height:150.588281px;}
.h29{height:166.614258px;}
.h20{height:172.832344px;}
.h22{height:207.214453px;}
.h1e{height:207.338906px;}
.h2c{height:208.151016px;}
.h1c{height:226.980000px;}
.h7{height:228.371484px;}
.h5{height:311.132812px;}
.h4{height:311.257266px;}
.h1d{height:453.780000px;}
.h0{height:810.000000px;}
.w2{width:223.560000px;}
.w4{width:223.740000px;}
.w5{width:522.720000px;}
.w3{width:522.900000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x41{left:10.830000px;}
.x34{left:22.787979px;}
.x35{left:23.975979px;}
.x3f{left:53.495979px;}
.x3d{left:55.547979px;}
.x68{left:59.183979px;}
.x3e{left:60.659979px;}
.x5a{left:66.635979px;}
.x5e{left:75.275979px;}
.x8{left:109.799979px;}
.x54{left:117.395979px;}
.x70{left:120.203979px;}
.xe{left:121.931979px;}
.x50{left:123.947979px;}
.x5b{left:126.107979px;}
.x55{left:127.115979px;}
.x47{left:134.315979px;}
.x75{left:135.683979px;}
.x7f{left:136.835979px;}
.x5f{left:143.531979px;}
.x5c{left:159.944979px;}
.x56{left:160.949979px;}
.x76{left:162.689979px;}
.x10{left:163.829979px;}
.x19{left:171.104979px;}
.x57{left:173.729979px;}
.x5d{left:180.104979px;}
.x17{left:190.229979px;}
.x12{left:194.219979px;}
.x6f{left:199.184979px;}
.x1a{left:209.984979px;}
.x2f{left:213.404979px;}
.x4{left:218.084979px;}
.x1f{left:220.349979px;}
.x14{left:222.194979px;}
.x4b{left:223.560000px;}
.x1e{left:238.574979px;}
.x58{left:246.449979px;}
.x15{left:252.689979px;}
.x71{left:254.054979px;}
.xc{left:256.859979px;}
.x69{left:259.814979px;}
.x72{left:266.294979px;}
.x73{left:271.769979px;}
.x1d{left:273.209979px;}
.x2a{left:274.244979px;}
.x39{left:285.194979px;}
.x4c{left:293.069979px;}
.x59{left:311.249979px;}
.x6b{left:313.229979px;}
.x13{left:322.454979px;}
.xd{left:337.424979px;}
.x4f{left:340.994979px;}
.x7e{left:344.624979px;}
.x3c{left:346.859979px;}
.x74{left:361.364979px;}
.x18{left:365.399979px;}
.x16{left:406.799979px;}
.x49{left:411.659979px;}
.x21{left:416.489979px;}
.x20{left:429.449979px;}
.x67{left:438.839979px;}
.x4d{left:447.120000px;}
.x4a{left:449.459979px;}
.x6c{left:457.409979px;}
.x48{left:462.779979px;}
.x2b{left:483.839979px;}
.x2e{left:498.059979px;}
.x63{left:500.759979px;}
.x2d{left:503.999979px;}
.x53{left:507.959979px;}
.x6d{left:510.734979px;}
.x2c{left:527.939979px;}
.x7{left:555.809979px;}
.x42{left:570.240000px;}
.x6{left:595.769979px;}
.x5{left:603.869979px;}
.x38{left:609.404979px;}
.x37{left:615.344979px;}
.x4e{left:632.804979px;}
.x36{left:639.284979px;}
.x6e{left:649.184979px;}
.x66{left:673.709979px;}
.x1b{left:680.549979px;}
.x1c{left:689.009979px;}
.x65{left:696.029979px;}
.x61{left:698.399979px;}
.x78{left:748.619979px;}
.x40{left:769.394979px;}
.x45{left:772.124979px;}
.x46{left:780.764979px;}
.x32{left:801.974979px;}
.x33{left:835.844979px;}
.x9{left:846.749979px;}
.x62{left:881.849979px;}
.x60{left:884.954979px;}
.x30{left:895.424979px;}
.x3a{left:925.454979px;}
.x79{left:940.424979px;}
.x31{left:946.364979px;}
.x28{left:965.159979px;}
.x3b{left:978.014979px;}
.xf{left:979.589979px;}
.x6a{left:986.369979px;}
.x1{left:1014.839979px;}
.x7d{left:1036.439979px;}
.x7b{left:1054.079979px;}
.x24{left:1074.164979px;}
.xb{left:1078.274979px;}
.x7c{left:1085.219979px;}
.x3{left:1087.709979px;}
.x22{left:1104.944979px;}
.x25{left:1108.004979px;}
.x27{left:1111.244979px;}
.x51{left:1116.794979px;}
.x29{left:1118.984979px;}
.x26{left:1124.924979px;}
.x11{left:1136.984979px;}
.x23{left:1149.089979px;}
.x7a{left:1168.199979px;}
.x44{left:1175.654979px;}
.x43{left:1189.514979px;}
.x2{left:1198.259979px;}
.xa{left:1223.999979px;}
.x77{left:1277.564979px;}
.x52{left:1294.094979px;}
.x64{left:1384.379979px;}
@media print{
.v1{vertical-align:-181.120000pt;}
.v2{vertical-align:-167.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.093333pt;}
.v6{vertical-align:9.472000pt;}
.v4{vertical-align:50.400000pt;}
.v5{vertical-align:74.880000pt;}
.ls6{letter-spacing:-0.338667pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.269867pt;}
.ls21{letter-spacing:-0.259733pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.150400pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.120533pt;}
.ls33{letter-spacing:-0.082133pt;}
.lsc{letter-spacing:-0.067200pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls15{letter-spacing:-0.000005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.046080pt;}
.ls26{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.115200pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.151467pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.194560pt;}
.ls14{letter-spacing:0.224000pt;}
.ls30{letter-spacing:0.230400pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.296960pt;}
.ls4{letter-spacing:0.297067pt;}
.ls2{letter-spacing:0.301227pt;}
.ls28{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.401323pt;}
.ls7{letter-spacing:0.448640pt;}
.lse{letter-spacing:1.088640pt;}
.ls2e{letter-spacing:10.040320pt;}
.ls34{letter-spacing:11.320320pt;}
.ls27{letter-spacing:11.872000pt;}
.ls29{letter-spacing:12.032000pt;}
.ls24{letter-spacing:27.644416pt;}
.ls23{letter-spacing:27.703040pt;}
.ls20{letter-spacing:36.192000pt;}
.ls22{letter-spacing:36.213333pt;}
.ls2d{letter-spacing:75.475200pt;}
.ls2c{letter-spacing:75.520000pt;}
.ls25{letter-spacing:79.328000pt;}
.ls1b{letter-spacing:82.867200pt;}
.ls16{letter-spacing:82.890667pt;}
.ls17{letter-spacing:82.901333pt;}
.ls1c{letter-spacing:82.912000pt;}
.ls11{letter-spacing:86.675200pt;}
.ls10{letter-spacing:86.720000pt;}
.ls12{letter-spacing:86.781867pt;}
.ls13{letter-spacing:86.826667pt;}
.ls18{letter-spacing:94.990336pt;}
.ls19{letter-spacing:95.048960pt;}
.ws3{word-spacing:-61.760000pt;}
.ws8{word-spacing:-45.331840pt;}
.ws18{word-spacing:-34.688640pt;}
.ws10{word-spacing:-30.297344pt;}
.ws7{word-spacing:-30.271360pt;}
.wse{word-spacing:-26.009984pt;}
.wsa{word-spacing:-25.984000pt;}
.ws15{word-spacing:-24.960000pt;}
.wsf{word-spacing:-21.696640pt;}
.ws14{word-spacing:-20.556800pt;}
.ws16{word-spacing:-19.712000pt;}
.ws12{word-spacing:-19.513984pt;}
.ws11{word-spacing:-19.488000pt;}
.ws2{word-spacing:-15.656960pt;}
.ws21{word-spacing:-11.998720pt;}
.ws23{word-spacing:-11.978624pt;}
.ws1e{word-spacing:-11.960320pt;}
.ws1d{word-spacing:-11.952640pt;}
.ws22{word-spacing:-11.870507pt;}
.ws1f{word-spacing:-11.832107pt;}
.ws25{word-spacing:-11.828224pt;}
.ws19{word-spacing:-9.808000pt;}
.ws1a{word-spacing:-9.744000pt;}
.ws1c{word-spacing:-9.712000pt;}
.ws27{word-spacing:-1.617920pt;}
.ws20{word-spacing:-1.616213pt;}
.ws28{word-spacing:-0.467200pt;}
.ws24{word-spacing:-0.393600pt;}
.ws1b{word-spacing:-0.368000pt;}
.ws1{word-spacing:-0.353387pt;}
.ws0{word-spacing:-0.056320pt;}
.ws4{word-spacing:0.000000pt;}
.ws26{word-spacing:0.289920pt;}
.ws5{word-spacing:64.686507pt;}
.ws6{word-spacing:64.761963pt;}
.wsc{word-spacing:81.408000pt;}
.wsb{word-spacing:85.248000pt;}
.ws13{word-spacing:85.632015pt;}
.wsd{word-spacing:85.702912pt;}
.ws17{word-spacing:1654.976299pt;}
.ws9{word-spacing:3014.783147pt;}
._5{margin-left:-17.850880pt;}
._14{margin-left:-15.181696pt;}
._4{margin-left:-9.663104pt;}
._15{margin-left:-8.562304pt;}
._8{margin-left:-7.259264pt;}
._b{margin-left:-6.320000pt;}
._c{margin-left:-5.084416pt;}
._3{margin-left:-4.161664pt;}
._1{margin-left:-2.928640pt;}
._6{margin-left:-1.790976pt;}
._0{margin-left:-0.901120pt;}
._2{width:1.054720pt;}
._9{width:2.673280pt;}
._f{width:3.603840pt;}
._16{width:5.609984pt;}
._18{width:8.664363pt;}
._17{width:11.033643pt;}
._19{width:14.708480pt;}
._10{width:18.302976pt;}
._13{width:24.682240pt;}
._12{width:29.600640pt;}
._11{width:32.919040pt;}
._a{width:172.188587pt;}
._7{width:660.684843pt;}
._e{width:1760.274816pt;}
._d{width:1870.354816pt;}
.fs1{font-size:42.880000pt;}
.fs1b{font-size:48.000000pt;}
.fs0{font-size:56.320000pt;}
.fs1c{font-size:58.880000pt;}
.fs1d{font-size:59.008000pt;}
.fsd{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs13{font-size:74.880000pt;}
.fs19{font-size:75.008000pt;}
.fsa{font-size:80.000000pt;}
.fse{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs16{font-size:93.440000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs12{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs18{font-size:112.660286pt;}
.fs5{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fsb{font-size:133.120000pt;}
.fs7{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs15{font-size:154.880000pt;}
.fs1a{font-size:170.880000pt;}
.fs17{font-size:213.120000pt;}
.fs14{font-size:213.248000pt;}
.fs6{font-size:234.880000pt;}
.fs4{font-size:320.000000pt;}
.fs3{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:8.704000pt;}
.y4{bottom:22.912000pt;}
.yd5{bottom:30.496000pt;}
.yd0{bottom:77.888000pt;}
.ycf{bottom:81.920000pt;}
.yc2{bottom:84.256000pt;}
.ye4{bottom:86.720000pt;}
.yd8{bottom:87.840000pt;}
.yfc{bottom:91.648000pt;}
.y30{bottom:92.576000pt;}
.y86{bottom:92.832000pt;}
.y92{bottom:93.053333pt;}
.y88{bottom:93.093333pt;}
.y113{bottom:94.528000pt;}
.ya5{bottom:95.680000pt;}
.y93{bottom:97.600000pt;}
.yda{bottom:98.848000pt;}
.y19{bottom:101.312000pt;}
.y112{bottom:107.488000pt;}
.y137{bottom:107.776000pt;}
.yaa{bottom:108.992000pt;}
.y9a{bottom:109.088000pt;}
.yd7{bottom:110.272000pt;}
.y5f{bottom:111.712000pt;}
.y2f{bottom:113.248000pt;}
.y9d{bottom:113.824000pt;}
.yc1{bottom:116.256000pt;}
.y111{bottom:120.448000pt;}
.yfb{bottom:120.480000pt;}
.y125{bottom:121.888000pt;}
.y136{bottom:123.616000pt;}
.ya3{bottom:129.280000pt;}
.y8f{bottom:131.200000pt;}
.ycd{bottom:131.904000pt;}
.yd6{bottom:132.672000pt;}
.y97{bottom:133.024000pt;}
.y79{bottom:136.480000pt;}
.y124{bottom:137.733333pt;}
.y99{bottom:137.893333pt;}
.y2e{bottom:138.853333pt;}
.y5e{bottom:140.506667pt;}
.y9c{bottom:142.626667pt;}
.y18{bottom:144.800000pt;}
.y110{bottom:146.693333pt;}
.ya9{bottom:148.893333pt;}
.yfa{bottom:149.280000pt;}
.y8{bottom:151.680000pt;}
.y135{bottom:152.733333pt;}
.y10f{bottom:159.653333pt;}
.y96{bottom:161.826667pt;}
.ye1{bottom:162.786667pt;}
.ya4{bottom:162.880000pt;}
.yd4{bottom:163.546667pt;}
.yf6{bottom:163.840000pt;}
.y91{bottom:164.800000pt;}
.y78{bottom:165.280000pt;}
.y98{bottom:166.693333pt;}
.y123{bottom:166.853333pt;}
.y134{bottom:168.573333pt;}
.ya6{bottom:169.093333pt;}
.y5d{bottom:169.306667pt;}
.y9b{bottom:171.426667pt;}
.yab{bottom:176.640000pt;}
.y90{bottom:179.453333pt;}
.y8d{bottom:179.493333pt;}
.yf9{bottom:180.160000pt;}
.yc0{bottom:180.253333pt;}
.y122{bottom:182.693333pt;}
.y17{bottom:185.120000pt;}
.y10e{bottom:186.053333pt;}
.ya8{bottom:187.333333pt;}
.ye9{bottom:192.960000pt;}
.y6e{bottom:194.426667pt;}
.yb5{bottom:195.040000pt;}
.y52{bottom:195.173333pt;}
.ycc{bottom:195.933333pt;}
.ya1{bottom:196.480000pt;}
.y133{bottom:197.693333pt;}
.y5c{bottom:198.146667pt;}
.y8b{bottom:198.400000pt;}
.y10d{bottom:199.013333pt;}
.y7{bottom:199.520000pt;}
.yd3{bottom:200.826667pt;}
.yf{bottom:201.946667pt;}
.y8c{bottom:208.293333pt;}
.y121{bottom:211.973333pt;}
.ybf{bottom:212.293333pt;}
.y85{bottom:212.666667pt;}
.y132{bottom:213.533333pt;}
.y1d{bottom:215.386667pt;}
.yf3{bottom:217.853333pt;}
.y66{bottom:220.866667pt;}
.ye8{bottom:221.760000pt;}
.y51{bottom:223.973333pt;}
.y10c{bottom:225.253333pt;}
.y16{bottom:225.466667pt;}
.y5b{bottom:226.946667pt;}
.yb4{bottom:227.040000pt;}
.y120{bottom:227.813333pt;}
.ya2{bottom:230.080000pt;}
.y8e{bottom:232.000000pt;}
.y7d{bottom:233.733333pt;}
.y73{bottom:237.053333pt;}
.y10b{bottom:238.213333pt;}
.yd2{bottom:238.266667pt;}
.yef{bottom:239.133333pt;}
.y131{bottom:242.813333pt;}
.ybe{bottom:244.293333pt;}
.y65{bottom:249.666667pt;}
.y84{bottom:250.106667pt;}
.ye7{bottom:250.560000pt;}
.y6d{bottom:252.026667pt;}
.y50{bottom:252.800000pt;}
.ye{bottom:255.706667pt;}
.y5a{bottom:255.746667pt;}
.y11f{bottom:256.960000pt;}
.ya7{bottom:258.973333pt;}
.ycb{bottom:259.933333pt;}
.y7c{bottom:262.533333pt;}
.yf2{bottom:263.933333pt;}
.y10a{bottom:264.480000pt;}
.y15{bottom:265.786667pt;}
.y72{bottom:265.853333pt;}
.y130{bottom:271.973333pt;}
.y67{bottom:272.000000pt;}
.y11e{bottom:272.800000pt;}
.yd1{bottom:276.986667pt;}
.y56{bottom:277.280000pt;}
.y109{bottom:277.440000pt;}
.y6c{bottom:280.826667pt;}
.y4f{bottom:281.600000pt;}
.y59{bottom:284.546667pt;}
.y83{bottom:287.386667pt;}
.y12f{bottom:287.813333pt;}
.yb3{bottom:291.066667pt;}
.yca{bottom:291.933333pt;}
.y3c{bottom:296.186667pt;}
.ya0{bottom:297.280000pt;}
.yee{bottom:298.493333pt;}
.y8a{bottom:299.200000pt;}
.y11d{bottom:301.920000pt;}
.y108{bottom:303.840000pt;}
.y14{bottom:306.106667pt;}
.ybd{bottom:308.293333pt;}
.y43{bottom:309.026667pt;}
.yd{bottom:309.346667pt;}
.y4e{bottom:310.400000pt;}
.y2a{bottom:311.106667pt;}
.y53{bottom:316.573333pt;}
.y12e{bottom:316.933333pt;}
.yde{bottom:317.666667pt;}
.y11c{bottom:317.760000pt;}
.yd9{bottom:319.200000pt;}
.y3b{bottom:320.826667pt;}
.yf1{bottom:322.053333pt;}
.y77{bottom:322.466667pt;}
.yb2{bottom:323.066667pt;}
.yc9{bottom:323.933333pt;}
.y82{bottom:326.146667pt;}
.y107{bottom:330.080000pt;}
.y12d{bottom:332.773333pt;}
.ydf{bottom:335.840000pt;}
.ye2{bottom:335.973333pt;}
.yf4{bottom:336.933333pt;}
.yf7{bottom:337.026667pt;}
.y6{bottom:337.093333pt;}
.y6b{bottom:338.426667pt;}
.ybc{bottom:340.293333pt;}
.y1c{bottom:340.573333pt;}
.y58{bottom:342.146667pt;}
.yea{bottom:342.946667pt;}
.y106{bottom:343.040000pt;}
.y64{bottom:344.186667pt;}
.y13{bottom:346.426667pt;}
.y11b{bottom:347.040000pt;}
.y80{bottom:347.933333pt;}
.y29{bottom:348.386667pt;}
.y42{bottom:349.346667pt;}
.y2d{bottom:350.466667pt;}
.y76{bottom:351.266667pt;}
.y3a{bottom:352.826667pt;}
.yb1{bottom:354.746667pt;}
.yc8{bottom:355.973333pt;}
.yed{bottom:358.053333pt;}
.y12c{bottom:362.053333pt;}
.y11a{bottom:362.880000pt;}
.yc{bottom:362.946667pt;}
.y9e{bottom:364.480000pt;}
.y87{bottom:366.400000pt;}
.y6a{bottom:367.266667pt;}
.y4d{bottom:368.000000pt;}
.yf0{bottom:368.933333pt;}
.y105{bottom:369.280000pt;}
.y57{bottom:370.973333pt;}
.y2c{bottom:371.906667pt;}
.ybb{bottom:372.320000pt;}
.y63{bottom:372.986667pt;}
.y7f{bottom:376.733333pt;}
.y12b{bottom:377.893333pt;}
.y75{bottom:380.066667pt;}
.y38{bottom:383.293333pt;}
.y36{bottom:383.613333pt;}
.ydd{bottom:384.800000pt;}
.y39{bottom:384.866667pt;}
.y28{bottom:385.826667pt;}
.y12{bottom:386.786667pt;}
.yb0{bottom:386.906667pt;}
.yfd{bottom:389.506667pt;}
.y41{bottom:389.666667pt;}
.y119{bottom:392.000000pt;}
.y104{bottom:395.680000pt;}
.y4c{bottom:396.800000pt;}
.y1f{bottom:403.586667pt;}
.yba{bottom:404.320000pt;}
.y7e{bottom:405.533333pt;}
.y12a{bottom:407.013333pt;}
.y118{bottom:407.866667pt;}
.y3f{bottom:408.026667pt;}
.yc7{bottom:408.640000pt;}
.y74{bottom:408.866667pt;}
.y37{bottom:412.133333pt;}
.y34{bottom:412.320000pt;}
.y35{bottom:412.413333pt;}
.yb{bottom:416.706667pt;}
.yec{bottom:417.413333pt;}
.yaf{bottom:419.066667pt;}
.y103{bottom:421.946667pt;}
.y129{bottom:422.880000pt;}
.ydc{bottom:423.226667pt;}
.y5{bottom:423.520000pt;}
.y27{bottom:424.546667pt;}
.y69{bottom:424.866667pt;}
.ye6{bottom:425.733333pt;}
.y49{bottom:426.013333pt;}
.y11{bottom:427.106667pt;}
.y40{bottom:429.986667pt;}
.y31{bottom:432.773333pt;}
.yb9{bottom:436.320000pt;}
.yeb{bottom:436.386667pt;}
.y117{bottom:436.986667pt;}
.y1e{bottom:439.426667pt;}
.ye3{bottom:440.026667pt;}
.ye0{bottom:440.480000pt;}
.yf8{bottom:441.093333pt;}
.yf5{bottom:441.533333pt;}
.yc6{bottom:443.200000pt;}
.y102{bottom:448.186667pt;}
.y55{bottom:449.253333pt;}
.y33{bottom:450.720000pt;}
.yae{bottom:451.106667pt;}
.y128{bottom:452.000000pt;}
.y116{bottom:452.826667pt;}
.y68{bottom:453.666667pt;}
.y48{bottom:454.813333pt;}
.y9f{bottom:457.573333pt;}
.y71{bottom:458.146667pt;}
.y1b{bottom:458.626667pt;}
.y89{bottom:459.493333pt;}
.y101{bottom:461.146667pt;}
.ydb{bottom:461.626667pt;}
.y10{bottom:467.426667pt;}
.y62{bottom:467.493333pt;}
.y127{bottom:467.840000pt;}
.ya{bottom:470.306667pt;}
.y3d{bottom:470.786667pt;}
.y100{bottom:474.106667pt;}
.y1a{bottom:475.266667pt;}
.yc5{bottom:477.760000pt;}
.y54{bottom:478.053333pt;}
.yb8{bottom:480.506667pt;}
.y115{bottom:482.106667pt;}
.y47{bottom:483.613333pt;}
.y24{bottom:486.266667pt;}
.y70{bottom:486.946667pt;}
.yff{bottom:487.066667pt;}
.y21{bottom:488.800000pt;}
.y32{bottom:489.120000pt;}
.y26{bottom:490.080000pt;}
.y3e{bottom:490.853333pt;}
.y61{bottom:496.320000pt;}
.y126{bottom:497.120000pt;}
.y114{bottom:497.946667pt;}
.yfe{bottom:500.026667pt;}
.y2b{bottom:505.280000pt;}
.y7b{bottom:512.413333pt;}
.y6f{bottom:515.746667pt;}
.yc4{bottom:518.106667pt;}
.y23{bottom:518.906667pt;}
.yb7{bottom:520.866667pt;}
.yad{bottom:523.906667pt;}
.y25{bottom:525.600000pt;}
.y95{bottom:529.506667pt;}
.y46{bottom:541.253333pt;}
.y4b{bottom:547.266667pt;}
.y9{bottom:553.026667pt;}
.yce{bottom:554.466667pt;}
.y7a{bottom:557.573333pt;}
.y20{bottom:559.680000pt;}
.y81{bottom:561.506667pt;}
.yac{bottom:564.226667pt;}
.y45{bottom:570.053333pt;}
.y94{bottom:575.293333pt;}
.yc3{bottom:575.706667pt;}
.y4a{bottom:576.093333pt;}
.ye5{bottom:577.466667pt;}
.yb6{bottom:578.466667pt;}
.y22{bottom:580.026667pt;}
.y60{bottom:611.586667pt;}
.y44{bottom:622.746667pt;}
.y2{bottom:662.240000pt;}
.y1{bottom:678.560000pt;}
.h2{height:32.578750pt;}
.h1{height:41.030000pt;}
.h2d{height:41.601562pt;}
.h2e{height:41.671875pt;}
.h2f{height:51.031250pt;}
.h31{height:51.117500pt;}
.h30{height:51.142187pt;}
.h32{height:51.228625pt;}
.h13{height:55.468750pt;}
.h18{height:64.898438pt;}
.h27{height:65.009375pt;}
.he{height:69.335938pt;}
.h14{height:73.773438pt;}
.h15{height:73.884375pt;}
.h21{height:78.748750pt;}
.h2a{height:82.968750pt;}
.h2b{height:83.079375pt;}
.h3{height:83.203125pt;}
.hb{height:83.314062pt;}
.h19{height:83.343750pt;}
.h1a{height:83.454875pt;}
.h24{height:90.075625pt;}
.h17{height:92.632812pt;}
.h16{height:92.743750pt;}
.h28{height:92.815750pt;}
.h25{height:94.947096pt;}
.h1b{height:95.484375pt;}
.h26{height:110.625000pt;}
.h23{height:110.735625pt;}
.h6{height:110.937500pt;}
.h11{height:111.048437pt;}
.hd{height:111.125000pt;}
.h12{height:111.236125pt;}
.hc{height:114.218333pt;}
.hf{height:115.570000pt;}
.h8{height:129.242188pt;}
.h9{height:129.353125pt;}
.ha{height:129.460625pt;}
.h10{height:129.571750pt;}
.h1f{height:133.856250pt;}
.h29{height:148.101562pt;}
.h20{height:153.628750pt;}
.h22{height:184.190625pt;}
.h1e{height:184.301250pt;}
.h2c{height:185.023125pt;}
.h1c{height:201.760000pt;}
.h7{height:202.996875pt;}
.h5{height:276.562500pt;}
.h4{height:276.673125pt;}
.h1d{height:403.360000pt;}
.h0{height:720.000000pt;}
.w2{width:198.720000pt;}
.w4{width:198.880000pt;}
.w5{width:464.640000pt;}
.w3{width:464.800000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x41{left:9.626667pt;}
.x34{left:20.255981pt;}
.x35{left:21.311981pt;}
.x3f{left:47.551981pt;}
.x3d{left:49.375981pt;}
.x68{left:52.607981pt;}
.x3e{left:53.919981pt;}
.x5a{left:59.231981pt;}
.x5e{left:66.911981pt;}
.x8{left:97.599981pt;}
.x54{left:104.351981pt;}
.x70{left:106.847981pt;}
.xe{left:108.383981pt;}
.x50{left:110.175981pt;}
.x5b{left:112.095981pt;}
.x55{left:112.991981pt;}
.x47{left:119.391981pt;}
.x75{left:120.607981pt;}
.x7f{left:121.631981pt;}
.x5f{left:127.583981pt;}
.x5c{left:142.173314pt;}
.x56{left:143.066648pt;}
.x76{left:144.613314pt;}
.x10{left:145.626648pt;}
.x19{left:152.093314pt;}
.x57{left:154.426648pt;}
.x5d{left:160.093314pt;}
.x17{left:169.093314pt;}
.x12{left:172.639981pt;}
.x6f{left:177.053314pt;}
.x1a{left:186.653314pt;}
.x2f{left:189.693314pt;}
.x4{left:193.853314pt;}
.x1f{left:195.866648pt;}
.x14{left:197.506648pt;}
.x4b{left:198.720000pt;}
.x1e{left:212.066648pt;}
.x58{left:219.066648pt;}
.x15{left:224.613314pt;}
.x71{left:225.826648pt;}
.xc{left:228.319981pt;}
.x69{left:230.946648pt;}
.x72{left:236.706648pt;}
.x73{left:241.573314pt;}
.x1d{left:242.853314pt;}
.x2a{left:243.773314pt;}
.x39{left:253.506648pt;}
.x4c{left:260.506648pt;}
.x59{left:276.666648pt;}
.x6b{left:278.426648pt;}
.x13{left:286.626648pt;}
.xd{left:299.933314pt;}
.x4f{left:303.106648pt;}
.x7e{left:306.333314pt;}
.x3c{left:308.319981pt;}
.x74{left:321.213314pt;}
.x18{left:324.799981pt;}
.x16{left:361.599981pt;}
.x49{left:365.919981pt;}
.x21{left:370.213314pt;}
.x20{left:381.733314pt;}
.x67{left:390.079981pt;}
.x4d{left:397.440000pt;}
.x4a{left:399.519981pt;}
.x6c{left:406.586648pt;}
.x48{left:411.359981pt;}
.x2b{left:430.079981pt;}
.x2e{left:442.719981pt;}
.x63{left:445.119981pt;}
.x2d{left:447.999981pt;}
.x53{left:451.519981pt;}
.x6d{left:453.986648pt;}
.x2c{left:469.279981pt;}
.x7{left:494.053314pt;}
.x42{left:506.880000pt;}
.x6{left:529.573314pt;}
.x5{left:536.773314pt;}
.x38{left:541.693314pt;}
.x37{left:546.973314pt;}
.x4e{left:562.493314pt;}
.x36{left:568.253314pt;}
.x6e{left:577.053314pt;}
.x66{left:598.853314pt;}
.x1b{left:604.933314pt;}
.x1c{left:612.453314pt;}
.x65{left:618.693314pt;}
.x61{left:620.799981pt;}
.x78{left:665.439981pt;}
.x40{left:683.906648pt;}
.x45{left:686.333314pt;}
.x46{left:694.013314pt;}
.x32{left:712.866648pt;}
.x33{left:742.973314pt;}
.x9{left:752.666648pt;}
.x62{left:783.866648pt;}
.x60{left:786.626648pt;}
.x30{left:795.933314pt;}
.x3a{left:822.626648pt;}
.x79{left:835.933314pt;}
.x31{left:841.213314pt;}
.x28{left:857.919981pt;}
.x3b{left:869.346648pt;}
.xf{left:870.746648pt;}
.x6a{left:876.773314pt;}
.x1{left:902.079981pt;}
.x7d{left:921.279981pt;}
.x7b{left:936.959981pt;}
.x24{left:954.813314pt;}
.xb{left:958.466648pt;}
.x7c{left:964.639981pt;}
.x3{left:966.853314pt;}
.x22{left:982.173314pt;}
.x25{left:984.893314pt;}
.x27{left:987.773314pt;}
.x51{left:992.706648pt;}
.x29{left:994.653314pt;}
.x26{left:999.933314pt;}
.x11{left:1010.653314pt;}
.x23{left:1021.413314pt;}
.x7a{left:1038.399981pt;}
.x44{left:1045.026648pt;}
.x43{left:1057.346648pt;}
.x2{left:1065.119981pt;}
.xa{left:1087.999981pt;}
.x77{left:1135.613314pt;}
.x52{left:1150.306648pt;}
.x64{left:1230.559981pt;}
}




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