
    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_1e2874fa857a192bf7afa184.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_b97f59a799c199f2db834102.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_e1f87aba553def2106373ec6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.148438;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_4455f43aee3b2e02fff439d4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.015137;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_8d5fd66ddfc7ac5ce09f90fa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6fa5ef773a35d0727983b210.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5df382e99b0578b7c55370a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2ac31e5c3274b04337edf636.woff')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_f79ed35792b96c916a329ea3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f1c0fcd4ba0bcbe0218532cb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_ecfe5f5ac29de52ecb4f758d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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_543d968f954d667e4ab47a80.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c85c8552db4113daa1654aba.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1a11fd3daa867733dd66366c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.247007,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247007,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247007,0.250000,0.000000,0,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);}
.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);}
.m2{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-35.280000px;}
.v9{vertical-align:-25.285748px;}
.v2{vertical-align:-23.040000px;}
.v7{vertical-align:-20.160007px;}
.v4{vertical-align:-17.280006px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.319996px;}
.v6{vertical-align:12.959999px;}
.v8{vertical-align:20.160000px;}
.va{vertical-align:32.400000px;}
.v1{vertical-align:67.080000px;}
.lsc{letter-spacing:-3.672000px;}
.ls2b{letter-spacing:-2.820000px;}
.ls4{letter-spacing:-2.778000px;}
.lsb{letter-spacing:-2.580000px;}
.ls1{letter-spacing:-2.046000px;}
.ls18{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.350400px;}
.lsa{letter-spacing:-0.319800px;}
.ls27{letter-spacing:-0.295200px;}
.ls21{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.170400px;}
.ls1b{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.115200px;}
.ls7{letter-spacing:-0.112200px;}
.ls12{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.036000px;}
.ls28{letter-spacing:-0.006480px;}
.ls1e{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000003px;}
.ls13{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.067200px;}
.ls5{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.144963px;}
.ls23{letter-spacing:0.180000px;}
.lse{letter-spacing:0.205920px;}
.ls10{letter-spacing:0.208800px;}
.ls17{letter-spacing:0.243600px;}
.lsf{letter-spacing:0.256200px;}
.ls25{letter-spacing:0.277800px;}
.ls8{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.294000px;}
.ls20{letter-spacing:0.347040px;}
.ls1f{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.631440px;}
.ls11{letter-spacing:13.680001px;}
.ls15{letter-spacing:18.360001px;}
.ls14{letter-spacing:22.320001px;}
.ls2a{letter-spacing:72.165600px;}
.ls29{letter-spacing:72.216000px;}
.ls9{letter-spacing:101.844000px;}
.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;}
}
.ws22{word-spacing:-112.320000px;}
.ws2d{word-spacing:-95.760000px;}
.ws27{word-spacing:-84.240000px;}
.ws6{word-spacing:-72.036000px;}
.ws15{word-spacing:-59.760000px;}
.wsb{word-spacing:-41.940000px;}
.ws3f{word-spacing:-39.672240px;}
.ws40{word-spacing:-39.656040px;}
.ws41{word-spacing:-39.378240px;}
.ws38{word-spacing:-36.288000px;}
.ws3b{word-spacing:-32.976000px;}
.ws1a{word-spacing:-32.544000px;}
.ws2{word-spacing:-30.096000px;}
.ws3{word-spacing:-30.060000px;}
.ws49{word-spacing:-27.174240px;}
.ws48{word-spacing:-27.167760px;}
.ws8{word-spacing:-27.036000px;}
.ws7{word-spacing:-27.000000px;}
.ws47{word-spacing:-26.879040px;}
.ws46{word-spacing:-24.588000px;}
.ws43{word-spacing:-24.552000px;}
.ws42{word-spacing:-24.408000px;}
.ws44{word-spacing:-24.372000px;}
.ws2b{word-spacing:-23.976000px;}
.wsf{word-spacing:-23.940000px;}
.ws4{word-spacing:-21.780000px;}
.ws1b{word-spacing:-21.641760px;}
.ws29{word-spacing:-21.096000px;}
.ws25{word-spacing:-21.060000px;}
.ws24{word-spacing:-20.709600px;}
.ws17{word-spacing:-18.061920px;}
.ws1f{word-spacing:-18.000000px;}
.ws3e{word-spacing:-17.706648px;}
.ws2c{word-spacing:-16.596000px;}
.ws1d{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.970240px;}
.ws3a{word-spacing:-14.040000px;}
.ws21{word-spacing:-13.500000px;}
.ws1e{word-spacing:-13.410720px;}
.ws20{word-spacing:-12.060000px;}
.ws26{word-spacing:-2.172240px;}
.wsd{word-spacing:-1.630080px;}
.ws39{word-spacing:-1.272240px;}
.ws30{word-spacing:-1.176000px;}
.wsc{word-spacing:-1.175280px;}
.ws34{word-spacing:-1.128000px;}
.ws32{word-spacing:-1.045104px;}
.ws2e{word-spacing:-0.853920px;}
.ws13{word-spacing:-0.648000px;}
.ws1{word-spacing:-0.418752px;}
.ws10{word-spacing:-0.259920px;}
.ws37{word-spacing:-0.168000px;}
.ws19{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.002880px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.055728px;}
.ws9{word-spacing:0.108000px;}
.ws5{word-spacing:0.301200px;}
.ws2f{word-spacing:0.312000px;}
.ws35{word-spacing:0.408000px;}
.ws36{word-spacing:0.576000px;}
.wsa{word-spacing:0.628416px;}
.ws33{word-spacing:0.720000px;}
.ws31{word-spacing:0.937968px;}
.ws11{word-spacing:1.296000px;}
.ws18{word-spacing:1.368864px;}
.ws45{word-spacing:1.560000px;}
.ws12{word-spacing:1.690560px;}
.ws28{word-spacing:145.504128px;}
.ws3d{word-spacing:170.182429px;}
.ws3c{word-spacing:190.842967px;}
.ws2a{word-spacing:313.500000px;}
.ws23{word-spacing:331.380000px;}
.ws1c{word-spacing:429.720000px;}
._2{margin-left:-23.496480px;}
._a{margin-left:-16.104960px;}
._5{margin-left:-11.911248px;}
._e{margin-left:-10.044000px;}
._16{margin-left:-8.993376px;}
._19{margin-left:-7.911360px;}
._b{margin-left:-6.480000px;}
._7{margin-left:-4.572576px;}
._4{margin-left:-3.118752px;}
._0{margin-left:-1.439424px;}
._1{width:1.199520px;}
._9{width:2.684160px;}
._10{width:5.805024px;}
._d{width:18.337872px;}
._8{width:19.401984px;}
._c{width:24.420000px;}
._f{width:25.461504px;}
._15{width:27.421776px;}
._6{width:29.019504px;}
._1e{width:36.496944px;}
._1d{width:37.678752px;}
._12{width:43.425600px;}
._13{width:44.651232px;}
._1f{width:55.344000px;}
._3{width:61.416240px;}
._11{width:133.852320px;}
._20{width:230.570365px;}
._1c{width:295.500000px;}
._1b{width:313.260000px;}
._17{width:332.413440px;}
._1a{width:349.512000px;}
._18{width:367.500000px;}
._14{width:917.738160px;}
.fc11{color:rgb(189,32,35);}
.fcf{color:rgb(20,18,18);}
.fce{color:rgb(208,42,42);}
.fcd{color:rgb(204,102,0);}
.fc0{color:rgb(255,255,255);}
.fc10{color:rgb(107,96,96);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(204,0,102);}
.fc7{color:rgb(196,166,166);}
.fc6{color:rgb(0,124,128);}
.fc4{color:rgb(0,55,84);}
.fc8{color:rgb(245,167,0);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(255,108,104);}
.fcb{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fca{color:rgb(65,39,70);}
.fcc{color:rgb(79,52,52);}
.fs1f{font-size:36.000000px;}
.fs1e{font-size:48.240000px;}
.fs23{font-size:53.280000px;}
.fs1d{font-size:54.000000px;}
.fs20{font-size:54.144000px;}
.fs22{font-size:56.160000px;}
.fs15{font-size:59.760000px;}
.fs27{font-size:63.692978px;}
.fs14{font-size:64.080000px;}
.fs12{font-size:66.240000px;}
.fs13{font-size:66.384000px;}
.fs25{font-size:71.879984px;}
.fs1b{font-size:72.000000px;}
.fs1c{font-size:72.144000px;}
.fs16{font-size:79.920000px;}
.fs24{font-size:80.064000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:84.384000px;}
.fs6{font-size:87.120000px;}
.fs28{font-size:92.555182px;}
.fs26{font-size:93.676857px;}
.fse{font-size:95.760000px;}
.fs10{font-size:95.904000px;}
.fs2a{font-size:102.240000px;}
.fs2b{font-size:102.384000px;}
.fsb{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs21{font-size:112.320000px;}
.fs2{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs19{font-size:144.000000px;}
.fs1a{font-size:144.144000px;}
.fs29{font-size:156.240000px;}
.fs7{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs18{font-size:174.240000px;}
.fs11{font-size:192.240000px;}
.fs17{font-size:192.384000px;}
.fsd{font-size:216.000000px;}
.fsf{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.fs9{font-size:288.000000px;}
.fsa{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.yce{bottom:0.000183px;}
.yd9{bottom:6.152788px;}
.y7f{bottom:12.135000px;}
.y8a{bottom:12.168000px;}
.y81{bottom:12.420000px;}
.yb4{bottom:15.264000px;}
.y9b{bottom:19.008000px;}
.y73{bottom:23.655000px;}
.y7e{bottom:25.920000px;}
.y89{bottom:25.956000px;}
.ycf{bottom:33.915231px;}
.y76{bottom:39.675000px;}
.y82{bottom:39.708000px;}
.y29{bottom:40.788000px;}
.yab{bottom:40.935000px;}
.yc4{bottom:44.496000px;}
.yc7{bottom:44.676000px;}
.yc1{bottom:45.072000px;}
.y2e{bottom:45.900000px;}
.y35{bottom:47.484000px;}
.y3e{bottom:50.868000px;}
.yd0{bottom:51.579365px;}
.y71{bottom:57.315000px;}
.y9a{bottom:68.184000px;}
.y28{bottom:73.188000px;}
.ya9{bottom:73.470000px;}
.y77{bottom:74.370000px;}
.y80{bottom:74.850000px;}
.y60{bottom:74.916000px;}
.y34{bottom:76.284000px;}
.y2d{bottom:78.300000px;}
.y6b{bottom:78.480000px;}
.y3d{bottom:79.668000px;}
.y6{bottom:81.828000px;}
.y83{bottom:82.224000px;}
.yd1{bottom:90.525280px;}
.ya0{bottom:93.675000px;}
.y98{bottom:97.668000px;}
.y5f{bottom:99.072000px;}
.yd8{bottom:104.330165px;}
.y33{bottom:105.084000px;}
.y3c{bottom:108.468000px;}
.y78{bottom:109.080000px;}
.ycd{bottom:111.744000px;}
.y5{bottom:117.828000px;}
.y91{bottom:118.836000px;}
.y59{bottom:122.472000px;}
.y5e{bottom:122.832000px;}
.y8b{bottom:123.552000px;}
.y84{bottom:124.740000px;}
.ya1{bottom:125.850000px;}
.yd2{bottom:129.473766px;}
.y8f{bottom:136.476000px;}
.yef{bottom:137.340000px;}
.y27{bottom:137.988000px;}
.y9f{bottom:141.630000px;}
.y6c{bottom:141.945000px;}
.y16{bottom:143.100000px;}
.y79{bottom:143.820000px;}
.ycc{bottom:144.144000px;}
.ye3{bottom:144.864000px;}
.y12{bottom:146.880000px;}
.y6a{bottom:151.200000px;}
.y58{bottom:151.275000px;}
.y5d{bottom:154.875000px;}
.ya2{bottom:158.040000px;}
.yaa{bottom:160.095000px;}
.y67{bottom:160.665000px;}
.y92{bottom:161.310000px;}
.y85{bottom:167.250000px;}
.yd3{bottom:168.419681px;}
.y15{bottom:169.380000px;}
.yee{bottom:169.740000px;}
.y8e{bottom:169.770000px;}
.y26{bottom:170.430000px;}
.yc0{bottom:174.705000px;}
.yb9{bottom:175.650000px;}
.ycb{bottom:176.550000px;}
.ye2{bottom:177.270000px;}
.y7a{bottom:178.530000px;}
.y4d{bottom:179.745000px;}
.y57{bottom:180.435000px;}
.y99{bottom:182.010000px;}
.y4{bottom:182.850000px;}
.y11{bottom:183.240000px;}
.y5c{bottom:183.675000px;}
.ya3{bottom:190.185000px;}
.y72{bottom:195.690000px;}
.y45{bottom:199.620000px;}
.yb8{bottom:200.880000px;}
.yf7{bottom:202.290000px;}
.y25{bottom:202.830000px;}
.y93{bottom:203.790000px;}
.y66{bottom:203.865000px;}
.y14{bottom:205.020000px;}
.y6d{bottom:205.410000px;}
.yd4{bottom:207.446559px;}
.y2c{bottom:207.930000px;}
.yca{bottom:208.950000px;}
.y56{bottom:209.235000px;}
.y86{bottom:209.775000px;}
.y4c{bottom:212.190000px;}
.y7b{bottom:213.225000px;}
.ybf{bottom:217.905000px;}
.y10{bottom:219.600000px;}
.y5b{bottom:220.890000px;}
.ya4{bottom:222.375000px;}
.yb7{bottom:226.080000px;}
.y9c{bottom:226.440000px;}
.y13{bottom:231.480000px;}
.yb3{bottom:232.275000px;}
.y44{bottom:235.620000px;}
.y55{bottom:238.035000px;}
.y2b{bottom:240.330000px;}
.yed{bottom:242.670000px;}
.y4b{bottom:244.590000px;}
.yf6{bottom:244.950000px;}
.y94{bottom:246.270000px;}
.yd5{bottom:246.395044px;}
.y65{bottom:247.065000px;}
.y3{bottom:247.650000px;}
.y7c{bottom:247.935000px;}
.y87{bottom:252.330000px;}
.ya5{bottom:254.550000px;}
.y24{bottom:266.190000px;}
.y6e{bottom:268.920000px;}
.y43{bottom:271.620000px;}
.y8c{bottom:274.065000px;}
.yb2{bottom:279.795000px;}
.y7d{bottom:282.675000px;}
.yd6{bottom:285.340959px;}
.ya6{bottom:286.740000px;}
.yf5{bottom:287.610000px;}
.y95{bottom:288.750000px;}
.y64{bottom:290.310000px;}
.y23{bottom:292.830000px;}
.y88{bottom:294.840000px;}
.ye1{bottom:301.170000px;}
.ybe{bottom:304.350000px;}
.y2a{bottom:305.130000px;}
.yc5{bottom:310.035000px;}
.y2{bottom:312.450000px;}
.yec{bottom:315.570000px;}
.yad{bottom:317.625000px;}
.ya7{bottom:318.885000px;}
.y9e{bottom:319.890000px;}
.yd7{bottom:324.290730px;}
.y22{bottom:325.260000px;}
.y1b{bottom:327.135000px;}
.yb1{bottom:327.345000px;}
.y5a{bottom:330.090000px;}
.yf4{bottom:330.270000px;}
.y96{bottom:331.230000px;}
.y6f{bottom:332.385000px;}
.y63{bottom:333.510000px;}
.y9d{bottom:340.590000px;}
.yac{bottom:344.595000px;}
.y54{bottom:347.010000px;}
.ybd{bottom:347.550000px;}
.yeb{bottom:348.015000px;}
.ya8{bottom:351.075000px;}
.yf{bottom:351.360000px;}
.ye0{bottom:353.370000px;}
.y48{bottom:356.865000px;}
.y21{bottom:357.660000px;}
.y74{bottom:359.565000px;}
.y97{bottom:373.710000px;}
.yb0{bottom:374.865000px;}
.y1{bottom:377.280000px;}
.yea{bottom:380.415000px;}
.y75{bottom:380.520000px;}
.ya{bottom:387.795000px;}
.ybc{bottom:390.750000px;}
.y70{bottom:395.850000px;}
.y53{bottom:399.675000px;}
.ye{bottom:400.530000px;}
.y47{bottom:403.095000px;}
.y49{bottom:403.275000px;}
.ydf{bottom:405.615000px;}
.yc3{bottom:411.405000px;}
.yc2{bottom:411.585000px;}
.yf3{bottom:415.620000px;}
.y1a{bottom:417.855000px;}
.yc6{bottom:419.760000px;}
.yaf{bottom:422.385000px;}
.y4a{bottom:430.530000px;}
.ybb{bottom:433.950000px;}
.yd{bottom:436.890000px;}
.y46{bottom:439.095000px;}
.y50{bottom:447.840000px;}
.ye9{bottom:453.315000px;}
.yde{bottom:457.815000px;}
.yf2{bottom:458.280000px;}
.y19{bottom:463.245000px;}
.ydc{bottom:477.750000px;}
.y1e{bottom:484.350000px;}
.ye8{bottom:485.715000px;}
.y4f{bottom:493.200000px;}
.y36{bottom:503.130000px;}
.y32{bottom:504.180000px;}
.y18{bottom:508.605000px;}
.ydb{bottom:510.195000px;}
.ye7{bottom:518.145000px;}
.yba{bottom:520.380000px;}
.y3f{bottom:525.165000px;}
.y3b{bottom:525.960000px;}
.y4e{bottom:538.590000px;}
.yda{bottom:542.595000px;}
.y17{bottom:553.965000px;}
.yf1{bottom:555.120000px;}
.y1d{bottom:562.110000px;}
.yc{bottom:579.705000px;}
.y3a{bottom:580.140000px;}
.y31{bottom:582.090000px;}
.y20{bottom:583.920000px;}
.y42{bottom:586.005000px;}
.ye6{bottom:591.045000px;}
.yf0{bottom:597.240000px;}
.y39{bottom:613.260000px;}
.yae{bottom:614.985000px;}
.yb6{bottom:622.770000px;}
.ye5{bottom:623.445000px;}
.yb{bottom:628.665000px;}
.y8d{bottom:632.190000px;}
.y62{bottom:651.600000px;}
.y52{bottom:652.710000px;}
.y30{bottom:654.045000px;}
.y41{bottom:656.610000px;}
.ydd{bottom:659.670000px;}
.y1f{bottom:661.680000px;}
.y1c{bottom:674.070000px;}
.y38{bottom:677.265000px;}
.yb5{bottom:692.070000px;}
.ye4{bottom:710.565000px;}
.y69{bottom:715.320000px;}
.yc9{bottom:718.560000px;}
.y2f{bottom:718.845000px;}
.y40{bottom:721.410000px;}
.y51{bottom:725.430000px;}
.y9{bottom:728.715000px;}
.y61{bottom:729.030000px;}
.y37{bottom:742.065000px;}
.y90{bottom:744.660000px;}
.y8{bottom:753.915000px;}
.y68{bottom:758.520000px;}
.yc8{bottom:761.790000px;}
.y7{bottom:779.145000px;}
.h2c{height:35.261367px;}
.h2b{height:39.471680px;}
.h2e{height:39.576937px;}
.h29{height:41.726953px;}
.h1d{height:45.899648px;}
.h27{height:50.273438px;}
.h28{height:50.373984px;}
.h3e{height:52.541180px;}
.h31{height:58.819922px;}
.h34{height:58.920469px;}
.h10{height:64.701914px;}
.h39{height:64.812516px;}
.h6{height:65.277773px;}
.h5{height:65.389359px;}
.h35{height:66.863672px;}
.h8{height:66.913945px;}
.h32{height:66.964219px;}
.h40{height:67.653861px;}
.h1a{height:67.824844px;}
.h1b{height:67.972289px;}
.h3f{height:68.473757px;}
.h15{height:73.550039px;}
.h17{height:73.660641px;}
.h1e{height:74.204648px;}
.h1f{height:74.316234px;}
.h49{height:78.527109px;}
.h4a{height:78.637711px;}
.h20{height:79.490742px;}
.h3b{height:79.633969px;}
.hf{height:82.951172px;}
.he{height:83.061773px;}
.h11{height:83.689453px;}
.h12{height:83.801039px;}
.h3{height:92.352305px;}
.h7{height:92.462906px;}
.h48{height:92.854687px;}
.h14{height:93.174258px;}
.h3a{height:95.245664px;}
.h1c{height:98.051133px;}
.hd{height:98.085938px;}
.h41{height:107.419922px;}
.h42{height:107.563148px;}
.h4{height:109.202344px;}
.h25{height:109.828125px;}
.h3c{height:109.937953px;}
.h36{height:110.601562px;}
.h37{height:111.585938px;}
.h38{height:111.697523px;}
.h2f{height:111.716719px;}
.h45{height:119.594180px;}
.h46{height:119.737406px;}
.h47{height:121.070742px;}
.h9{height:129.997617px;}
.ha{height:130.109203px;}
.h22{height:135.018984px;}
.h18{height:140.630039px;}
.h23{height:143.226562px;}
.h24{height:143.369789px;}
.h19{height:148.967227px;}
.h21{height:149.078812px;}
.h13{height:167.378906px;}
.h16{height:167.490492px;}
.h43{height:178.408828px;}
.h2{height:185.790586px;}
.h1{height:185.902172px;}
.hb{height:223.171875px;}
.hc{height:223.283461px;}
.h44{height:286.596352px;}
.h2a{height:303.660000px;}
.h2d{height:372.960000px;}
.h3d{height:373.875320px;}
.h33{height:381.240000px;}
.h30{height:396.900000px;}
.h26{height:432.540000px;}
.h0{height:810.000000px;}
.w7{width:476.640000px;}
.w3{width:623.700000px;}
.w4{width:636.480000px;}
.w5{width:655.380000px;}
.w2{width:676.080000px;}
.w6{width:730.800000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x73{left:6.191979px;}
.x47{left:9.720000px;}
.x6a{left:12.600000px;}
.x4b{left:26.568000px;}
.x70{left:34.812000px;}
.x39{left:37.763979px;}
.x4f{left:44.130000px;}
.x3c{left:45.863979px;}
.x67{left:47.520000px;}
.x35{left:49.391979px;}
.x6e{left:50.400000px;}
.x7{left:53.207979px;}
.x86{left:54.647979px;}
.x66{left:56.520000px;}
.x1{left:58.607979px;}
.x49{left:61.236000px;}
.xb{left:63.863979px;}
.x15{left:64.943979px;}
.xa{left:66.023979px;}
.x25{left:68.579979px;}
.x48{left:70.236000px;}
.x6d{left:71.424000px;}
.x4a{left:81.036000px;}
.x3{left:84.239979px;}
.x1f{left:85.679979px;}
.x50{left:89.430000px;}
.x59{left:91.005000px;}
.x36{left:94.211979px;}
.x6f{left:95.292000px;}
.x85{left:99.143979px;}
.x21{left:102.203979px;}
.x51{left:108.435000px;}
.x5a{left:110.055000px;}
.x28{left:112.535979px;}
.x7d{left:113.939979px;}
.x1c{left:116.351979px;}
.x3b{left:118.259979px;}
.x3a{left:120.599979px;}
.x2a{left:131.147979px;}
.x68{left:135.750000px;}
.x8{left:141.515979px;}
.x74{left:142.595979px;}
.x72{left:155.775000px;}
.x2b{left:166.424979px;}
.x4d{left:175.650000px;}
.x1e{left:180.869979px;}
.x3d{left:189.359979px;}
.x83{left:202.396427px;}
.x63{left:208.979979px;}
.x24{left:230.609979px;}
.x2c{left:231.809979px;}
.x53{left:233.715000px;}
.x5c{left:238.470000px;}
.x64{left:244.829979px;}
.x52{left:249.405000px;}
.x5b{left:254.160000px;}
.x69{left:283.035000px;}
.x4c{left:291.165000px;}
.x71{left:306.930000px;}
.x43{left:309.749979px;}
.x61{left:311.400000px;}
.x44{left:323.429979px;}
.x2d{left:334.334979px;}
.x54{left:344.010000px;}
.x45{left:348.989979px;}
.x42{left:350.789979px;}
.x5d{left:351.930000px;}
.x55{left:400.710000px;}
.x75{left:404.024979px;}
.x78{left:405.389979px;}
.x46{left:406.409979px;}
.x5e{left:408.630000px;}
.x37{left:414.614979px;}
.x79{left:417.809979px;}
.x2e{left:418.934979px;}
.x77{left:422.744979px;}
.x76{left:440.744979px;}
.x6b{left:445.500000px;}
.x38{left:473.864979px;}
.x1d{left:479.699979px;}
.x56{left:480.990000px;}
.x10{left:482.189979px;}
.x17{left:485.384979px;}
.x18{left:491.144979px;}
.x5f{left:493.380000px;}
.x11{left:500.909979px;}
.x13{left:515.309979px;}
.x60{left:519.735000px;}
.x57{left:533.055000px;}
.xc{left:535.469979px;}
.x19{left:539.024979px;}
.x23{left:547.769979px;}
.xd{left:557.069979px;}
.x1b{left:563.144979px;}
.x6c{left:568.545000px;}
.x1a{left:572.144979px;}
.x16{left:574.124979px;}
.x12{left:600.449979px;}
.xe{left:605.309979px;}
.xf{left:610.889979px;}
.x29{left:623.339979px;}
.x22{left:644.249979px;}
.x14{left:653.399979px;}
.x7b{left:661.679979px;}
.x7c{left:728.354979px;}
.x4e{left:741.240000px;}
.x58{left:746.100000px;}
.x65{left:756.540000px;}
.x20{left:774.644979px;}
.x27{left:798.449979px;}
.x84{left:845.714979px;}
.x4{left:853.664979px;}
.x5{left:859.214979px;}
.x26{left:863.564979px;}
.x2f{left:869.864979px;}
.x30{left:943.529979px;}
.x82{left:963.360000px;}
.x33{left:976.469979px;}
.x9{left:982.109979px;}
.x2{left:986.144979px;}
.x7a{left:992.849979px;}
.x32{left:997.349979px;}
.x31{left:1017.869979px;}
.x34{left:1019.309979px;}
.x62{left:1064.159979px;}
.x6{left:1066.964979px;}
.x41{left:1134.329979px;}
.x80{left:1149.374979px;}
.x3f{left:1154.444979px;}
.x81{left:1155.854979px;}
.x7e{left:1157.834979px;}
.x40{left:1158.944979px;}
.x7f{left:1171.334979px;}
.x3e{left:1204.664979px;}
@media print{
.v3{vertical-align:-31.360000pt;}
.v9{vertical-align:-22.476220pt;}
.v2{vertical-align:-20.480000pt;}
.v7{vertical-align:-17.920006pt;}
.v4{vertical-align:-15.360005pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.839996pt;}
.v6{vertical-align:11.519999pt;}
.v8{vertical-align:17.920000pt;}
.va{vertical-align:28.800000pt;}
.v1{vertical-align:59.626667pt;}
.lsc{letter-spacing:-3.264000pt;}
.ls2b{letter-spacing:-2.506667pt;}
.ls4{letter-spacing:-2.469333pt;}
.lsb{letter-spacing:-2.293333pt;}
.ls1{letter-spacing:-1.818667pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.311467pt;}
.lsa{letter-spacing:-0.284267pt;}
.ls27{letter-spacing:-0.262400pt;}
.ls21{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.151467pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.102400pt;}
.ls7{letter-spacing:-0.099733pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.032000pt;}
.ls28{letter-spacing:-0.005760pt;}
.ls1e{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000003pt;}
.ls13{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.059733pt;}
.ls5{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.128856pt;}
.ls23{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183040pt;}
.ls10{letter-spacing:0.185600pt;}
.ls17{letter-spacing:0.216533pt;}
.lsf{letter-spacing:0.227733pt;}
.ls25{letter-spacing:0.246933pt;}
.ls8{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.261333pt;}
.ls20{letter-spacing:0.308480pt;}
.ls1f{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.561280pt;}
.ls11{letter-spacing:12.160001pt;}
.ls15{letter-spacing:16.320001pt;}
.ls14{letter-spacing:19.840001pt;}
.ls2a{letter-spacing:64.147200pt;}
.ls29{letter-spacing:64.192000pt;}
.ls9{letter-spacing:90.528000pt;}
.ws22{word-spacing:-99.840000pt;}
.ws2d{word-spacing:-85.120000pt;}
.ws27{word-spacing:-74.880000pt;}
.ws6{word-spacing:-64.032000pt;}
.ws15{word-spacing:-53.120000pt;}
.wsb{word-spacing:-37.280000pt;}
.ws3f{word-spacing:-35.264213pt;}
.ws40{word-spacing:-35.249813pt;}
.ws41{word-spacing:-35.002880pt;}
.ws38{word-spacing:-32.256000pt;}
.ws3b{word-spacing:-29.312000pt;}
.ws1a{word-spacing:-28.928000pt;}
.ws2{word-spacing:-26.752000pt;}
.ws3{word-spacing:-26.720000pt;}
.ws49{word-spacing:-24.154880pt;}
.ws48{word-spacing:-24.149120pt;}
.ws8{word-spacing:-24.032000pt;}
.ws7{word-spacing:-24.000000pt;}
.ws47{word-spacing:-23.892480pt;}
.ws46{word-spacing:-21.856000pt;}
.ws43{word-spacing:-21.824000pt;}
.ws42{word-spacing:-21.696000pt;}
.ws44{word-spacing:-21.664000pt;}
.ws2b{word-spacing:-21.312000pt;}
.wsf{word-spacing:-21.280000pt;}
.ws4{word-spacing:-19.360000pt;}
.ws1b{word-spacing:-19.237120pt;}
.ws29{word-spacing:-18.752000pt;}
.ws25{word-spacing:-18.720000pt;}
.ws24{word-spacing:-18.408533pt;}
.ws17{word-spacing:-16.055040pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws3e{word-spacing:-15.739243pt;}
.ws2c{word-spacing:-14.752000pt;}
.ws1d{word-spacing:-13.344000pt;}
.ws14{word-spacing:-13.306880pt;}
.ws3a{word-spacing:-12.480000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws1e{word-spacing:-11.920640pt;}
.ws20{word-spacing:-10.720000pt;}
.ws26{word-spacing:-1.930880pt;}
.wsd{word-spacing:-1.448960pt;}
.ws39{word-spacing:-1.130880pt;}
.ws30{word-spacing:-1.045333pt;}
.wsc{word-spacing:-1.044693pt;}
.ws34{word-spacing:-1.002667pt;}
.ws32{word-spacing:-0.928981pt;}
.ws2e{word-spacing:-0.759040pt;}
.ws13{word-spacing:-0.576000pt;}
.ws1{word-spacing:-0.372224pt;}
.ws10{word-spacing:-0.231040pt;}
.ws37{word-spacing:-0.149333pt;}
.ws19{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.002560pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.049536pt;}
.ws9{word-spacing:0.096000pt;}
.ws5{word-spacing:0.267733pt;}
.ws2f{word-spacing:0.277333pt;}
.ws35{word-spacing:0.362667pt;}
.ws36{word-spacing:0.512000pt;}
.wsa{word-spacing:0.558592pt;}
.ws33{word-spacing:0.640000pt;}
.ws31{word-spacing:0.833749pt;}
.ws11{word-spacing:1.152000pt;}
.ws18{word-spacing:1.216768pt;}
.ws45{word-spacing:1.386667pt;}
.ws12{word-spacing:1.502720pt;}
.ws28{word-spacing:129.337003pt;}
.ws3d{word-spacing:151.273271pt;}
.ws3c{word-spacing:169.638193pt;}
.ws2a{word-spacing:278.666667pt;}
.ws23{word-spacing:294.560000pt;}
.ws1c{word-spacing:381.973333pt;}
._2{margin-left:-20.885760pt;}
._a{margin-left:-14.315520pt;}
._5{margin-left:-10.587776pt;}
._e{margin-left:-8.928000pt;}
._16{margin-left:-7.994112pt;}
._19{margin-left:-7.032320pt;}
._b{margin-left:-5.760000pt;}
._7{margin-left:-4.064512pt;}
._4{margin-left:-2.772224pt;}
._0{margin-left:-1.279488pt;}
._1{width:1.066240pt;}
._9{width:2.385920pt;}
._10{width:5.160021pt;}
._d{width:16.300331pt;}
._8{width:17.246208pt;}
._c{width:21.706667pt;}
._f{width:22.632448pt;}
._15{width:24.374912pt;}
._6{width:25.795115pt;}
._1e{width:32.441728pt;}
._1d{width:33.492224pt;}
._12{width:38.600533pt;}
._13{width:39.689984pt;}
._1f{width:49.194667pt;}
._3{width:54.592213pt;}
._11{width:118.979840pt;}
._20{width:204.951436pt;}
._1c{width:262.666667pt;}
._1b{width:278.453333pt;}
._17{width:295.478613pt;}
._1a{width:310.677333pt;}
._18{width:326.666667pt;}
._14{width:815.767253pt;}
.fs1f{font-size:32.000000pt;}
.fs1e{font-size:42.880000pt;}
.fs23{font-size:47.360000pt;}
.fs1d{font-size:48.000000pt;}
.fs20{font-size:48.128000pt;}
.fs22{font-size:49.920000pt;}
.fs15{font-size:53.120000pt;}
.fs27{font-size:56.615981pt;}
.fs14{font-size:56.960000pt;}
.fs12{font-size:58.880000pt;}
.fs13{font-size:59.008000pt;}
.fs25{font-size:63.893319pt;}
.fs1b{font-size:64.000000pt;}
.fs1c{font-size:64.128000pt;}
.fs16{font-size:71.040000pt;}
.fs24{font-size:71.168000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:75.008000pt;}
.fs6{font-size:77.440000pt;}
.fs28{font-size:82.271273pt;}
.fs26{font-size:83.268317pt;}
.fse{font-size:85.120000pt;}
.fs10{font-size:85.248000pt;}
.fs2a{font-size:90.880000pt;}
.fs2b{font-size:91.008000pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs21{font-size:99.840000pt;}
.fs2{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs19{font-size:128.000000pt;}
.fs1a{font-size:128.128000pt;}
.fs29{font-size:138.880000pt;}
.fs7{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs18{font-size:154.880000pt;}
.fs11{font-size:170.880000pt;}
.fs17{font-size:171.008000pt;}
.fsd{font-size:192.000000pt;}
.fsf{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.fs9{font-size:256.000000pt;}
.fsa{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:0.000163pt;}
.yd9{bottom:5.469145pt;}
.y7f{bottom:10.786667pt;}
.y8a{bottom:10.816000pt;}
.y81{bottom:11.040000pt;}
.yb4{bottom:13.568000pt;}
.y9b{bottom:16.896000pt;}
.y73{bottom:21.026667pt;}
.y7e{bottom:23.040000pt;}
.y89{bottom:23.072000pt;}
.ycf{bottom:30.146872pt;}
.y76{bottom:35.266667pt;}
.y82{bottom:35.296000pt;}
.y29{bottom:36.256000pt;}
.yab{bottom:36.386667pt;}
.yc4{bottom:39.552000pt;}
.yc7{bottom:39.712000pt;}
.yc1{bottom:40.064000pt;}
.y2e{bottom:40.800000pt;}
.y35{bottom:42.208000pt;}
.y3e{bottom:45.216000pt;}
.yd0{bottom:45.848325pt;}
.y71{bottom:50.946667pt;}
.y9a{bottom:60.608000pt;}
.y28{bottom:65.056000pt;}
.ya9{bottom:65.306667pt;}
.y77{bottom:66.106667pt;}
.y80{bottom:66.533333pt;}
.y60{bottom:66.592000pt;}
.y34{bottom:67.808000pt;}
.y2d{bottom:69.600000pt;}
.y6b{bottom:69.760000pt;}
.y3d{bottom:70.816000pt;}
.y6{bottom:72.736000pt;}
.y83{bottom:73.088000pt;}
.yd1{bottom:80.466916pt;}
.ya0{bottom:83.266667pt;}
.y98{bottom:86.816000pt;}
.y5f{bottom:88.064000pt;}
.yd8{bottom:92.737924pt;}
.y33{bottom:93.408000pt;}
.y3c{bottom:96.416000pt;}
.y78{bottom:96.960000pt;}
.ycd{bottom:99.328000pt;}
.y5{bottom:104.736000pt;}
.y91{bottom:105.632000pt;}
.y59{bottom:108.864000pt;}
.y5e{bottom:109.184000pt;}
.y8b{bottom:109.824000pt;}
.y84{bottom:110.880000pt;}
.ya1{bottom:111.866667pt;}
.yd2{bottom:115.087792pt;}
.y8f{bottom:121.312000pt;}
.yef{bottom:122.080000pt;}
.y27{bottom:122.656000pt;}
.y9f{bottom:125.893333pt;}
.y6c{bottom:126.173333pt;}
.y16{bottom:127.200000pt;}
.y79{bottom:127.840000pt;}
.ycc{bottom:128.128000pt;}
.ye3{bottom:128.768000pt;}
.y12{bottom:130.560000pt;}
.y6a{bottom:134.400000pt;}
.y58{bottom:134.466667pt;}
.y5d{bottom:137.666667pt;}
.ya2{bottom:140.480000pt;}
.yaa{bottom:142.306667pt;}
.y67{bottom:142.813333pt;}
.y92{bottom:143.386667pt;}
.y85{bottom:148.666667pt;}
.yd3{bottom:149.706383pt;}
.y15{bottom:150.560000pt;}
.yee{bottom:150.880000pt;}
.y8e{bottom:150.906667pt;}
.y26{bottom:151.493333pt;}
.yc0{bottom:155.293333pt;}
.yb9{bottom:156.133333pt;}
.ycb{bottom:156.933333pt;}
.ye2{bottom:157.573333pt;}
.y7a{bottom:158.693333pt;}
.y4d{bottom:159.773333pt;}
.y57{bottom:160.386667pt;}
.y99{bottom:161.786667pt;}
.y4{bottom:162.533333pt;}
.y11{bottom:162.880000pt;}
.y5c{bottom:163.266667pt;}
.ya3{bottom:169.053333pt;}
.y72{bottom:173.946667pt;}
.y45{bottom:177.440000pt;}
.yb8{bottom:178.560000pt;}
.yf7{bottom:179.813333pt;}
.y25{bottom:180.293333pt;}
.y93{bottom:181.146667pt;}
.y66{bottom:181.213333pt;}
.y14{bottom:182.240000pt;}
.y6d{bottom:182.586667pt;}
.yd4{bottom:184.396941pt;}
.y2c{bottom:184.826667pt;}
.yca{bottom:185.733333pt;}
.y56{bottom:185.986667pt;}
.y86{bottom:186.466667pt;}
.y4c{bottom:188.613333pt;}
.y7b{bottom:189.533333pt;}
.ybf{bottom:193.693333pt;}
.y10{bottom:195.200000pt;}
.y5b{bottom:196.346667pt;}
.ya4{bottom:197.666667pt;}
.yb7{bottom:200.960000pt;}
.y9c{bottom:201.280000pt;}
.y13{bottom:205.760000pt;}
.yb3{bottom:206.466667pt;}
.y44{bottom:209.440000pt;}
.y55{bottom:211.586667pt;}
.y2b{bottom:213.626667pt;}
.yed{bottom:215.706667pt;}
.y4b{bottom:217.413333pt;}
.yf6{bottom:217.733333pt;}
.y94{bottom:218.906667pt;}
.yd5{bottom:219.017817pt;}
.y65{bottom:219.613333pt;}
.y3{bottom:220.133333pt;}
.y7c{bottom:220.386667pt;}
.y87{bottom:224.293333pt;}
.ya5{bottom:226.266667pt;}
.y24{bottom:236.613333pt;}
.y6e{bottom:239.040000pt;}
.y43{bottom:241.440000pt;}
.y8c{bottom:243.613333pt;}
.yb2{bottom:248.706667pt;}
.y7d{bottom:251.266667pt;}
.yd6{bottom:253.636408pt;}
.ya6{bottom:254.880000pt;}
.yf5{bottom:255.653333pt;}
.y95{bottom:256.666667pt;}
.y64{bottom:258.053333pt;}
.y23{bottom:260.293333pt;}
.y88{bottom:262.080000pt;}
.ye1{bottom:267.706667pt;}
.ybe{bottom:270.533333pt;}
.y2a{bottom:271.226667pt;}
.yc5{bottom:275.586667pt;}
.y2{bottom:277.733333pt;}
.yec{bottom:280.506667pt;}
.yad{bottom:282.333333pt;}
.ya7{bottom:283.453333pt;}
.y9e{bottom:284.346667pt;}
.yd7{bottom:288.258426pt;}
.y22{bottom:289.120000pt;}
.y1b{bottom:290.786667pt;}
.yb1{bottom:290.973333pt;}
.y5a{bottom:293.413333pt;}
.yf4{bottom:293.573333pt;}
.y96{bottom:294.426667pt;}
.y6f{bottom:295.453333pt;}
.y63{bottom:296.453333pt;}
.y9d{bottom:302.746667pt;}
.yac{bottom:306.306667pt;}
.y54{bottom:308.453333pt;}
.ybd{bottom:308.933333pt;}
.yeb{bottom:309.346667pt;}
.ya8{bottom:312.066667pt;}
.yf{bottom:312.320000pt;}
.ye0{bottom:314.106667pt;}
.y48{bottom:317.213333pt;}
.y21{bottom:317.920000pt;}
.y74{bottom:319.613333pt;}
.y97{bottom:332.186667pt;}
.yb0{bottom:333.213333pt;}
.y1{bottom:335.360000pt;}
.yea{bottom:338.146667pt;}
.y75{bottom:338.240000pt;}
.ya{bottom:344.706667pt;}
.ybc{bottom:347.333333pt;}
.y70{bottom:351.866667pt;}
.y53{bottom:355.266667pt;}
.ye{bottom:356.026667pt;}
.y47{bottom:358.306667pt;}
.y49{bottom:358.466667pt;}
.ydf{bottom:360.546667pt;}
.yc3{bottom:365.693333pt;}
.yc2{bottom:365.853333pt;}
.yf3{bottom:369.440000pt;}
.y1a{bottom:371.426667pt;}
.yc6{bottom:373.120000pt;}
.yaf{bottom:375.453333pt;}
.y4a{bottom:382.693333pt;}
.ybb{bottom:385.733333pt;}
.yd{bottom:388.346667pt;}
.y46{bottom:390.306667pt;}
.y50{bottom:398.080000pt;}
.ye9{bottom:402.946667pt;}
.yde{bottom:406.946667pt;}
.yf2{bottom:407.360000pt;}
.y19{bottom:411.773333pt;}
.ydc{bottom:424.666667pt;}
.y1e{bottom:430.533333pt;}
.ye8{bottom:431.746667pt;}
.y4f{bottom:438.400000pt;}
.y36{bottom:447.226667pt;}
.y32{bottom:448.160000pt;}
.y18{bottom:452.093333pt;}
.ydb{bottom:453.506667pt;}
.ye7{bottom:460.573333pt;}
.yba{bottom:462.560000pt;}
.y3f{bottom:466.813333pt;}
.y3b{bottom:467.520000pt;}
.y4e{bottom:478.746667pt;}
.yda{bottom:482.306667pt;}
.y17{bottom:492.413333pt;}
.yf1{bottom:493.440000pt;}
.y1d{bottom:499.653333pt;}
.yc{bottom:515.293333pt;}
.y3a{bottom:515.680000pt;}
.y31{bottom:517.413333pt;}
.y20{bottom:519.040000pt;}
.y42{bottom:520.893333pt;}
.ye6{bottom:525.373333pt;}
.yf0{bottom:530.880000pt;}
.y39{bottom:545.120000pt;}
.yae{bottom:546.653333pt;}
.yb6{bottom:553.573333pt;}
.ye5{bottom:554.173333pt;}
.yb{bottom:558.813333pt;}
.y8d{bottom:561.946667pt;}
.y62{bottom:579.200000pt;}
.y52{bottom:580.186667pt;}
.y30{bottom:581.373333pt;}
.y41{bottom:583.653333pt;}
.ydd{bottom:586.373333pt;}
.y1f{bottom:588.160000pt;}
.y1c{bottom:599.173333pt;}
.y38{bottom:602.013333pt;}
.yb5{bottom:615.173333pt;}
.ye4{bottom:631.613333pt;}
.y69{bottom:635.840000pt;}
.yc9{bottom:638.720000pt;}
.y2f{bottom:638.973333pt;}
.y40{bottom:641.253333pt;}
.y51{bottom:644.826667pt;}
.y9{bottom:647.746667pt;}
.y61{bottom:648.026667pt;}
.y37{bottom:659.613333pt;}
.y90{bottom:661.920000pt;}
.y8{bottom:670.146667pt;}
.y68{bottom:674.240000pt;}
.yc8{bottom:677.146667pt;}
.y7{bottom:692.573333pt;}
.h2c{height:31.343437pt;}
.h2b{height:35.085938pt;}
.h2e{height:35.179500pt;}
.h29{height:37.090625pt;}
.h1d{height:40.799688pt;}
.h27{height:44.687500pt;}
.h28{height:44.776875pt;}
.h3e{height:46.703271pt;}
.h31{height:52.284375pt;}
.h34{height:52.373750pt;}
.h10{height:57.512812pt;}
.h39{height:57.611125pt;}
.h6{height:58.024687pt;}
.h5{height:58.123875pt;}
.h35{height:59.434375pt;}
.h8{height:59.479062pt;}
.h32{height:59.523750pt;}
.h40{height:60.136766pt;}
.h1a{height:60.288750pt;}
.h1b{height:60.419812pt;}
.h3f{height:60.865562pt;}
.h15{height:65.377813pt;}
.h17{height:65.476125pt;}
.h1e{height:65.959688pt;}
.h1f{height:66.058875pt;}
.h49{height:69.801875pt;}
.h4a{height:69.900188pt;}
.h20{height:70.658438pt;}
.h3b{height:70.785750pt;}
.hf{height:73.734375pt;}
.he{height:73.832688pt;}
.h11{height:74.390625pt;}
.h12{height:74.489812pt;}
.h3{height:82.090937pt;}
.h7{height:82.189250pt;}
.h48{height:82.537500pt;}
.h14{height:82.821562pt;}
.h3a{height:84.662813pt;}
.h1c{height:87.156562pt;}
.hd{height:87.187500pt;}
.h41{height:95.484375pt;}
.h42{height:95.611688pt;}
.h4{height:97.068750pt;}
.h25{height:97.625000pt;}
.h3c{height:97.722625pt;}
.h36{height:98.312500pt;}
.h37{height:99.187500pt;}
.h38{height:99.286687pt;}
.h2f{height:99.303750pt;}
.h45{height:106.305937pt;}
.h46{height:106.433250pt;}
.h47{height:107.618437pt;}
.h9{height:115.553437pt;}
.ha{height:115.652625pt;}
.h22{height:120.016875pt;}
.h18{height:125.004479pt;}
.h23{height:127.312500pt;}
.h24{height:127.439813pt;}
.h19{height:132.415312pt;}
.h21{height:132.514500pt;}
.h13{height:148.781250pt;}
.h16{height:148.880437pt;}
.h43{height:158.585625pt;}
.h2{height:165.147188pt;}
.h1{height:165.246375pt;}
.hb{height:198.375000pt;}
.hc{height:198.474187pt;}
.h44{height:254.752312pt;}
.h2a{height:269.920000pt;}
.h2d{height:331.520000pt;}
.h3d{height:332.333617pt;}
.h33{height:338.880000pt;}
.h30{height:352.800000pt;}
.h26{height:384.480000pt;}
.h0{height:720.000000pt;}
.w7{width:423.680000pt;}
.w3{width:554.400000pt;}
.w4{width:565.760000pt;}
.w5{width:582.560000pt;}
.w2{width:600.960000pt;}
.w6{width:649.600000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x73{left:5.503981pt;}
.x47{left:8.640000pt;}
.x6a{left:11.200000pt;}
.x4b{left:23.616000pt;}
.x70{left:30.944000pt;}
.x39{left:33.567981pt;}
.x4f{left:39.226667pt;}
.x3c{left:40.767981pt;}
.x67{left:42.240000pt;}
.x35{left:43.903981pt;}
.x6e{left:44.800000pt;}
.x7{left:47.295981pt;}
.x86{left:48.575981pt;}
.x66{left:50.240000pt;}
.x1{left:52.095981pt;}
.x49{left:54.432000pt;}
.xb{left:56.767981pt;}
.x15{left:57.727981pt;}
.xa{left:58.687981pt;}
.x25{left:60.959981pt;}
.x48{left:62.432000pt;}
.x6d{left:63.488000pt;}
.x4a{left:72.032000pt;}
.x3{left:74.879981pt;}
.x1f{left:76.159981pt;}
.x50{left:79.493333pt;}
.x59{left:80.893333pt;}
.x36{left:83.743981pt;}
.x6f{left:84.704000pt;}
.x85{left:88.127981pt;}
.x21{left:90.847981pt;}
.x51{left:96.386667pt;}
.x5a{left:97.826667pt;}
.x28{left:100.031981pt;}
.x7d{left:101.279981pt;}
.x1c{left:103.423981pt;}
.x3b{left:105.119981pt;}
.x3a{left:107.199981pt;}
.x2a{left:116.575981pt;}
.x68{left:120.666667pt;}
.x8{left:125.791981pt;}
.x74{left:126.751981pt;}
.x72{left:138.466667pt;}
.x2b{left:147.933314pt;}
.x4d{left:156.133333pt;}
.x1e{left:160.773314pt;}
.x3d{left:168.319981pt;}
.x83{left:179.907935pt;}
.x63{left:185.759981pt;}
.x24{left:204.986648pt;}
.x2c{left:206.053314pt;}
.x53{left:207.746667pt;}
.x5c{left:211.973333pt;}
.x64{left:217.626648pt;}
.x52{left:221.693333pt;}
.x5b{left:225.920000pt;}
.x69{left:251.586667pt;}
.x4c{left:258.813333pt;}
.x71{left:272.826667pt;}
.x43{left:275.333314pt;}
.x61{left:276.800000pt;}
.x44{left:287.493314pt;}
.x2d{left:297.186648pt;}
.x54{left:305.786667pt;}
.x45{left:310.213314pt;}
.x42{left:311.813314pt;}
.x5d{left:312.826667pt;}
.x55{left:356.186667pt;}
.x75{left:359.133314pt;}
.x78{left:360.346648pt;}
.x46{left:361.253314pt;}
.x5e{left:363.226667pt;}
.x37{left:368.546648pt;}
.x79{left:371.386648pt;}
.x2e{left:372.386648pt;}
.x77{left:375.773314pt;}
.x76{left:391.773314pt;}
.x6b{left:396.000000pt;}
.x38{left:421.213314pt;}
.x1d{left:426.399981pt;}
.x56{left:427.546667pt;}
.x10{left:428.613314pt;}
.x17{left:431.453314pt;}
.x18{left:436.573314pt;}
.x5f{left:438.560000pt;}
.x11{left:445.253314pt;}
.x13{left:458.053314pt;}
.x60{left:461.986667pt;}
.x57{left:473.826667pt;}
.xc{left:475.973314pt;}
.x19{left:479.133314pt;}
.x23{left:486.906648pt;}
.xd{left:495.173314pt;}
.x1b{left:500.573314pt;}
.x6c{left:505.373333pt;}
.x1a{left:508.573314pt;}
.x16{left:510.333314pt;}
.x12{left:533.733314pt;}
.xe{left:538.053314pt;}
.xf{left:543.013314pt;}
.x29{left:554.079981pt;}
.x22{left:572.666648pt;}
.x14{left:580.799981pt;}
.x7b{left:588.159981pt;}
.x7c{left:647.426648pt;}
.x4e{left:658.880000pt;}
.x58{left:663.200000pt;}
.x65{left:672.480000pt;}
.x20{left:688.573314pt;}
.x27{left:709.733314pt;}
.x84{left:751.746648pt;}
.x4{left:758.813314pt;}
.x5{left:763.746648pt;}
.x26{left:767.613314pt;}
.x2f{left:773.213314pt;}
.x30{left:838.693314pt;}
.x82{left:856.320000pt;}
.x33{left:867.973314pt;}
.x9{left:872.986648pt;}
.x2{left:876.573314pt;}
.x7a{left:882.533314pt;}
.x32{left:886.533314pt;}
.x31{left:904.773314pt;}
.x34{left:906.053314pt;}
.x62{left:945.919981pt;}
.x6{left:948.413314pt;}
.x41{left:1008.293314pt;}
.x80{left:1021.666648pt;}
.x3f{left:1026.173314pt;}
.x81{left:1027.426648pt;}
.x7e{left:1029.186648pt;}
.x40{left:1030.173314pt;}
.x7f{left:1041.186648pt;}
.x3e{left:1070.813314pt;}
}




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