
    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_5964134cef7ad8d88e54ab6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_388562e84eeee93f7912b60c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ba1280c12e160074ec941bef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133301;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_5472f88ffacc350effee4278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_218a7fa6ad7f3b4466020699.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.026000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.310908px;}
.ls2{letter-spacing:2.978556px;}
.ls3{letter-spacing:32.731200px;}
.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;}
}
.wsa{word-spacing:-35.878783px;}
.ws4{word-spacing:-35.567875px;}
.wsad{word-spacing:-35.505694px;}
.ws59{word-spacing:-24.897444px;}
.ws7c{word-spacing:-24.499550px;}
.ws7b{word-spacing:-24.126461px;}
.ws18{word-spacing:-24.101616px;}
.ws47{word-spacing:-24.002098px;}
.wsaa{word-spacing:-23.815553px;}
.ws79{word-spacing:-23.131555px;}
.ws49{word-spacing:-22.945010px;}
.ws32{word-spacing:-22.882829px;}
.ws56{word-spacing:-22.447558px;}
.ws7f{word-spacing:-22.385376px;}
.ws57{word-spacing:-22.323194px;}
.ws38{word-spacing:-22.136650px;}
.ws7e{word-spacing:-21.950105px;}
.ws71{word-spacing:-21.887923px;}
.ws3e{word-spacing:-21.763560px;}
.ws6f{word-spacing:-21.514834px;}
.ws89{word-spacing:-21.390470px;}
.ws88{word-spacing:-21.328289px;}
.ws27{word-spacing:-21.141744px;}
.ws30{word-spacing:-21.017381px;}
.ws66{word-spacing:-20.893018px;}
.ws1d{word-spacing:-20.644291px;}
.ws28{word-spacing:-20.519928px;}
.wsa7{word-spacing:-20.271202px;}
.wsa2{word-spacing:-20.209020px;}
.wsac{word-spacing:-20.084736px;}
.ws8f{word-spacing:-20.084657px;}
.ws67{word-spacing:-19.960294px;}
.ws50{word-spacing:-19.835930px;}
.ws1b{word-spacing:-19.711567px;}
.ws3{word-spacing:-19.462841px;}
.wsc{word-spacing:-19.436304px;}
.ws1e{word-spacing:-19.406254px;}
.ws0{word-spacing:-19.400659px;}
.ws44{word-spacing:-19.396896px;}
.ws85{word-spacing:-19.338478px;}
.ws5{word-spacing:-19.332497px;}
.ws6b{word-spacing:-19.276296px;}
.ws15{word-spacing:-19.151933px;}
.ws3c{word-spacing:-19.089751px;}
.ws12{word-spacing:-19.027570px;}
.ws95{word-spacing:-18.965388px;}
.ws8b{word-spacing:-18.841025px;}
.ws1a{word-spacing:-18.778843px;}
.ws55{word-spacing:-18.716662px;}
.ws39{word-spacing:-18.654480px;}
.ws6a{word-spacing:-18.592298px;}
.ws9d{word-spacing:-18.530117px;}
.ws70{word-spacing:-18.467935px;}
.ws65{word-spacing:-18.405754px;}
.ws3d{word-spacing:-18.281390px;}
.ws8a{word-spacing:-18.094846px;}
.ws63{word-spacing:-17.908301px;}
.ws14{word-spacing:-17.846119px;}
.ws4b{word-spacing:-17.783938px;}
.wsf{word-spacing:-17.774331px;}
.ws17{word-spacing:-17.717544px;}
.ws42{word-spacing:-17.348666px;}
.ws40{word-spacing:-17.224303px;}
.ws60{word-spacing:-17.162122px;}
.ws36{word-spacing:-17.099940px;}
.ws52{word-spacing:-17.037758px;}
.ws35{word-spacing:-16.975577px;}
.ws29{word-spacing:-16.913395px;}
.ws48{word-spacing:-16.602487px;}
.ws4d{word-spacing:-16.415942px;}
.ws9e{word-spacing:-16.291579px;}
.ws9c{word-spacing:-16.042853px;}
.ws4f{word-spacing:-15.980671px;}
.ws84{word-spacing:-15.918490px;}
.ws6e{word-spacing:-15.731945px;}
.ws43{word-spacing:-15.607582px;}
.ws5c{word-spacing:-15.483218px;}
.ws37{word-spacing:-15.421037px;}
.ws31{word-spacing:-15.047947px;}
.ws5e{word-spacing:-14.923584px;}
.ws8c{word-spacing:-14.861402px;}
.ws7d{word-spacing:-14.855479px;}
.ws62{word-spacing:-14.799221px;}
.ws72{word-spacing:-14.674858px;}
.ws9f{word-spacing:-14.426131px;}
.wsaf{word-spacing:-14.401183px;}
.ws3f{word-spacing:-14.301768px;}
.ws7a{word-spacing:-14.239586px;}
.ws4c{word-spacing:-14.219465px;}
.ws2e{word-spacing:-14.177405px;}
.ws46{word-spacing:-14.174035px;}
.wsa1{word-spacing:-14.115223px;}
.ws3a{word-spacing:-14.053042px;}
.ws64{word-spacing:-13.866497px;}
.ws87{word-spacing:-13.804315px;}
.ws1c{word-spacing:-13.742134px;}
.ws86{word-spacing:-13.617770px;}
.ws92{word-spacing:-13.555589px;}
.ws4a{word-spacing:-13.306862px;}
.ws91{word-spacing:-13.120318px;}
.ws16{word-spacing:-13.058136px;}
.ws33{word-spacing:-12.933773px;}
.wsa8{word-spacing:-12.871591px;}
.ws13{word-spacing:-12.809410px;}
.ws8e{word-spacing:-12.498502px;}
.wsa0{word-spacing:-12.249775px;}
.ws19{word-spacing:-12.187594px;}
.ws4e{word-spacing:-12.125412px;}
.wsa3{word-spacing:-11.876686px;}
.wsa9{word-spacing:-11.814504px;}
.ws8{word-spacing:-11.690141px;}
.ws76{word-spacing:-11.565778px;}
.wsd{word-spacing:-11.503596px;}
.ws7{word-spacing:-11.379233px;}
.ws73{word-spacing:-11.192688px;}
.ws51{word-spacing:-10.819598px;}
.ws3b{word-spacing:-10.695235px;}
.ws68{word-spacing:-10.633054px;}
.wse{word-spacing:-10.570872px;}
.wsa4{word-spacing:-10.508690px;}
.wsa6{word-spacing:-10.446509px;}
.ws69{word-spacing:-10.322146px;}
.ws2b{word-spacing:-10.073419px;}
.ws2f{word-spacing:-10.011238px;}
.ws34{word-spacing:-9.700330px;}
.ws80{word-spacing:-9.513785px;}
.ws6d{word-spacing:-9.265058px;}
.ws61{word-spacing:-9.078514px;}
.ws2a{word-spacing:-8.643242px;}
.ws83{word-spacing:-8.581061px;}
.ws5b{word-spacing:-8.518879px;}
.ws99{word-spacing:-7.834882px;}
.ws75{word-spacing:-7.648337px;}
.ws74{word-spacing:-6.777794px;}
.ws82{word-spacing:-6.529068px;}
.wsb{word-spacing:-6.404705px;}
.ws11{word-spacing:-6.342523px;}
.ws8d{word-spacing:-6.178053px;}
.ws54{word-spacing:-5.596344px;}
.ws53{word-spacing:-5.471981px;}
.ws26{word-spacing:-4.352712px;}
.ws97{word-spacing:-4.290530px;}
.ws2d{word-spacing:-3.730896px;}
.ws9{word-spacing:-3.482170px;}
.ws94{word-spacing:-3.046898px;}
.ws9b{word-spacing:-2.860354px;}
.ws98{word-spacing:-2.798172px;}
.ws90{word-spacing:-2.611627px;}
.ws5d{word-spacing:-1.803266px;}
.ws9a{word-spacing:-1.678903px;}
.ws78{word-spacing:-1.243632px;}
.ws2c{word-spacing:-0.994906px;}
.ws6{word-spacing:0.000000px;}
.ws81{word-spacing:0.373090px;}
.ws58{word-spacing:0.497453px;}
.ws93{word-spacing:1.865448px;}
.ws22{word-spacing:3.046898px;}
.wsa5{word-spacing:3.187947px;}
.ws5f{word-spacing:4.725802px;}
.ws96{word-spacing:5.223254px;}
.ws21{word-spacing:5.629096px;}
.ws20{word-spacing:5.694550px;}
.ws5a{word-spacing:6.240614px;}
.ws24{word-spacing:6.938188px;}
.ws41{word-spacing:7.402639px;}
.ws10{word-spacing:7.488716px;}
.ws77{word-spacing:8.705424px;}
.ws1{word-spacing:10.661850px;}
.ws2{word-spacing:10.785825px;}
.ws1f{word-spacing:18.916379px;}
.ws25{word-spacing:18.936984px;}
.ws45{word-spacing:120.732538px;}
.wsab{word-spacing:123.846538px;}
.ws6c{word-spacing:511.512295px;}
.wsae{word-spacing:1882.841959px;}
.ws23{word-spacing:2308.441898px;}
._0{margin-left:-3.471300px;}
._1{margin-left:-1.575938px;}
._b{width:2.029093px;}
._7{width:3.841174px;}
._6{width:5.548248px;}
._5{width:10.322146px;}
._27{width:11.766266px;}
._23{width:13.804315px;}
._26{width:14.861402px;}
._13{width:16.291579px;}
._1d{width:19.898112px;}
._4{width:21.474058px;}
._a{width:23.380282px;}
._9{width:24.623914px;}
._2{width:26.240635px;}
._24{width:28.292628px;}
._1e{width:29.536260px;}
._36{width:30.593347px;}
._29{width:31.650434px;}
._25{width:32.719819px;}
._33{width:34.143598px;}
._22{width:35.443512px;}
._d{width:37.243667px;}
._16{width:38.801318px;}
._21{width:39.920587px;}
._8{width:41.475127px;}
._20{width:43.038600px;}
._3{width:45.703476px;}
._15{width:48.082709px;}
._18{width:50.504237px;}
._1b{width:52.559942px;}
._1f{width:53.911447px;}
._30{width:56.833982px;}
._2f{width:59.383428px;}
._37{width:60.440515px;}
._17{width:62.384160px;}
._34{width:64.052947px;}
._35{width:70.582338px;}
._32{width:71.979149px;}
._2a{width:74.369194px;}
._1c{width:77.181665px;}
._31{width:81.768804px;}
._14{width:113.375971px;}
._2e{width:321.480278px;}
._2d{width:364.138673px;}
._38{width:443.731332px;}
._2c{width:455.361310px;}
._2b{width:462.811764px;}
._3e{width:623.669736px;}
._28{width:740.002094px;}
._3b{width:1000.456915px;}
._3d{width:1098.772493px;}
._3c{width:1212.800789px;}
._39{width:1369.481052px;}
._e{width:1401.377049px;}
._12{width:1513.561205px;}
._11{width:1533.731278px;}
._10{width:1570.844036px;}
._3a{width:1842.773052px;}
._f{width:2026.987088px;}
._c{width:2223.416342px;}
._1a{width:2276.172780px;}
._19{width:2315.314631px;}
.fc3{color:rgb(0,63,95);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(5,102,141);}
.fs2{font-size:0.000000px;}
.fs8{font-size:43.527000px;}
.fs7{font-size:45.429600px;}
.fs4{font-size:56.787000px;}
.fs0{font-size:62.181600px;}
.fs6{font-size:65.454600px;}
.fs3{font-size:68.144400px;}
.fs9{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:107.419500px;}
.y126{bottom:117.891000px;}
.y125{bottom:142.279500px;}
.y16{bottom:144.567000px;}
.ye5{bottom:151.179000px;}
.y124{bottom:158.455500px;}
.y17a{bottom:163.414500px;}
.y15{bottom:168.955500px;}
.ye4{bottom:173.326500px;}
.y123{bottom:182.844000px;}
.y179{bottom:185.562000px;}
.y14{bottom:193.344000px;}
.y145{bottom:193.650000px;}
.ya7{bottom:201.204000px;}
.y178{bottom:202.597500px;}
.ye3{bottom:204.985500px;}
.y122{bottom:207.232500px;}
.y144{bottom:210.687000px;}
.y59{bottom:212.001000px;}
.y76{bottom:217.732500px;}
.yc4{bottom:222.853500px;}
.y177{bottom:224.745000px;}
.ya6{bottom:225.592500px;}
.y13{bottom:226.698000px;}
.y143{bottom:227.722500px;}
.y105{bottom:229.648500px;}
.y121{bottom:231.621000px;}
.y58{bottom:236.389500px;}
.y176{bottom:241.780500px;}
.y75{bottom:242.121000px;}
.y142{bottom:244.758000px;}
.y104{bottom:246.685500px;}
.yc3{bottom:247.242000px;}
.ye2{bottom:252.715500px;}
.y120{bottom:256.009500px;}
.ya5{bottom:257.841000px;}
.y141{bottom:261.795000px;}
.y103{bottom:263.721000px;}
.y175{bottom:263.928000px;}
.yc2{bottom:271.630500px;}
.y57{bottom:274.227000px;}
.y12{bottom:276.118500px;}
.y11f{bottom:280.398000px;}
.y102{bottom:280.758000px;}
.ya4{bottom:282.229500px;}
.y140{bottom:283.941000px;}
.y174{bottom:286.074000px;}
.ye1{bottom:292.731000px;}
.y11{bottom:300.507000px;}
.y74{bottom:301.533000px;}
.y101{bottom:302.904000px;}
.y11e{bottom:304.786500px;}
.y13f{bottom:306.088500px;}
.y56{bottom:307.582500px;}
.y173{bottom:308.221500px;}
.ya3{bottom:314.478000px;}
.ye0{bottom:317.119500px;}
.y73{bottom:323.680500px;}
.y100{bottom:325.051500px;}
.y172{bottom:325.257000px;}
.y13e{bottom:328.236000px;}
.y11d{bottom:329.175000px;}
.yc1{bottom:335.386500px;}
.ya2{bottom:338.866500px;}
.y72{bottom:340.716000px;}
.y55{bottom:340.938000px;}
.ydf{bottom:341.508000px;}
.y34{bottom:342.742500px;}
.yff{bottom:347.197500px;}
.y171{bottom:347.404500px;}
.y10{bottom:349.857000px;}
.yc0{bottom:352.422000px;}
.y13d{bottom:359.895000px;}
.y71{bottom:362.863500px;}
.y170{bottom:364.440000px;}
.yde{bottom:365.896500px;}
.y11c{bottom:367.014000px;}
.ybf{bottom:369.457500px;}
.y54{bottom:374.292000px;}
.ya1{bottom:374.491500px;}
.y33{bottom:376.098000px;}
.yfe{bottom:378.856500px;}
.y70{bottom:385.009500px;}
.y16f{bottom:386.587500px;}
.ydd{bottom:390.285000px;}
.ybe{bottom:391.605000px;}
.ya0{bottom:398.880000px;}
.y11b{bottom:400.368000px;}
.y6f{bottom:407.157000px;}
.y13c{bottom:407.625000px;}
.y16e{bottom:408.733500px;}
.y32{bottom:409.452000px;}
.y53{bottom:412.131000px;}
.ybd{bottom:413.752500px;}
.yf{bottom:414.303000px;}
.y9f{bottom:423.268500px;}
.y11a{bottom:424.756500px;}
.y16d{bottom:425.770500px;}
.yfd{bottom:426.588000px;}
.ydc{bottom:428.122500px;}
.y6e{bottom:429.303000px;}
.ybc{bottom:435.898500px;}
.y52{bottom:436.519500px;}
.ye{bottom:438.691500px;}
.y31{bottom:442.807500px;}
.y16c{bottom:447.916500px;}
.y119{bottom:449.145000px;}
.y6d{bottom:451.450500px;}
.y89{bottom:451.545000px;}
.ydb{bottom:452.511000px;}
.y9e{bottom:455.517000px;}
.y51{bottom:460.908000px;}
.yd{bottom:463.080000px;}
.yfc{bottom:464.154000px;}
.y16b{bottom:464.953500px;}
.ybb{bottom:467.557500px;}
.y13b{bottom:470.845500px;}
.y88{bottom:475.933500px;}
.y30{bottom:476.163000px;}
.yda{bottom:476.899500px;}
.y9d{bottom:479.905500px;}
.y118{bottom:482.500500px;}
.y6c{bottom:483.109500px;}
.y50{bottom:485.296500px;}
.y16a{bottom:487.099500px;}
.yfb{bottom:488.542500px;}
.y13a{bottom:495.234000px;}
.yc{bottom:496.435500px;}
.y87{bottom:500.322000px;}
.y169{bottom:504.136500px;}
.y9c{bottom:504.294000px;}
.y117{bottom:506.889000px;}
.y190{bottom:509.296500px;}
.y2f{bottom:509.517000px;}
.y4f{bottom:509.685000px;}
.yd9{bottom:510.255000px;}
.y152{bottom:512.487000px;}
.yfa{bottom:512.931000px;}
.yba{bottom:515.289000px;}
.y86{bottom:524.710500px;}
.y168{bottom:526.282500px;}
.y9b{bottom:528.682500px;}
.y139{bottom:529.584000px;}
.y6b{bottom:530.839500px;}
.y116{bottom:531.277500px;}
.y18f{bottom:531.442500px;}
.y4e{bottom:534.073500px;}
.yd8{bottom:534.643500px;}
.y151{bottom:536.875500px;}
.yf9{bottom:537.319500px;}
.y43{bottom:541.527000px;}
.y2e{bottom:542.872500px;}
.y167{bottom:548.430000px;}
.y18e{bottom:548.479500px;}
.y85{bottom:549.099000px;}
.y9a{bottom:553.071000px;}
.y138{bottom:553.972500px;}
.yb9{bottom:555.303000px;}
.y4d{bottom:558.462000px;}
.yd7{bottom:559.032000px;}
.y150{bottom:561.264000px;}
.yf8{bottom:561.708000px;}
.y6a{bottom:563.866500px;}
.y42{bottom:565.915500px;}
.y2d{bottom:567.261000px;}
.y115{bottom:569.115000px;}
.y166{bottom:570.576000px;}
.y18d{bottom:570.625500px;}
.y84{bottom:573.487500px;}
.y99{bottom:577.459500px;}
.y137{bottom:578.361000px;}
.yb8{bottom:579.691500px;}
.y4c{bottom:582.850500px;}
.yf7{bottom:586.096500px;}
.y165{bottom:587.613000px;}
.y18c{bottom:587.662500px;}
.y69{bottom:588.255000px;}
.y41{bottom:590.304000px;}
.yd6{bottom:592.387500px;}
.y114{bottom:593.503500px;}
.y14f{bottom:594.619500px;}
.y83{bottom:597.876000px;}
.y2c{bottom:600.615000px;}
.y98{bottom:601.848000px;}
.y136{bottom:602.749500px;}
.yb7{bottom:604.080000px;}
.y1a3{bottom:608.235000px;}
.y164{bottom:609.759000px;}
.y18b{bottom:609.808500px;}
.y68{bottom:612.643500px;}
.y40{bottom:614.692500px;}
.y4b{bottom:616.204500px;}
.yd5{bottom:616.774500px;}
.y113{bottom:617.892000px;}
.y14e{bottom:619.008000px;}
.y2b{bottom:625.003500px;}
.y163{bottom:626.796000px;}
.y18a{bottom:626.844000px;}
.y135{bottom:627.138000px;}
.y1a2{bottom:630.382500px;}
.yf6{bottom:631.317000px;}
.y4a{bottom:640.593000px;}
.y14d{bottom:643.396500px;}
.y97{bottom:646.575000px;}
.y67{bottom:648.744000px;}
.y162{bottom:648.942000px;}
.y189{bottom:648.991500px;}
.y112{bottom:651.247500px;}
.y134{bottom:651.526500px;}
.y1a1{bottom:652.528500px;}
.yd4{bottom:654.613500px;}
.yb6{bottom:654.619500px;}
.y3f{bottom:654.627000px;}
.y2a{bottom:658.359000px;}
.y82{bottom:661.632000px;}
.y49{bottom:664.981500px;}
.y161{bottom:671.089500px;}
.y188{bottom:671.139000px;}
.y1a0{bottom:674.676000px;}
.y111{bottom:675.636000px;}
.y133{bottom:675.915000px;}
.yd3{bottom:679.002000px;}
.y66{bottom:681.231000px;}
.y81{bottom:683.778000px;}
.yb5{bottom:687.975000px;}
.y48{bottom:689.370000px;}
.yf5{bottom:691.134000px;}
.y19f{bottom:691.711500px;}
.y29{bottom:691.713000px;}
.y160{bottom:693.235500px;}
.y187{bottom:693.285000px;}
.y3e{bottom:694.561500px;}
.y14c{bottom:695.884500px;}
.y110{bottom:700.024500px;}
.y132{bottom:700.303500px;}
.yd2{bottom:703.390500px;}
.y96{bottom:705.346500px;}
.y80{bottom:705.925500px;}
.y186{bottom:710.322000px;}
.y47{bottom:713.758500px;}
.y19e{bottom:713.859000px;}
.y15f{bottom:715.383000px;}
.yf4{bottom:715.522500px;}
.yb{bottom:717.324000px;}
.y65{bottom:717.331500px;}
.yb4{bottom:721.329000px;}
.y10f{bottom:724.413000px;}
.y131{bottom:724.692000px;}
.y28{bottom:725.068500px;}
.yd1{bottom:727.779000px;}
.y7f{bottom:728.071500px;}
.y95{bottom:729.735000px;}
.y15e{bottom:732.418500px;}
.y185{bottom:732.468000px;}
.y3d{bottom:734.494500px;}
.y19d{bottom:736.006500px;}
.y46{bottom:738.147000px;}
.yf3{bottom:739.911000px;}
.y7e{bottom:745.108500px;}
.y10e{bottom:748.801500px;}
.y130{bottom:749.080500px;}
.y184{bottom:749.505000px;}
.ya{bottom:750.678000px;}
.yd0{bottom:752.167500px;}
.y15d{bottom:754.566000px;}
.yb3{bottom:754.684500px;}
.y19c{bottom:758.152500px;}
.y27{bottom:758.424000px;}
.y3c{bottom:758.883000px;}
.y94{bottom:761.983500px;}
.yf2{bottom:764.299500px;}
.y14b{bottom:766.248000px;}
.y7d{bottom:767.254500px;}
.y64{bottom:768.952500px;}
.y15c{bottom:771.601500px;}
.y183{bottom:771.651000px;}
.y12f{bottom:773.469000px;}
.ycf{bottom:776.556000px;}
.yb2{bottom:779.073000px;}
.y19b{bottom:780.300000px;}
.y3b{bottom:783.271500px;}
.y93{bottom:786.372000px;}
.y7c{bottom:789.402000px;}
.y9{bottom:790.131000px;}
.y45{bottom:790.636500px;}
.y26{bottom:791.778000px;}
.y15b{bottom:793.749000px;}
.y182{bottom:793.798500px;}
.y10d{bottom:794.634000px;}
.yf1{bottom:797.041500px;}
.y12e{bottom:797.857500px;}
.y19a{bottom:802.446000px;}
.yb1{bottom:803.461500px;}
.y3a{bottom:807.660000px;}
.yce{bottom:809.910000px;}
.y7b{bottom:811.548000px;}
.y14a{bottom:815.025000px;}
.y15a{bottom:815.896500px;}
.y92{bottom:818.620500px;}
.yf0{bottom:821.430000px;}
.y199{bottom:824.593500px;}
.y25{bottom:825.133500px;}
.y181{bottom:825.457500px;}
.yb0{bottom:827.850000px;}
.y7{bottom:829.582500px;}
.y39{bottom:832.048500px;}
.y7a{bottom:833.695500px;}
.ycd{bottom:834.298500px;}
.y63{bottom:837.478500px;}
.y159{bottom:838.042500px;}
.y149{bottom:839.413500px;}
.y198{bottom:841.629000px;}
.y91{bottom:843.009000px;}
.y8{bottom:843.667500px;}
.y12d{bottom:844.813500px;}
.yef{bottom:845.818500px;}
.y5{bottom:849.906000px;}
.y10c{bottom:855.744000px;}
.y24{bottom:858.487500px;}
.ycc{bottom:858.687000px;}
.y158{bottom:860.190000px;}
.y44{bottom:860.998500px;}
.yaf{bottom:861.204000px;}
.y62{bottom:861.867000px;}
.y197{bottom:863.776500px;}
.y148{bottom:863.802000px;}
.y6{bottom:863.992500px;}
.y79{bottom:865.354500px;}
.y12c{bottom:869.202000px;}
.yee{bottom:870.207000px;}
.y38{bottom:871.983000px;}
.y180{bottom:873.187500px;}
.y90{bottom:875.257500px;}
.y157{bottom:877.225500px;}
.y10b{bottom:880.132500px;}
.y23{bottom:882.876000px;}
.ycb{bottom:883.075500px;}
.y1f{bottom:885.387000px;}
.yae{bottom:885.592500px;}
.y196{bottom:885.922500px;}
.y61{bottom:886.255500px;}
.y4{bottom:892.467000px;}
.yed{bottom:894.595500px;}
.y156{bottom:899.373000px;}
.y8f{bottom:899.646000px;}
.y12b{bottom:902.557500px;}
.y10a{bottom:904.521000px;}
.yca{bottom:907.464000px;}
.y195{bottom:908.070000px;}
.y1e{bottom:909.775500px;}
.yad{bottom:909.981000px;}
.y60{bottom:910.644000px;}
.y37{bottom:911.916000px;}
.y78{bottom:913.084500px;}
.y17f{bottom:913.203000px;}
.y22{bottom:916.231500px;}
.y147{bottom:916.290000px;}
.y3{bottom:922.953000px;}
.y12a{bottom:926.946000px;}
.y109{bottom:928.909500px;}
.y194{bottom:930.217500px;}
.y155{bottom:931.032000px;}
.y1d{bottom:934.164000px;}
.y5f{bottom:935.032500px;}
.y8e{bottom:935.271000px;}
.y21{bottom:940.620000px;}
.yc9{bottom:940.819500px;}
.yac{bottom:944.332500px;}
.y17e{bottom:946.558500px;}
.y77{bottom:949.585500px;}
.y129{bottom:951.334500px;}
.y36{bottom:951.850500px;}
.y193{bottom:952.363500px;}
.y108{bottom:953.298000px;}
.y2{bottom:953.439000px;}
.yec{bottom:955.288500px;}
.y1c{bottom:958.552500px;}
.y5e{bottom:959.421000px;}
.y8d{bottom:959.659500px;}
.yc8{bottom:965.208000px;}
.yab{bottom:968.721000px;}
.yeb{bottom:972.325500px;}
.y20{bottom:973.974000px;}
.y128{bottom:975.723000px;}
.y107{bottom:977.686500px;}
.y154{bottom:978.762000px;}
.y17d{bottom:979.912500px;}
.y1b{bottom:982.941000px;}
.y5d{bottom:983.809500px;}
.y192{bottom:984.022500px;}
.y8c{bottom:984.048000px;}
.y146{bottom:986.653500px;}
.yea{bottom:989.361000px;}
.yc7{bottom:989.596500px;}
.y35{bottom:991.783500px;}
.y1{bottom:992.890500px;}
.yaa{bottom:1002.075000px;}
.ye9{bottom:1006.398000px;}
.y1a{bottom:1007.329500px;}
.y5c{bottom:1008.198000px;}
.y8b{bottom:1008.436500px;}
.y127{bottom:1011.042000px;}
.y17c{bottom:1013.268000px;}
.yc6{bottom:1013.985000px;}
.ye8{bottom:1023.433500px;}
.ya9{bottom:1026.463500px;}
.y153{bottom:1031.001000px;}
.y19{bottom:1031.718000px;}
.y191{bottom:1031.754000px;}
.y5b{bottom:1032.586500px;}
.y8a{bottom:1032.825000px;}
.y106{bottom:1035.430500px;}
.yc5{bottom:1038.373500px;}
.ye7{bottom:1045.579500px;}
.y17b{bottom:1059.100500px;}
.ya8{bottom:1059.819000px;}
.ye6{bottom:1077.240000px;}
.y18{bottom:1084.207500px;}
.y17{bottom:1140.885000px;}
.h5{height:0.000000px;}
.hd{height:34.759855px;}
.ha{height:40.571650px;}
.h2{height:47.577425px;}
.h9{height:49.090950px;}
.h7{height:50.714562px;}
.h6{height:52.139783px;}
.hc{height:53.798400px;}
.h4{height:55.532298px;}
.h8{height:64.557900px;}
.hb{height:66.898501px;}
.h3{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299000px;}
.x8{left:126.001500px;}
.x7{left:129.618000px;}
.xb{left:133.182000px;}
.xa{left:147.208500px;}
.xc{left:166.635000px;}
.x1{left:170.079000px;}
.xe{left:183.208500px;}
.xd{left:287.704500px;}
.x2{left:294.784500px;}
.x5{left:411.913500px;}
.xf{left:438.339000px;}
.x9{left:442.398000px;}
.x10{left:615.318000px;}
.x4{left:636.706500px;}
.x3{left:639.696000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.276363pt;}
.ls2{letter-spacing:2.647605pt;}
.ls3{letter-spacing:29.094400pt;}
.wsa{word-spacing:-31.892252pt;}
.ws4{word-spacing:-31.615889pt;}
.wsad{word-spacing:-31.560617pt;}
.ws59{word-spacing:-22.131061pt;}
.ws7c{word-spacing:-21.777378pt;}
.ws7b{word-spacing:-21.445743pt;}
.ws18{word-spacing:-21.423659pt;}
.ws47{word-spacing:-21.335198pt;}
.wsaa{word-spacing:-21.169380pt;}
.ws79{word-spacing:-20.561382pt;}
.ws49{word-spacing:-20.395565pt;}
.ws32{word-spacing:-20.340292pt;}
.ws56{word-spacing:-19.953385pt;}
.ws7f{word-spacing:-19.898112pt;}
.ws57{word-spacing:-19.842839pt;}
.ws38{word-spacing:-19.677022pt;}
.ws7e{word-spacing:-19.511204pt;}
.ws71{word-spacing:-19.455932pt;}
.ws3e{word-spacing:-19.345387pt;}
.ws6f{word-spacing:-19.124297pt;}
.ws89{word-spacing:-19.013751pt;}
.ws88{word-spacing:-18.958479pt;}
.ws27{word-spacing:-18.792661pt;}
.ws30{word-spacing:-18.682116pt;}
.ws66{word-spacing:-18.571571pt;}
.ws1d{word-spacing:-18.350481pt;}
.ws28{word-spacing:-18.239936pt;}
.wsa7{word-spacing:-18.018846pt;}
.wsa2{word-spacing:-17.963573pt;}
.wsac{word-spacing:-17.853099pt;}
.ws8f{word-spacing:-17.853028pt;}
.ws67{word-spacing:-17.742483pt;}
.ws50{word-spacing:-17.631938pt;}
.ws1b{word-spacing:-17.521393pt;}
.ws3{word-spacing:-17.300303pt;}
.wsc{word-spacing:-17.276715pt;}
.ws1e{word-spacing:-17.250003pt;}
.ws0{word-spacing:-17.245030pt;}
.ws44{word-spacing:-17.241685pt;}
.ws85{word-spacing:-17.189758pt;}
.ws5{word-spacing:-17.184442pt;}
.ws6b{word-spacing:-17.134485pt;}
.ws15{word-spacing:-17.023940pt;}
.ws3c{word-spacing:-16.968668pt;}
.ws12{word-spacing:-16.913395pt;}
.ws95{word-spacing:-16.858123pt;}
.ws8b{word-spacing:-16.747578pt;}
.ws1a{word-spacing:-16.692305pt;}
.ws55{word-spacing:-16.637033pt;}
.ws39{word-spacing:-16.581760pt;}
.ws6a{word-spacing:-16.526487pt;}
.ws9d{word-spacing:-16.471215pt;}
.ws70{word-spacing:-16.415942pt;}
.ws65{word-spacing:-16.360670pt;}
.ws3d{word-spacing:-16.250125pt;}
.ws8a{word-spacing:-16.084307pt;}
.ws63{word-spacing:-15.918490pt;}
.ws14{word-spacing:-15.863217pt;}
.ws4b{word-spacing:-15.807945pt;}
.wsf{word-spacing:-15.799405pt;}
.ws17{word-spacing:-15.748928pt;}
.ws42{word-spacing:-15.421037pt;}
.ws40{word-spacing:-15.310492pt;}
.ws60{word-spacing:-15.255219pt;}
.ws36{word-spacing:-15.199947pt;}
.ws52{word-spacing:-15.144674pt;}
.ws35{word-spacing:-15.089402pt;}
.ws29{word-spacing:-15.034129pt;}
.ws48{word-spacing:-14.757766pt;}
.ws4d{word-spacing:-14.591949pt;}
.ws9e{word-spacing:-14.481404pt;}
.ws9c{word-spacing:-14.260314pt;}
.ws4f{word-spacing:-14.205041pt;}
.ws84{word-spacing:-14.149769pt;}
.ws6e{word-spacing:-13.983951pt;}
.ws43{word-spacing:-13.873406pt;}
.ws5c{word-spacing:-13.762861pt;}
.ws37{word-spacing:-13.707588pt;}
.ws31{word-spacing:-13.375953pt;}
.ws5e{word-spacing:-13.265408pt;}
.ws8c{word-spacing:-13.210135pt;}
.ws7d{word-spacing:-13.204870pt;}
.ws62{word-spacing:-13.154863pt;}
.ws72{word-spacing:-13.044318pt;}
.ws9f{word-spacing:-12.823228pt;}
.wsaf{word-spacing:-12.801052pt;}
.ws3f{word-spacing:-12.712683pt;}
.ws7a{word-spacing:-12.657410pt;}
.ws4c{word-spacing:-12.639524pt;}
.ws2e{word-spacing:-12.602138pt;}
.ws46{word-spacing:-12.599142pt;}
.wsa1{word-spacing:-12.546865pt;}
.ws3a{word-spacing:-12.491593pt;}
.ws64{word-spacing:-12.325775pt;}
.ws87{word-spacing:-12.270502pt;}
.ws1c{word-spacing:-12.215230pt;}
.ws86{word-spacing:-12.104685pt;}
.ws92{word-spacing:-12.049412pt;}
.ws4a{word-spacing:-11.828322pt;}
.ws91{word-spacing:-11.662505pt;}
.ws16{word-spacing:-11.607232pt;}
.ws33{word-spacing:-11.496687pt;}
.wsa8{word-spacing:-11.441414pt;}
.ws13{word-spacing:-11.386142pt;}
.ws8e{word-spacing:-11.109779pt;}
.wsa0{word-spacing:-10.888689pt;}
.ws19{word-spacing:-10.833417pt;}
.ws4e{word-spacing:-10.778144pt;}
.wsa3{word-spacing:-10.557054pt;}
.wsa9{word-spacing:-10.501781pt;}
.ws8{word-spacing:-10.391236pt;}
.ws76{word-spacing:-10.280691pt;}
.wsd{word-spacing:-10.225419pt;}
.ws7{word-spacing:-10.114874pt;}
.ws73{word-spacing:-9.949056pt;}
.ws51{word-spacing:-9.617421pt;}
.ws3b{word-spacing:-9.506876pt;}
.ws68{word-spacing:-9.451603pt;}
.wse{word-spacing:-9.396331pt;}
.wsa4{word-spacing:-9.341058pt;}
.wsa6{word-spacing:-9.285786pt;}
.ws69{word-spacing:-9.175241pt;}
.ws2b{word-spacing:-8.954150pt;}
.ws2f{word-spacing:-8.898878pt;}
.ws34{word-spacing:-8.622515pt;}
.ws80{word-spacing:-8.456698pt;}
.ws6d{word-spacing:-8.235607pt;}
.ws61{word-spacing:-8.069790pt;}
.ws2a{word-spacing:-7.682882pt;}
.ws83{word-spacing:-7.627610pt;}
.ws5b{word-spacing:-7.572337pt;}
.ws99{word-spacing:-6.964339pt;}
.ws75{word-spacing:-6.798522pt;}
.ws74{word-spacing:-6.024706pt;}
.ws82{word-spacing:-5.803616pt;}
.wsb{word-spacing:-5.693071pt;}
.ws11{word-spacing:-5.637798pt;}
.ws8d{word-spacing:-5.491603pt;}
.ws54{word-spacing:-4.974528pt;}
.ws53{word-spacing:-4.863983pt;}
.ws26{word-spacing:-3.869077pt;}
.ws97{word-spacing:-3.813805pt;}
.ws2d{word-spacing:-3.316352pt;}
.ws9{word-spacing:-3.095262pt;}
.ws94{word-spacing:-2.708354pt;}
.ws9b{word-spacing:-2.542537pt;}
.ws98{word-spacing:-2.487264pt;}
.ws90{word-spacing:-2.321446pt;}
.ws5d{word-spacing:-1.602903pt;}
.ws9a{word-spacing:-1.492358pt;}
.ws78{word-spacing:-1.105451pt;}
.ws2c{word-spacing:-0.884361pt;}
.ws6{word-spacing:0.000000pt;}
.ws81{word-spacing:0.331635pt;}
.ws58{word-spacing:0.442180pt;}
.ws93{word-spacing:1.658176pt;}
.ws22{word-spacing:2.708354pt;}
.wsa5{word-spacing:2.833731pt;}
.ws5f{word-spacing:4.200713pt;}
.ws96{word-spacing:4.642893pt;}
.ws21{word-spacing:5.003641pt;}
.ws20{word-spacing:5.061822pt;}
.ws5a{word-spacing:5.547213pt;}
.ws24{word-spacing:6.167278pt;}
.ws41{word-spacing:6.580124pt;}
.ws10{word-spacing:6.656637pt;}
.ws77{word-spacing:7.738155pt;}
.ws1{word-spacing:9.477200pt;}
.ws2{word-spacing:9.587400pt;}
.ws1f{word-spacing:16.814559pt;}
.ws25{word-spacing:16.832875pt;}
.ws45{word-spacing:107.317811pt;}
.wsab{word-spacing:110.085811pt;}
.ws6c{word-spacing:454.677596pt;}
.wsae{word-spacing:1673.637297pt;}
.ws23{word-spacing:2051.948354pt;}
._0{margin-left:-3.085600pt;}
._1{margin-left:-1.400834pt;}
._b{width:1.803638pt;}
._7{width:3.414377pt;}
._6{width:4.931776pt;}
._5{width:9.175241pt;}
._27{width:10.458903pt;}
._23{width:12.270502pt;}
._26{width:13.210135pt;}
._13{width:14.481404pt;}
._1d{width:17.687211pt;}
._4{width:19.088051pt;}
._a{width:20.782473pt;}
._9{width:21.887923pt;}
._2{width:23.325009pt;}
._24{width:25.149003pt;}
._1e{width:26.254453pt;}
._36{width:27.194086pt;}
._29{width:28.133719pt;}
._25{width:29.084284pt;}
._33{width:30.349865pt;}
._22{width:31.505344pt;}
._d{width:33.105482pt;}
._16{width:34.490061pt;}
._21{width:35.484966pt;}
._8{width:36.866780pt;}
._20{width:38.256533pt;}
._3{width:40.625312pt;}
._15{width:42.740186pt;}
._18{width:44.892655pt;}
._1b{width:46.719949pt;}
._1f{width:47.921286pt;}
._30{width:50.519095pt;}
._2f{width:52.785269pt;}
._37{width:53.724902pt;}
._17{width:55.452587pt;}
._34{width:56.935953pt;}
._35{width:62.739856pt;}
._32{width:63.981466pt;}
._2a{width:66.105950pt;}
._1c{width:68.605924pt;}
._31{width:72.683381pt;}
._14{width:100.778641pt;}
._2e{width:285.760247pt;}
._2d{width:323.678820pt;}
._38{width:394.427851pt;}
._2c{width:404.765609pt;}
._2b{width:411.388235pt;}
._3e{width:554.373099pt;}
._28{width:657.779639pt;}
._3b{width:889.295036pt;}
._3d{width:976.686660pt;}
._3c{width:1078.045146pt;}
._39{width:1217.316491pt;}
._e{width:1245.668488pt;}
._12{width:1345.387738pt;}
._11{width:1363.316692pt;}
._10{width:1396.305810pt;}
._3a{width:1638.020491pt;}
._f{width:1801.766300pt;}
._c{width:1976.370082pt;}
._1a{width:2023.264693pt;}
._19{width:2058.057450pt;}
.fs2{font-size:0.000000pt;}
.fs8{font-size:38.690667pt;}
.fs7{font-size:40.381867pt;}
.fs4{font-size:50.477333pt;}
.fs0{font-size:55.272533pt;}
.fs6{font-size:58.181867pt;}
.fs3{font-size:60.572800pt;}
.fs9{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:95.484000pt;}
.y126{bottom:104.792000pt;}
.y125{bottom:126.470667pt;}
.y16{bottom:128.504000pt;}
.ye5{bottom:134.381333pt;}
.y124{bottom:140.849333pt;}
.y17a{bottom:145.257333pt;}
.y15{bottom:150.182667pt;}
.ye4{bottom:154.068000pt;}
.y123{bottom:162.528000pt;}
.y179{bottom:164.944000pt;}
.y14{bottom:171.861333pt;}
.y145{bottom:172.133333pt;}
.ya7{bottom:178.848000pt;}
.y178{bottom:180.086667pt;}
.ye3{bottom:182.209333pt;}
.y122{bottom:184.206667pt;}
.y144{bottom:187.277333pt;}
.y59{bottom:188.445333pt;}
.y76{bottom:193.540000pt;}
.yc4{bottom:198.092000pt;}
.y177{bottom:199.773333pt;}
.ya6{bottom:200.526667pt;}
.y13{bottom:201.509333pt;}
.y143{bottom:202.420000pt;}
.y105{bottom:204.132000pt;}
.y121{bottom:205.885333pt;}
.y58{bottom:210.124000pt;}
.y176{bottom:214.916000pt;}
.y75{bottom:215.218667pt;}
.y142{bottom:217.562667pt;}
.y104{bottom:219.276000pt;}
.yc3{bottom:219.770667pt;}
.ye2{bottom:224.636000pt;}
.y120{bottom:227.564000pt;}
.ya5{bottom:229.192000pt;}
.y141{bottom:232.706667pt;}
.y103{bottom:234.418667pt;}
.y175{bottom:234.602667pt;}
.yc2{bottom:241.449333pt;}
.y57{bottom:243.757333pt;}
.y12{bottom:245.438667pt;}
.y11f{bottom:249.242667pt;}
.y102{bottom:249.562667pt;}
.ya4{bottom:250.870667pt;}
.y140{bottom:252.392000pt;}
.y174{bottom:254.288000pt;}
.ye1{bottom:260.205333pt;}
.y11{bottom:267.117333pt;}
.y74{bottom:268.029333pt;}
.y101{bottom:269.248000pt;}
.y11e{bottom:270.921333pt;}
.y13f{bottom:272.078667pt;}
.y56{bottom:273.406667pt;}
.y173{bottom:273.974667pt;}
.ya3{bottom:279.536000pt;}
.ye0{bottom:281.884000pt;}
.y73{bottom:287.716000pt;}
.y100{bottom:288.934667pt;}
.y172{bottom:289.117333pt;}
.y13e{bottom:291.765333pt;}
.y11d{bottom:292.600000pt;}
.yc1{bottom:298.121333pt;}
.ya2{bottom:301.214667pt;}
.y72{bottom:302.858667pt;}
.y55{bottom:303.056000pt;}
.ydf{bottom:303.562667pt;}
.y34{bottom:304.660000pt;}
.yff{bottom:308.620000pt;}
.y171{bottom:308.804000pt;}
.y10{bottom:310.984000pt;}
.yc0{bottom:313.264000pt;}
.y13d{bottom:319.906667pt;}
.y71{bottom:322.545333pt;}
.y170{bottom:323.946667pt;}
.yde{bottom:325.241333pt;}
.y11c{bottom:326.234667pt;}
.ybf{bottom:328.406667pt;}
.y54{bottom:332.704000pt;}
.ya1{bottom:332.881333pt;}
.y33{bottom:334.309333pt;}
.yfe{bottom:336.761333pt;}
.y70{bottom:342.230667pt;}
.y16f{bottom:343.633333pt;}
.ydd{bottom:346.920000pt;}
.ybe{bottom:348.093333pt;}
.ya0{bottom:354.560000pt;}
.y11b{bottom:355.882667pt;}
.y6f{bottom:361.917333pt;}
.y13c{bottom:362.333333pt;}
.y16e{bottom:363.318667pt;}
.y32{bottom:363.957333pt;}
.y53{bottom:366.338667pt;}
.ybd{bottom:367.780000pt;}
.yf{bottom:368.269333pt;}
.y9f{bottom:376.238667pt;}
.y11a{bottom:377.561333pt;}
.y16d{bottom:378.462667pt;}
.yfd{bottom:379.189333pt;}
.ydc{bottom:380.553333pt;}
.y6e{bottom:381.602667pt;}
.ybc{bottom:387.465333pt;}
.y52{bottom:388.017333pt;}
.ye{bottom:389.948000pt;}
.y31{bottom:393.606667pt;}
.y16c{bottom:398.148000pt;}
.y119{bottom:399.240000pt;}
.y6d{bottom:401.289333pt;}
.y89{bottom:401.373333pt;}
.ydb{bottom:402.232000pt;}
.y9e{bottom:404.904000pt;}
.y51{bottom:409.696000pt;}
.yd{bottom:411.626667pt;}
.yfc{bottom:412.581333pt;}
.y16b{bottom:413.292000pt;}
.ybb{bottom:415.606667pt;}
.y13b{bottom:418.529333pt;}
.y88{bottom:423.052000pt;}
.y30{bottom:423.256000pt;}
.yda{bottom:423.910667pt;}
.y9d{bottom:426.582667pt;}
.y118{bottom:428.889333pt;}
.y6c{bottom:429.430667pt;}
.y50{bottom:431.374667pt;}
.y16a{bottom:432.977333pt;}
.yfb{bottom:434.260000pt;}
.y13a{bottom:440.208000pt;}
.yc{bottom:441.276000pt;}
.y87{bottom:444.730667pt;}
.y169{bottom:448.121333pt;}
.y9c{bottom:448.261333pt;}
.y117{bottom:450.568000pt;}
.y190{bottom:452.708000pt;}
.y2f{bottom:452.904000pt;}
.y4f{bottom:453.053333pt;}
.yd9{bottom:453.560000pt;}
.y152{bottom:455.544000pt;}
.yfa{bottom:455.938667pt;}
.yba{bottom:458.034667pt;}
.y86{bottom:466.409333pt;}
.y168{bottom:467.806667pt;}
.y9b{bottom:469.940000pt;}
.y139{bottom:470.741333pt;}
.y6b{bottom:471.857333pt;}
.y116{bottom:472.246667pt;}
.y18f{bottom:472.393333pt;}
.y4e{bottom:474.732000pt;}
.yd8{bottom:475.238667pt;}
.y151{bottom:477.222667pt;}
.yf9{bottom:477.617333pt;}
.y43{bottom:481.357333pt;}
.y2e{bottom:482.553333pt;}
.y167{bottom:487.493333pt;}
.y18e{bottom:487.537333pt;}
.y85{bottom:488.088000pt;}
.y9a{bottom:491.618667pt;}
.y138{bottom:492.420000pt;}
.yb9{bottom:493.602667pt;}
.y4d{bottom:496.410667pt;}
.yd7{bottom:496.917333pt;}
.y150{bottom:498.901333pt;}
.yf8{bottom:499.296000pt;}
.y6a{bottom:501.214667pt;}
.y42{bottom:503.036000pt;}
.y2d{bottom:504.232000pt;}
.y115{bottom:505.880000pt;}
.y166{bottom:507.178667pt;}
.y18d{bottom:507.222667pt;}
.y84{bottom:509.766667pt;}
.y99{bottom:513.297333pt;}
.y137{bottom:514.098667pt;}
.yb8{bottom:515.281333pt;}
.y4c{bottom:518.089333pt;}
.yf7{bottom:520.974667pt;}
.y165{bottom:522.322667pt;}
.y18c{bottom:522.366667pt;}
.y69{bottom:522.893333pt;}
.y41{bottom:524.714667pt;}
.yd6{bottom:526.566667pt;}
.y114{bottom:527.558667pt;}
.y14f{bottom:528.550667pt;}
.y83{bottom:531.445333pt;}
.y2c{bottom:533.880000pt;}
.y98{bottom:534.976000pt;}
.y136{bottom:535.777333pt;}
.yb7{bottom:536.960000pt;}
.y1a3{bottom:540.653333pt;}
.y164{bottom:542.008000pt;}
.y18b{bottom:542.052000pt;}
.y68{bottom:544.572000pt;}
.y40{bottom:546.393333pt;}
.y4b{bottom:547.737333pt;}
.yd5{bottom:548.244000pt;}
.y113{bottom:549.237333pt;}
.y14e{bottom:550.229333pt;}
.y2b{bottom:555.558667pt;}
.y163{bottom:557.152000pt;}
.y18a{bottom:557.194667pt;}
.y135{bottom:557.456000pt;}
.y1a2{bottom:560.340000pt;}
.yf6{bottom:561.170667pt;}
.y4a{bottom:569.416000pt;}
.y14d{bottom:571.908000pt;}
.y97{bottom:574.733333pt;}
.y67{bottom:576.661333pt;}
.y162{bottom:576.837333pt;}
.y189{bottom:576.881333pt;}
.y112{bottom:578.886667pt;}
.y134{bottom:579.134667pt;}
.y1a1{bottom:580.025333pt;}
.yd4{bottom:581.878667pt;}
.yb6{bottom:581.884000pt;}
.y3f{bottom:581.890667pt;}
.y2a{bottom:585.208000pt;}
.y82{bottom:588.117333pt;}
.y49{bottom:591.094667pt;}
.y161{bottom:596.524000pt;}
.y188{bottom:596.568000pt;}
.y1a0{bottom:599.712000pt;}
.y111{bottom:600.565333pt;}
.y133{bottom:600.813333pt;}
.yd3{bottom:603.557333pt;}
.y66{bottom:605.538667pt;}
.y81{bottom:607.802667pt;}
.yb5{bottom:611.533333pt;}
.y48{bottom:612.773333pt;}
.yf5{bottom:614.341333pt;}
.y19f{bottom:614.854667pt;}
.y29{bottom:614.856000pt;}
.y160{bottom:616.209333pt;}
.y187{bottom:616.253333pt;}
.y3e{bottom:617.388000pt;}
.y14c{bottom:618.564000pt;}
.y110{bottom:622.244000pt;}
.y132{bottom:622.492000pt;}
.yd2{bottom:625.236000pt;}
.y96{bottom:626.974667pt;}
.y80{bottom:627.489333pt;}
.y186{bottom:631.397333pt;}
.y47{bottom:634.452000pt;}
.y19e{bottom:634.541333pt;}
.y15f{bottom:635.896000pt;}
.yf4{bottom:636.020000pt;}
.yb{bottom:637.621333pt;}
.y65{bottom:637.628000pt;}
.yb4{bottom:641.181333pt;}
.y10f{bottom:643.922667pt;}
.y131{bottom:644.170667pt;}
.y28{bottom:644.505333pt;}
.yd1{bottom:646.914667pt;}
.y7f{bottom:647.174667pt;}
.y95{bottom:648.653333pt;}
.y15e{bottom:651.038667pt;}
.y185{bottom:651.082667pt;}
.y3d{bottom:652.884000pt;}
.y19d{bottom:654.228000pt;}
.y46{bottom:656.130667pt;}
.yf3{bottom:657.698667pt;}
.y7e{bottom:662.318667pt;}
.y10e{bottom:665.601333pt;}
.y130{bottom:665.849333pt;}
.y184{bottom:666.226667pt;}
.ya{bottom:667.269333pt;}
.yd0{bottom:668.593333pt;}
.y15d{bottom:670.725333pt;}
.yb3{bottom:670.830667pt;}
.y19c{bottom:673.913333pt;}
.y27{bottom:674.154667pt;}
.y3c{bottom:674.562667pt;}
.y94{bottom:677.318667pt;}
.yf2{bottom:679.377333pt;}
.y14b{bottom:681.109333pt;}
.y7d{bottom:682.004000pt;}
.y64{bottom:683.513333pt;}
.y15c{bottom:685.868000pt;}
.y183{bottom:685.912000pt;}
.y12f{bottom:687.528000pt;}
.ycf{bottom:690.272000pt;}
.yb2{bottom:692.509333pt;}
.y19b{bottom:693.600000pt;}
.y3b{bottom:696.241333pt;}
.y93{bottom:698.997333pt;}
.y7c{bottom:701.690667pt;}
.y9{bottom:702.338667pt;}
.y45{bottom:702.788000pt;}
.y26{bottom:703.802667pt;}
.y15b{bottom:705.554667pt;}
.y182{bottom:705.598667pt;}
.y10d{bottom:706.341333pt;}
.yf1{bottom:708.481333pt;}
.y12e{bottom:709.206667pt;}
.y19a{bottom:713.285333pt;}
.yb1{bottom:714.188000pt;}
.y3a{bottom:717.920000pt;}
.yce{bottom:719.920000pt;}
.y7b{bottom:721.376000pt;}
.y14a{bottom:724.466667pt;}
.y15a{bottom:725.241333pt;}
.y92{bottom:727.662667pt;}
.yf0{bottom:730.160000pt;}
.y199{bottom:732.972000pt;}
.y25{bottom:733.452000pt;}
.y181{bottom:733.740000pt;}
.yb0{bottom:735.866667pt;}
.y7{bottom:737.406667pt;}
.y39{bottom:739.598667pt;}
.y7a{bottom:741.062667pt;}
.ycd{bottom:741.598667pt;}
.y63{bottom:744.425333pt;}
.y159{bottom:744.926667pt;}
.y149{bottom:746.145333pt;}
.y198{bottom:748.114667pt;}
.y91{bottom:749.341333pt;}
.y8{bottom:749.926667pt;}
.y12d{bottom:750.945333pt;}
.yef{bottom:751.838667pt;}
.y5{bottom:755.472000pt;}
.y10c{bottom:760.661333pt;}
.y24{bottom:763.100000pt;}
.ycc{bottom:763.277333pt;}
.y158{bottom:764.613333pt;}
.y44{bottom:765.332000pt;}
.yaf{bottom:765.514667pt;}
.y62{bottom:766.104000pt;}
.y197{bottom:767.801333pt;}
.y148{bottom:767.824000pt;}
.y6{bottom:767.993333pt;}
.y79{bottom:769.204000pt;}
.y12c{bottom:772.624000pt;}
.yee{bottom:773.517333pt;}
.y38{bottom:775.096000pt;}
.y180{bottom:776.166667pt;}
.y90{bottom:778.006667pt;}
.y157{bottom:779.756000pt;}
.y10b{bottom:782.340000pt;}
.y23{bottom:784.778667pt;}
.ycb{bottom:784.956000pt;}
.y1f{bottom:787.010667pt;}
.yae{bottom:787.193333pt;}
.y196{bottom:787.486667pt;}
.y61{bottom:787.782667pt;}
.y4{bottom:793.304000pt;}
.yed{bottom:795.196000pt;}
.y156{bottom:799.442667pt;}
.y8f{bottom:799.685333pt;}
.y12b{bottom:802.273333pt;}
.y10a{bottom:804.018667pt;}
.yca{bottom:806.634667pt;}
.y195{bottom:807.173333pt;}
.y1e{bottom:808.689333pt;}
.yad{bottom:808.872000pt;}
.y60{bottom:809.461333pt;}
.y37{bottom:810.592000pt;}
.y78{bottom:811.630667pt;}
.y17f{bottom:811.736000pt;}
.y22{bottom:814.428000pt;}
.y147{bottom:814.480000pt;}
.y3{bottom:820.402667pt;}
.y12a{bottom:823.952000pt;}
.y109{bottom:825.697333pt;}
.y194{bottom:826.860000pt;}
.y155{bottom:827.584000pt;}
.y1d{bottom:830.368000pt;}
.y5f{bottom:831.140000pt;}
.y8e{bottom:831.352000pt;}
.y21{bottom:836.106667pt;}
.yc9{bottom:836.284000pt;}
.yac{bottom:839.406667pt;}
.y17e{bottom:841.385333pt;}
.y77{bottom:844.076000pt;}
.y129{bottom:845.630667pt;}
.y36{bottom:846.089333pt;}
.y193{bottom:846.545333pt;}
.y108{bottom:847.376000pt;}
.y2{bottom:847.501333pt;}
.yec{bottom:849.145333pt;}
.y1c{bottom:852.046667pt;}
.y5e{bottom:852.818667pt;}
.y8d{bottom:853.030667pt;}
.yc8{bottom:857.962667pt;}
.yab{bottom:861.085333pt;}
.yeb{bottom:864.289333pt;}
.y20{bottom:865.754667pt;}
.y128{bottom:867.309333pt;}
.y107{bottom:869.054667pt;}
.y154{bottom:870.010667pt;}
.y17d{bottom:871.033333pt;}
.y1b{bottom:873.725333pt;}
.y5d{bottom:874.497333pt;}
.y192{bottom:874.686667pt;}
.y8c{bottom:874.709333pt;}
.y146{bottom:877.025333pt;}
.yea{bottom:879.432000pt;}
.yc7{bottom:879.641333pt;}
.y35{bottom:881.585333pt;}
.y1{bottom:882.569333pt;}
.yaa{bottom:890.733333pt;}
.ye9{bottom:894.576000pt;}
.y1a{bottom:895.404000pt;}
.y5c{bottom:896.176000pt;}
.y8b{bottom:896.388000pt;}
.y127{bottom:898.704000pt;}
.y17c{bottom:900.682667pt;}
.yc6{bottom:901.320000pt;}
.ye8{bottom:909.718667pt;}
.ya9{bottom:912.412000pt;}
.y153{bottom:916.445333pt;}
.y19{bottom:917.082667pt;}
.y191{bottom:917.114667pt;}
.y5b{bottom:917.854667pt;}
.y8a{bottom:918.066667pt;}
.y106{bottom:920.382667pt;}
.yc5{bottom:922.998667pt;}
.ye7{bottom:929.404000pt;}
.y17b{bottom:941.422667pt;}
.ya8{bottom:942.061333pt;}
.ye6{bottom:957.546667pt;}
.y18{bottom:963.740000pt;}
.y17{bottom:1014.120000pt;}
.h5{height:0.000000pt;}
.hd{height:30.897649pt;}
.ha{height:36.063689pt;}
.h2{height:42.291045pt;}
.h9{height:43.636400pt;}
.h7{height:45.079611pt;}
.h6{height:46.346473pt;}
.hc{height:47.820800pt;}
.h4{height:49.362043pt;}
.h8{height:57.384800pt;}
.hb{height:59.465335pt;}
.h3{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488000pt;}
.x8{left:112.001333pt;}
.x7{left:115.216000pt;}
.xb{left:118.384000pt;}
.xa{left:130.852000pt;}
.xc{left:148.120000pt;}
.x1{left:151.181333pt;}
.xe{left:162.852000pt;}
.xd{left:255.737333pt;}
.x2{left:262.030667pt;}
.x5{left:366.145333pt;}
.xf{left:389.634667pt;}
.x9{left:393.242667pt;}
.x10{left:546.949333pt;}
.x4{left:565.961333pt;}
.x3{left:568.618667pt;}
}




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