
    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_db544993f612fa969456f9ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_ca7400a338de65d8e9b86cfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104980;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_ca3477140f98b7e192552a49.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062500;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:-12.418945px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:20.003906px;}
.ls2{letter-spacing:24.503907px;}
.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;}
}
.ws1c{word-spacing:-72.000002px;}
.ws54{word-spacing:-56.062502px;}
.ws1{word-spacing:-49.596725px;}
.ws3{word-spacing:-49.596715px;}
.ws2{word-spacing:-49.596675px;}
.ws4{word-spacing:-49.596663px;}
.ws5a{word-spacing:-49.054686px;}
.wsf{word-spacing:-45.354129px;}
.ws2e{word-spacing:-45.350239px;}
.ws5{word-spacing:-44.085973px;}
.ws0{word-spacing:-44.085960px;}
.ws6{word-spacing:-44.085870px;}
.ws4b{word-spacing:-42.046875px;}
.ws92{word-spacing:-38.542970px;}
.ws6d{word-spacing:-36.787745px;}
.ws4d{word-spacing:-36.782570px;}
.ws2c{word-spacing:-31.212574px;}
.ws25{word-spacing:-31.207378px;}
.ws23{word-spacing:-31.189134px;}
.ws6e{word-spacing:-29.415296px;}
.ws4f{word-spacing:-29.413922px;}
.ws53{word-spacing:-29.412753px;}
.ws7c{word-spacing:-29.412748px;}
.ws60{word-spacing:-29.412743px;}
.ws52{word-spacing:-25.766261px;}
.ws85{word-spacing:-25.763668px;}
.ws59{word-spacing:-25.761231px;}
.ws62{word-spacing:-25.761094px;}
.ws84{word-spacing:-25.761086px;}
.ws8{word-spacing:-25.755970px;}
.ws7{word-spacing:-25.755948px;}
.ws86{word-spacing:-25.755887px;}
.ws5e{word-spacing:-25.755788px;}
.ws9{word-spacing:-25.742851px;}
.wsa{word-spacing:-25.742713px;}
.wse{word-spacing:-25.497103px;}
.ws4a{word-spacing:-22.043003px;}
.ws7a{word-spacing:-22.043002px;}
.ws4c{word-spacing:-22.042991px;}
.ws1e{word-spacing:-22.042980px;}
.ws6c{word-spacing:-22.042979px;}
.ws58{word-spacing:-22.042971px;}
.ws91{word-spacing:-22.042969px;}
.ws1a{word-spacing:-22.042968px;}
.ws49{word-spacing:-22.042967px;}
.ws7f{word-spacing:-22.042966px;}
.ws41{word-spacing:-22.042958px;}
.ws1f{word-spacing:-22.042946px;}
.ws27{word-spacing:-20.255543px;}
.ws26{word-spacing:-20.252925px;}
.ws29{word-spacing:-20.250365px;}
.ws28{word-spacing:-20.250349px;}
.ws2d{word-spacing:-20.250347px;}
.ws2b{word-spacing:-20.250345px;}
.ws2a{word-spacing:-20.232104px;}
.ws24{word-spacing:-20.232102px;}
.ws30{word-spacing:-18.395137px;}
.ws31{word-spacing:-18.392579px;}
.ws2f{word-spacing:-18.391246px;}
.ws3f{word-spacing:-18.389966px;}
.ws3c{word-spacing:-18.389831px;}
.ws35{word-spacing:-18.388661px;}
.ws38{word-spacing:-18.388647px;}
.ws34{word-spacing:-18.388637px;}
.ws37{word-spacing:-18.388627px;}
.ws3b{word-spacing:-18.388622px;}
.ws39{word-spacing:-18.388618px;}
.ws1b{word-spacing:-18.388616px;}
.ws3e{word-spacing:-18.388614px;}
.ws3a{word-spacing:-18.388608px;}
.ws3d{word-spacing:-18.388522px;}
.ws32{word-spacing:-18.382096px;}
.ws36{word-spacing:-18.382092px;}
.ws33{word-spacing:-18.380789px;}
.ws77{word-spacing:-17.543002px;}
.ws10{word-spacing:-17.543001px;}
.ws57{word-spacing:-17.542991px;}
.ws7e{word-spacing:-17.542982px;}
.ws12{word-spacing:-17.542980px;}
.ws5b{word-spacing:-17.542971px;}
.ws14{word-spacing:-17.542969px;}
.ws8c{word-spacing:-17.542967px;}
.ws71{word-spacing:-17.542966px;}
.ws11{word-spacing:-17.542957px;}
.ws76{word-spacing:-17.542956px;}
.ws63{word-spacing:-17.542946px;}
.ws75{word-spacing:-16.532275px;}
.wsc{word-spacing:-16.532265px;}
.ws78{word-spacing:-16.532264px;}
.ws83{word-spacing:-16.532261px;}
.ws6a{word-spacing:-16.532258px;}
.ws67{word-spacing:-16.532255px;}
.ws69{word-spacing:-16.532249px;}
.ws82{word-spacing:-16.532246px;}
.ws51{word-spacing:-16.532237px;}
.ws61{word-spacing:-16.532230px;}
.wsd{word-spacing:-16.532227px;}
.ws6f{word-spacing:-16.532216px;}
.ws7b{word-spacing:-16.532211px;}
.ws7d{word-spacing:-16.532201px;}
.ws4e{word-spacing:-16.532184px;}
.ws8f{word-spacing:-13.043002px;}
.ws64{word-spacing:-13.042991px;}
.ws22{word-spacing:-13.042980px;}
.ws70{word-spacing:-13.042979px;}
.ws45{word-spacing:-13.042971px;}
.ws66{word-spacing:-13.042969px;}
.ws21{word-spacing:-13.042968px;}
.ws68{word-spacing:-13.042966px;}
.ws13{word-spacing:-13.042957px;}
.ws90{word-spacing:-13.042946px;}
.ws81{word-spacing:-8.543002px;}
.ws16{word-spacing:-8.542991px;}
.ws15{word-spacing:-8.542980px;}
.ws5d{word-spacing:-8.542971px;}
.ws20{word-spacing:-8.542968px;}
.ws46{word-spacing:-8.542966px;}
.ws50{word-spacing:-8.542958px;}
.ws80{word-spacing:-8.542935px;}
.ws8e{word-spacing:-5.239782px;}
.ws8d{word-spacing:-5.233657px;}
.ws74{word-spacing:-4.043002px;}
.ws44{word-spacing:-4.043001px;}
.ws43{word-spacing:-4.042991px;}
.ws5c{word-spacing:-4.042980px;}
.ws42{word-spacing:-4.042969px;}
.ws72{word-spacing:-4.042958px;}
.ws73{word-spacing:-4.042934px;}
.wsb{word-spacing:0.000000px;}
.ws5f{word-spacing:0.457029px;}
.ws6b{word-spacing:0.457031px;}
.ws79{word-spacing:4.956998px;}
.ws18{word-spacing:4.957029px;}
.ws17{word-spacing:4.957031px;}
.ws65{word-spacing:4.957033px;}
.ws19{word-spacing:4.957042px;}
.ws8b{word-spacing:9.457009px;}
.ws89{word-spacing:9.457011px;}
.ws56{word-spacing:9.457031px;}
.ws88{word-spacing:13.956997px;}
.ws55{word-spacing:13.957029px;}
.ws47{word-spacing:13.957032px;}
.ws1d{word-spacing:18.457032px;}
.ws87{word-spacing:18.457043px;}
.ws8a{word-spacing:27.457032px;}
.ws48{word-spacing:51.931022px;}
.ws40{word-spacing:55.908854px;}
._2{margin-left:-12.023437px;}
._43{margin-left:-9.088638px;}
._d{margin-left:-7.980520px;}
._3a{margin-left:-6.664649px;}
._0{margin-left:-5.343749px;}
._5{margin-left:-3.972670px;}
._1{margin-left:-2.926755px;}
._a{margin-left:-1.300802px;}
._b{width:20.003830px;}
._c{width:24.503908px;}
._3{width:29.003906px;}
._4{width:33.503909px;}
._38{width:35.049330px;}
._6{width:38.003911px;}
._3e{width:40.007814px;}
._7{width:42.503861px;}
._42{width:47.003908px;}
._41{width:49.007760px;}
._40{width:51.503909px;}
._44{width:56.003819px;}
._45{width:58.007839px;}
._3c{width:60.503910px;}
._9{width:65.003907px;}
._46{width:74.003910px;}
._36{width:78.409115px;}
._37{width:84.973451px;}
._3f{width:107.961042px;}
._2a{width:118.431150px;}
._3d{width:125.960910px;}
._35{width:128.386471px;}
._39{width:456.640089px;}
._26{width:564.563766px;}
._2b{width:616.732306px;}
._24{width:633.566722px;}
._2e{width:799.743327px;}
._27{width:828.255870px;}
._25{width:874.784754px;}
._2f{width:1006.930766px;}
._32{width:1030.374470px;}
._34{width:1090.919319px;}
._31{width:1123.665471px;}
._33{width:1134.366722px;}
._12{width:1156.527207px;}
._23{width:1180.303060px;}
._28{width:1210.919316px;}
._30{width:1233.782667px;}
._2d{width:1290.462682px;}
._1c{width:1347.186753px;}
._2c{width:1415.864883px;}
._29{width:1460.382137px;}
._10{width:1483.308569px;}
._13{width:1486.874929px;}
._19{width:1561.469768px;}
._1e{width:1592.532493px;}
._15{width:1607.934596px;}
._17{width:1699.235910px;}
._1a{width:1761.646447px;}
._1b{width:1783.757394px;}
._18{width:1829.579357px;}
._16{width:1884.640605px;}
._14{width:1939.651350px;}
._8{width:2052.551502px;}
._f{width:2064.196861px;}
._21{width:2073.255102px;}
._22{width:2084.308814px;}
._e{width:2131.978111px;}
._1d{width:2146.491433px;}
._1f{width:2177.853738px;}
._20{width:2179.599844px;}
._11{width:2265.870694px;}
._3b{width:2627.498504px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:43.200002px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.fs4{font-size:96.000003px;}
.fs8{font-size:119.999997px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y173{bottom:10.619386px;}
.ydb{bottom:10.622315px;}
.yf{bottom:10.622681px;}
.y57{bottom:10.623047px;}
.ya9{bottom:10.623779px;}
.y137{bottom:12.323729px;}
.y13a{bottom:12.326658px;}
.y140{bottom:15.944823px;}
.y13d{bottom:15.947753px;}
.yda{bottom:33.906007px;}
.y11c{bottom:33.907471px;}
.ye{bottom:33.908203px;}
.y56{bottom:33.908935px;}
.yd9{bottom:57.192628px;}
.yd{bottom:57.193726px;}
.y55{bottom:57.194092px;}
.y88{bottom:80.427250px;}
.y1a{bottom:80.427985px;}
.yd7{bottom:80.428705px;}
.y11b{bottom:80.430175px;}
.y11a{bottom:112.338871px;}
.y172{bottom:117.377926px;}
.y105{bottom:122.563471px;}
.yc3{bottom:126.897946px;}
.yb{bottom:127.642820px;}
.yf2{bottom:135.884033px;}
.y190{bottom:142.166011px;}
.y119{bottom:143.387701px;}
.y171{bottom:148.426756px;}
.y98{bottom:152.060296px;}
.y104{bottom:153.612301px;}
.ya{bottom:155.412965px;}
.yc2{bottom:157.945306px;}
.y87{bottom:162.950686px;}
.y154{bottom:167.519536px;}
.y18f{bottom:173.211916px;}
.y79{bottom:174.060796px;}
.y118{bottom:174.436516px;}
.y12e{bottom:175.116211px;}
.y170{bottom:179.472661px;}
.y97{bottom:183.107671px;}
.y9{bottom:183.183110px;}
.y103{bottom:184.658206px;}
.y86{bottom:193.998046px;}
.y153{bottom:198.568366px;}
.y100{bottom:202.612786px;}
.ya8{bottom:203.325443px;}
.y18e{bottom:204.260746px;}
.y120{bottom:204.702398px;}
.y78{bottom:205.108156px;}
.y117{bottom:205.482421px;}
.y12d{bottom:206.165041px;}
.y16f{bottom:210.521491px;}
.y8{bottom:210.953240px;}
.y96{bottom:214.155031px;}
.yc1{bottom:220.040041px;}
.y85{bottom:225.045406px;}
.y152{bottom:229.614256px;}
.yff{bottom:233.660161px;}
.y135{bottom:233.715083px;}
.y193{bottom:235.309576px;}
.y102{bottom:235.450928px;}
.y77{bottom:236.155516px;}
.y116{bottom:236.528326px;}
.y12c{bottom:237.210931px;}
.y16e{bottom:241.567381px;}
.y133{bottom:258.635003px;}
.y95{bottom:258.923590px;}
.y151{bottom:260.663086px;}
.y84{bottom:264.454099px;}
.yfe{bottom:264.707521px;}
.yb5{bottom:266.211916px;}
.y18d{bottom:266.355466px;}
.y115{bottom:267.577141px;}
.y6e{bottom:272.615476px;}
.y16d{bottom:272.616211px;}
.y53{bottom:279.722905px;}
.y15c{bottom:286.482421px;}
.yfd{bottom:295.754881px;}
.yb4{bottom:297.259276px;}
.y18c{bottom:297.401371px;}
.y76{bottom:298.250251px;}
.y114{bottom:298.625971px;}
.y12b{bottom:299.305666px;}
.y16c{bottom:303.662116px;}
.y6d{bottom:303.662836px;}
.yd6{bottom:303.803468px;}
.y107{bottom:303.970463px;}
.y52{bottom:312.677487px;}
.y198{bottom:315.029296px;}
.y15b{bottom:317.528326px;}
.y150{bottom:322.757806px;}
.yfc{bottom:326.802241px;}
.y7{bottom:327.799802px;}
.yb3{bottom:328.306636px;}
.y18b{bottom:328.450201px;}
.y75{bottom:329.297611px;}
.y113{bottom:329.671876px;}
.y12a{bottom:330.354496px;}
.y130{bottom:333.333248px;}
.y6c{bottom:334.710211px;}
.y197{bottom:346.075201px;}
.y15a{bottom:348.577141px;}
.y83{bottom:349.821533px;}
.y14f{bottom:353.803711px;}
.yfb{bottom:357.849616px;}
.yb2{bottom:359.354011px;}
.y18a{bottom:359.499016px;}
.ybf{bottom:360.041011px;}
.y74{bottom:360.344971px;}
.y112{bottom:360.717766px;}
.y129{bottom:361.400386px;}
.y16b{bottom:365.756836px;}
.y6b{bottom:365.757571px;}
.y6{bottom:375.405767px;}
.y196{bottom:377.124016px;}
.y159{bottom:379.625971px;}
.y94{bottom:384.693601px;}
.y14e{bottom:384.852541px;}
.yfa{bottom:388.896976px;}
.y189{bottom:390.544921px;}
.ybe{bottom:391.086916px;}
.y111{bottom:391.766596px;}
.y128{bottom:392.446291px;}
.y6a{bottom:396.804931px;}
.y16a{bottom:396.805666px;}
.yf1{bottom:408.171391px;}
.yb1{bottom:410.145263px;}
.y93{bottom:415.740961px;}
.y14d{bottom:415.898431px;}
.y51{bottom:416.848750px;}
.y73{bottom:418.899173px;}
.y188{bottom:421.590826px;}
.ybd{bottom:422.135746px;}
.y127{bottom:423.495121px;}
.yf9{bottom:424.006345px;}
.y110{bottom:426.875980px;}
.y169{bottom:427.851556px;}
.y69{bottom:427.852291px;}
.yf0{bottom:439.218751px;}
.y50{bottom:442.721560px;}
.y158{bottom:443.351813px;}
.y92{bottom:446.788336px;}
.y14c{bottom:446.947261px;}
.y187{bottom:452.639641px;}
.ybc{bottom:453.181636px;}
.y126{bottom:454.543951px;}
.y68{bottom:458.899651px;}
.y168{bottom:458.900386px;}
.ya7{bottom:462.564691px;}
.y4f{bottom:468.594355px;}
.y195{bottom:470.264641px;}
.yef{bottom:470.266111px;}
.y91{bottom:477.835696px;}
.y192{bottom:483.688471px;}
.y125{bottom:485.589841px;}
.y167{bottom:489.946291px;}
.y67{bottom:489.947026px;}
.ya6{bottom:493.612066px;}
.y4e{bottom:494.467165px;}
.yee{bottom:501.313471px;}
.y90{bottom:508.883056px;}
.y14b{bottom:509.041996px;}
.ybb{bottom:511.736573px;}
.y186{bottom:514.734376px;}
.y124{bottom:516.635746px;}
.y10f{bottom:519.011716px;}
.y4d{bottom:520.339960px;}
.y66{bottom:520.994386px;}
.y166{bottom:520.995121px;}
.yed{bottom:532.360846px;}
.y194{bottom:532.362301px;}
.ya5{bottom:538.380610px;}
.y8f{bottom:539.930416px;}
.y14a{bottom:540.087886px;}
.y185{bottom:545.780266px;}
.y4c{bottom:546.212770px;}
.y10e{bottom:550.060546px;}
.y165{bottom:552.041011px;}
.y65{bottom:552.041746px;}
.yf8{bottom:553.997318px;}
.yec{bottom:563.408206px;}
.y149{bottom:571.136716px;}
.y4b{bottom:572.085565px;}
.y184{bottom:576.829096px;}
.y123{bottom:578.733391px;}
.y10d{bottom:581.106451px;}
.y164{bottom:583.089841px;}
.y38{bottom:586.224238px;}
.y174{bottom:594.454096px;}
.yeb{bottom:594.455566px;}
.y64{bottom:596.810305px;}
.y4a{bottom:597.958375px;}
.y101{bottom:600.895748px;}
.y8e{bottom:602.025151px;}
.y148{bottom:602.182621px;}
.y183{bottom:607.877926px;}
.y37{bottom:609.697633px;}
.y122{bottom:609.779296px;}
.y10c{bottom:612.155266px;}
.y49{bottom:623.831170px;}
.yea{bottom:625.502926px;}
.y36{bottom:633.171013px;}
.y182{bottom:638.923831px;}
.y10b{bottom:643.201171px;}
.yd5{bottom:644.715826px;}
.y163{bottom:645.184576px;}
.y48{bottom:649.703980px;}
.y5{bottom:654.836979px;}
.ye9{bottom:656.550286px;}
.y157{bottom:656.551756px;}
.y35{bottom:656.644408px;}
.y121{bottom:660.573488px;}
.y8d{bottom:664.119871px;}
.ya4{bottom:664.150636px;}
.y147{bottom:664.277341px;}
.y132{bottom:667.256108px;}
.y181{bottom:669.969721px;}
.y10a{bottom:674.250001px;}
.y47{bottom:675.576775px;}
.yd4{bottom:675.763186px;}
.y162{bottom:676.230466px;}
.y34{bottom:680.117803px;}
.ye8{bottom:687.597661px;}
.y63{bottom:688.945306px;}
.y8c{bottom:695.167231px;}
.ya3{bottom:695.197996px;}
.y146{bottom:695.326171px;}
.y180{bottom:701.018551px;}
.y46{bottom:701.449585px;}
.y33{bottom:703.591183px;}
.y134{bottom:705.189698px;}
.yd3{bottom:706.810546px;}
.y161{bottom:707.279296px;}
.y4{bottom:708.393669px;}
.yc0{bottom:714.345706px;}
.y106{bottom:717.895748px;}
.y156{bottom:718.643551px;}
.ye7{bottom:718.645021px;}
.y62{bottom:719.992681px;}
.y109{bottom:723.576413px;}
.y8b{bottom:726.214606px;}
.ya2{bottom:726.245356px;}
.y145{bottom:726.372076px;}
.y32{bottom:727.064578px;}
.y45{bottom:727.322380px;}
.y17f{bottom:732.067381px;}
.y160{bottom:738.325201px;}
.y12f{bottom:745.346918px;}
.ye6{bottom:749.692381px;}
.y31{bottom:750.537958px;}
.y61{bottom:751.040041px;}
.y44{bottom:753.195190px;}
.ya1{bottom:757.292731px;}
.y144{bottom:757.420891px;}
.y3{bottom:761.950374px;}
.y17e{bottom:763.113286px;}
.y8a{bottom:765.622549px;}
.yd2{bottom:768.905266px;}
.y15f{bottom:769.374016px;}
.y30{bottom:774.011353px;}
.y43{bottom:779.067985px;}
.y23{bottom:779.358766px;}
.y11f{bottom:780.741211px;}
.y60{bottom:782.087401px;}
.ya0{bottom:788.340091px;}
.y143{bottom:788.466796px;}
.y19{bottom:788.586736px;}
.y17d{bottom:794.159176px;}
.y2f{bottom:797.484748px;}
.yd1{bottom:799.952641px;}
.y15e{bottom:800.419921px;}
.y42{bottom:804.940795px;}
.y72{bottom:807.061516px;}
.y22{bottom:810.406126px;}
.ye5{bottom:811.787116px;}
.y2{bottom:815.507079px;}
.y9f{bottom:819.387451px;}
.y142{bottom:819.515626px;}
.y18{bottom:819.634096px;}
.y2e{bottom:820.958128px;}
.y82{bottom:823.483891px;}
.y191{bottom:825.208006px;}
.y41{bottom:830.813605px;}
.yd0{bottom:831.000001px;}
.y71{bottom:838.108891px;}
.y21{bottom:841.453486px;}
.y11e{bottom:842.833006px;}
.ye4{bottom:842.834476px;}
.y5f{bottom:844.182136px;}
.y2d{bottom:844.431523px;}
.y17{bottom:850.681456px;}
.y15d{bottom:853.540283px;}
.y81{bottom:854.531251px;}
.y17c{bottom:856.256836px;}
.y40{bottom:856.686400px;}
.ycf{bottom:862.047361px;}
.y2c{bottom:867.904903px;}
.y20{bottom:872.500861px;}
.ye3{bottom:873.881836px;}
.y5e{bottom:875.229496px;}
.y141{bottom:877.291253px;}
.y9e{bottom:881.482171px;}
.y16{bottom:881.728816px;}
.y3f{bottom:882.559210px;}
.y70{bottom:882.877435px;}
.y80{bottom:885.578611px;}
.y17b{bottom:887.302741px;}
.y13f{bottom:891.082036px;}
.y2b{bottom:891.378298px;}
.yce{bottom:893.094721px;}
.y13e{bottom:894.703131px;}
.y1f{bottom:903.548221px;}
.ye2{bottom:904.929196px;}
.y155{bottom:904.930666px;}
.y5d{bottom:906.276856px;}
.y3e{bottom:908.432005px;}
.y15{bottom:912.776191px;}
.y2a{bottom:914.851678px;}
.y7f{bottom:916.625971px;}
.y17a{bottom:918.348631px;}
.ycd{bottom:924.142096px;}
.yb0{bottom:933.253411px;}
.y3d{bottom:934.304815px;}
.y1e{bottom:934.595581px;}
.y13c{bottom:935.724612px;}
.yc8{bottom:935.975101px;}
.ye1{bottom:935.976556px;}
.y5c{bottom:937.324216px;}
.y29{bottom:938.325073px;}
.y13b{bottom:939.345707px;}
.y9d{bottom:943.576906px;}
.y14{bottom:943.823551px;}
.y89{bottom:947.673346px;}
.y179{bottom:949.397461px;}
.yba{bottom:949.398931px;}
.y1{bottom:954.611567px;}
.ycc{bottom:955.189456px;}
.y3c{bottom:960.177610px;}
.y28{bottom:961.798468px;}
.yaf{bottom:964.300786px;}
.y1d{bottom:965.642941px;}
.yc7{bottom:967.022461px;}
.ye0{bottom:967.023931px;}
.y6f{bottom:968.371576px;}
.y9c{bottom:974.624266px;}
.yf7{bottom:974.784661px;}
.y13{bottom:974.870911px;}
.y7e{bottom:978.720706px;}
.y139{bottom:980.370117px;}
.yb9{bottom:980.446291px;}
.y27{bottom:985.271848px;}
.y3b{bottom:986.050420px;}
.ycb{bottom:986.236816px;}
.yae{bottom:995.348144px;}
.y1c{bottom:996.690307px;}
.ydf{bottom:998.071289px;}
.y5b{bottom:999.418945px;}
.y9b{bottom:1005.671630px;}
.yf6{bottom:1005.832031px;}
.y12{bottom:1005.918274px;}
.y26{bottom:1008.745238px;}
.y7d{bottom:1009.768066px;}
.y178{bottom:1011.492187px;}
.yb8{bottom:1011.493652px;}
.y3a{bottom:1011.923217px;}
.y138{bottom:1021.394532px;}
.yad{bottom:1026.395507px;}
.y1b{bottom:1027.737671px;}
.yc6{bottom:1029.117187px;}
.yde{bottom:1029.118652px;}
.y11d{bottom:1029.120116px;}
.y5a{bottom:1030.466308px;}
.yca{bottom:1031.005372px;}
.y25{bottom:1032.218627px;}
.y9a{bottom:1036.718993px;}
.yf5{bottom:1036.879394px;}
.y11{bottom:1036.965637px;}
.y39{bottom:1037.796019px;}
.y7c{bottom:1040.815429px;}
.y177{bottom:1042.538086px;}
.yb7{bottom:1042.541015px;}
.y24{bottom:1055.692016px;}
.yac{bottom:1057.442870px;}
.yc5{bottom:1060.164551px;}
.ydd{bottom:1060.166015px;}
.y131{bottom:1061.167968px;}
.y59{bottom:1061.513672px;}
.y136{bottom:1062.416016px;}
.y99{bottom:1067.676271px;}
.yf4{bottom:1067.926757px;}
.y7b{bottom:1071.862793px;}
.y176{bottom:1073.586914px;}
.yb6{bottom:1073.588378px;}
.yc9{bottom:1077.123047px;}
.y108{bottom:1083.679685px;}
.y10{bottom:1084.894410px;}
.yab{bottom:1088.490235px;}
.yc4{bottom:1091.211914px;}
.ydc{bottom:1091.213378px;}
.yf3{bottom:1098.974120px;}
.y58{bottom:1111.003417px;}
.y175{bottom:1111.004881px;}
.y7a{bottom:1116.631348px;}
.yaa{bottom:1119.445311px;}
.y54{bottom:1139.143067px;}
.yc{bottom:1139.143433px;}
.yd8{bottom:1139.144530px;}
.h12{height:39.896484px;}
.h13{height:39.899414px;}
.h15{height:43.517579px;}
.h14{height:43.520508px;}
.h5{height:48.304688px;}
.h6{height:48.410156px;}
.h7{height:48.752930px;}
.hb{height:53.789061px;}
.hd{height:59.167970px;}
.hc{height:59.586915px;}
.h9{height:64.546875px;}
.h3{height:75.304685px;}
.h10{height:86.062503px;}
.h8{height:86.671878px;}
.hf{height:107.578122px;}
.ha{height:107.625000px;}
.h11{height:123.855470px;}
.h4{height:123.856567px;}
.he{height:123.856933px;}
.h1{height:129.093750px;}
.h2{height:145.230469px;}
.h0{height:1263.000000px;}
.w3{width:166.500000px;}
.w2{width:334.125000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x32{left:52.931897px;}
.x30{left:56.426528px;}
.x2f{left:58.783610px;}
.x31{left:60.525802px;}
.x35{left:62.262868px;}
.x33{left:69.272627px;}
.x34{left:72.777506px;}
.x2e{left:80.784188px;}
.x2c{left:93.620039px;}
.x12{left:97.875000px;}
.x13{left:104.365242px;}
.xf{left:108.000000px;}
.x2b{left:111.375000px;}
.x3{left:118.274197px;}
.x5{left:127.657620px;}
.x37{left:132.878323px;}
.x1f{left:133.919827px;}
.x10{left:135.000000px;}
.x2a{left:137.878201px;}
.x2{left:140.432523px;}
.x1d{left:142.393582px;}
.x29{left:143.497708px;}
.x14{left:148.978488px;}
.x11{left:162.000000px;}
.x38{left:180.448028px;}
.x36{left:182.194854px;}
.x6{left:187.311187px;}
.x17{left:190.488304px;}
.x19{left:192.089141px;}
.x16{left:196.594634px;}
.x1e{left:198.463409px;}
.x4{left:204.524566px;}
.x22{left:219.033110px;}
.x1a{left:222.223541px;}
.x18{left:227.094878px;}
.x23{left:242.364776px;}
.x26{left:244.998198px;}
.x28{left:251.619659px;}
.x25{left:255.495627px;}
.x27{left:256.500875px;}
.x15{left:258.119162px;}
.x1b{left:264.494528px;}
.x24{left:267.881613px;}
.x21{left:274.262472px;}
.x1{left:278.049459px;}
.x20{left:288.270041px;}
.x1c{left:292.756857px;}
.x7{left:358.407855px;}
.x9{left:441.927146px;}
.x2d{left:446.625000px;}
.xc{left:470.115518px;}
.x8{left:479.302290px;}
.xb{left:613.420256px;}
.xd{left:619.294478px;}
.xa{left:623.873408px;}
.xe{left:651.376755px;}
@media print{
.v1{vertical-align:-11.039062pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.781250pt;}
.ls2{letter-spacing:21.781250pt;}
.ws1c{word-spacing:-64.000002pt;}
.ws54{word-spacing:-49.833335pt;}
.ws1{word-spacing:-44.085977pt;}
.ws3{word-spacing:-44.085969pt;}
.ws2{word-spacing:-44.085934pt;}
.ws4{word-spacing:-44.085923pt;}
.ws5a{word-spacing:-43.604165pt;}
.wsf{word-spacing:-40.314781pt;}
.ws2e{word-spacing:-40.311323pt;}
.ws5{word-spacing:-39.187531pt;}
.ws0{word-spacing:-39.187520pt;}
.ws6{word-spacing:-39.187440pt;}
.ws4b{word-spacing:-37.375000pt;}
.ws92{word-spacing:-34.260418pt;}
.ws6d{word-spacing:-32.700218pt;}
.ws4d{word-spacing:-32.695617pt;}
.ws2c{word-spacing:-27.744510pt;}
.ws25{word-spacing:-27.739892pt;}
.ws23{word-spacing:-27.723675pt;}
.ws6e{word-spacing:-26.146930pt;}
.ws4f{word-spacing:-26.145708pt;}
.ws53{word-spacing:-26.144669pt;}
.ws7c{word-spacing:-26.144665pt;}
.ws60{word-spacing:-26.144660pt;}
.ws52{word-spacing:-22.903343pt;}
.ws85{word-spacing:-22.901039pt;}
.ws59{word-spacing:-22.898872pt;}
.ws62{word-spacing:-22.898750pt;}
.ws84{word-spacing:-22.898743pt;}
.ws8{word-spacing:-22.894196pt;}
.ws7{word-spacing:-22.894176pt;}
.ws86{word-spacing:-22.894121pt;}
.ws5e{word-spacing:-22.894034pt;}
.ws9{word-spacing:-22.882534pt;}
.wsa{word-spacing:-22.882412pt;}
.wse{word-spacing:-22.664092pt;}
.ws4a{word-spacing:-19.593780pt;}
.ws7a{word-spacing:-19.593779pt;}
.ws4c{word-spacing:-19.593770pt;}
.ws1e{word-spacing:-19.593760pt;}
.ws6c{word-spacing:-19.593759pt;}
.ws58{word-spacing:-19.593752pt;}
.ws91{word-spacing:-19.593751pt;}
.ws1a{word-spacing:-19.593750pt;}
.ws49{word-spacing:-19.593748pt;}
.ws7f{word-spacing:-19.593747pt;}
.ws41{word-spacing:-19.593740pt;}
.ws1f{word-spacing:-19.593730pt;}
.ws27{word-spacing:-18.004927pt;}
.ws26{word-spacing:-18.002600pt;}
.ws29{word-spacing:-18.000324pt;}
.ws28{word-spacing:-18.000310pt;}
.ws2d{word-spacing:-18.000309pt;}
.ws2b{word-spacing:-18.000307pt;}
.ws2a{word-spacing:-17.984092pt;}
.ws24{word-spacing:-17.984090pt;}
.ws30{word-spacing:-16.351233pt;}
.ws31{word-spacing:-16.348959pt;}
.ws2f{word-spacing:-16.347774pt;}
.ws3f{word-spacing:-16.346637pt;}
.ws3c{word-spacing:-16.346517pt;}
.ws35{word-spacing:-16.345476pt;}
.ws38{word-spacing:-16.345464pt;}
.ws34{word-spacing:-16.345455pt;}
.ws37{word-spacing:-16.345447pt;}
.ws3b{word-spacing:-16.345442pt;}
.ws39{word-spacing:-16.345438pt;}
.ws1b{word-spacing:-16.345437pt;}
.ws3e{word-spacing:-16.345435pt;}
.ws3a{word-spacing:-16.345429pt;}
.ws3d{word-spacing:-16.345353pt;}
.ws32{word-spacing:-16.339641pt;}
.ws36{word-spacing:-16.339638pt;}
.ws33{word-spacing:-16.338479pt;}
.ws77{word-spacing:-15.593780pt;}
.ws10{word-spacing:-15.593779pt;}
.ws57{word-spacing:-15.593770pt;}
.ws7e{word-spacing:-15.593762pt;}
.ws12{word-spacing:-15.593760pt;}
.ws5b{word-spacing:-15.593752pt;}
.ws14{word-spacing:-15.593750pt;}
.ws8c{word-spacing:-15.593749pt;}
.ws71{word-spacing:-15.593748pt;}
.ws11{word-spacing:-15.593740pt;}
.ws76{word-spacing:-15.593739pt;}
.ws63{word-spacing:-15.593730pt;}
.ws75{word-spacing:-14.695355pt;}
.wsc{word-spacing:-14.695347pt;}
.ws78{word-spacing:-14.695345pt;}
.ws83{word-spacing:-14.695343pt;}
.ws6a{word-spacing:-14.695340pt;}
.ws67{word-spacing:-14.695337pt;}
.ws69{word-spacing:-14.695332pt;}
.ws82{word-spacing:-14.695330pt;}
.ws51{word-spacing:-14.695322pt;}
.ws61{word-spacing:-14.695316pt;}
.wsd{word-spacing:-14.695313pt;}
.ws6f{word-spacing:-14.695303pt;}
.ws7b{word-spacing:-14.695299pt;}
.ws7d{word-spacing:-14.695290pt;}
.ws4e{word-spacing:-14.695275pt;}
.ws8f{word-spacing:-11.593780pt;}
.ws64{word-spacing:-11.593770pt;}
.ws22{word-spacing:-11.593760pt;}
.ws70{word-spacing:-11.593759pt;}
.ws45{word-spacing:-11.593752pt;}
.ws66{word-spacing:-11.593751pt;}
.ws21{word-spacing:-11.593750pt;}
.ws68{word-spacing:-11.593748pt;}
.ws13{word-spacing:-11.593740pt;}
.ws90{word-spacing:-11.593730pt;}
.ws81{word-spacing:-7.593779pt;}
.ws16{word-spacing:-7.593770pt;}
.ws15{word-spacing:-7.593760pt;}
.ws5d{word-spacing:-7.593752pt;}
.ws20{word-spacing:-7.593750pt;}
.ws46{word-spacing:-7.593747pt;}
.ws50{word-spacing:-7.593740pt;}
.ws80{word-spacing:-7.593720pt;}
.ws8e{word-spacing:-4.657584pt;}
.ws8d{word-spacing:-4.652140pt;}
.ws74{word-spacing:-3.593780pt;}
.ws44{word-spacing:-3.593779pt;}
.ws43{word-spacing:-3.593770pt;}
.ws5c{word-spacing:-3.593760pt;}
.ws42{word-spacing:-3.593750pt;}
.ws72{word-spacing:-3.593740pt;}
.ws73{word-spacing:-3.593719pt;}
.wsb{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.406248pt;}
.ws6b{word-spacing:0.406250pt;}
.ws79{word-spacing:4.406220pt;}
.ws18{word-spacing:4.406248pt;}
.ws17{word-spacing:4.406250pt;}
.ws65{word-spacing:4.406251pt;}
.ws19{word-spacing:4.406259pt;}
.ws8b{word-spacing:8.406230pt;}
.ws89{word-spacing:8.406232pt;}
.ws56{word-spacing:8.406250pt;}
.ws88{word-spacing:12.406220pt;}
.ws55{word-spacing:12.406248pt;}
.ws47{word-spacing:12.406251pt;}
.ws1d{word-spacing:16.406250pt;}
.ws87{word-spacing:16.406260pt;}
.ws8a{word-spacing:24.406250pt;}
.ws48{word-spacing:46.160909pt;}
.ws40{word-spacing:49.696759pt;}
._2{margin-left:-10.687499pt;}
._43{margin-left:-8.078789pt;}
._d{margin-left:-7.093795pt;}
._3a{margin-left:-5.924132pt;}
._0{margin-left:-4.750000pt;}
._5{margin-left:-3.531263pt;}
._1{margin-left:-2.601560pt;}
._a{margin-left:-1.156268pt;}
._b{width:17.781182pt;}
._c{width:21.781252pt;}
._3{width:25.781250pt;}
._4{width:29.781252pt;}
._38{width:31.154960pt;}
._6{width:33.781254pt;}
._3e{width:35.562501pt;}
._7{width:37.781210pt;}
._42{width:41.781252pt;}
._41{width:43.562453pt;}
._40{width:45.781252pt;}
._44{width:49.781173pt;}
._45{width:51.562523pt;}
._3c{width:53.781253pt;}
._9{width:57.781251pt;}
._46{width:65.781253pt;}
._36{width:69.696991pt;}
._37{width:75.531956pt;}
._3f{width:95.965371pt;}
._2a{width:105.272133pt;}
._3d{width:111.965253pt;}
._35{width:114.121308pt;}
._39{width:405.902301pt;}
._26{width:501.834459pt;}
._2b{width:548.206494pt;}
._24{width:563.170419pt;}
._2e{width:710.882957pt;}
._27{width:736.227440pt;}
._25{width:777.586448pt;}
._2f{width:895.049570pt;}
._32{width:915.888418pt;}
._34{width:969.706061pt;}
._31{width:998.813752pt;}
._33{width:1008.325975pt;}
._12{width:1028.024184pt;}
._23{width:1049.158275pt;}
._28{width:1076.372725pt;}
._30{width:1096.695704pt;}
._2d{width:1147.077939pt;}
._1c{width:1197.499336pt;}
._2c{width:1258.546563pt;}
._29{width:1298.117455pt;}
._10{width:1318.496506pt;}
._13{width:1321.666604pt;}
._19{width:1387.973127pt;}
._1e{width:1415.584439pt;}
._15{width:1429.275196pt;}
._17{width:1510.431920pt;}
._1a{width:1565.907953pt;}
._1b{width:1585.562128pt;}
._18{width:1626.292762pt;}
._16{width:1675.236094pt;}
._14{width:1724.134533pt;}
._8{width:1824.490224pt;}
._f{width:1834.841654pt;}
._21{width:1842.893424pt;}
._22{width:1852.718946pt;}
._e{width:1895.091655pt;}
._1d{width:1907.992385pt;}
._1f{width:1935.869990pt;}
._20{width:1937.422083pt;}
._11{width:2014.107284pt;}
._3b{width:2335.554226pt;}
.fs9{font-size:38.400002pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.fs4{font-size:85.333336pt;}
.fs8{font-size:106.666664pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:9.439454pt;}
.ydb{bottom:9.442058pt;}
.yf{bottom:9.442383pt;}
.y57{bottom:9.442709pt;}
.ya9{bottom:9.443359pt;}
.y137{bottom:10.954426pt;}
.y13a{bottom:10.957030pt;}
.y140{bottom:14.173176pt;}
.y13d{bottom:14.175780pt;}
.yda{bottom:30.138673pt;}
.y11c{bottom:30.139974pt;}
.ye{bottom:30.140625pt;}
.y56{bottom:30.141275pt;}
.yd9{bottom:50.837891pt;}
.yd{bottom:50.838867pt;}
.y55{bottom:50.839193pt;}
.y88{bottom:71.490889pt;}
.y1a{bottom:71.491543pt;}
.yd7{bottom:71.492183pt;}
.y11b{bottom:71.493489pt;}
.y11a{bottom:99.856774pt;}
.y172{bottom:104.335934pt;}
.y105{bottom:108.945308pt;}
.yc3{bottom:112.798174pt;}
.yb{bottom:113.460284pt;}
.yf2{bottom:120.785807pt;}
.y190{bottom:126.369788pt;}
.y119{bottom:127.455734pt;}
.y171{bottom:131.934894pt;}
.y98{bottom:135.164708pt;}
.y104{bottom:136.544268pt;}
.ya{bottom:138.144858pt;}
.yc2{bottom:140.395828pt;}
.y87{bottom:144.845054pt;}
.y154{bottom:148.906254pt;}
.y18f{bottom:153.966147pt;}
.y79{bottom:154.720707pt;}
.y118{bottom:155.054681pt;}
.y12e{bottom:155.658854pt;}
.y170{bottom:159.531254pt;}
.y97{bottom:162.762374pt;}
.y9{bottom:162.829431pt;}
.y103{bottom:164.140628pt;}
.y86{bottom:172.442708pt;}
.y153{bottom:176.505214pt;}
.y100{bottom:180.100254pt;}
.ya8{bottom:180.733727pt;}
.y18e{bottom:181.565107pt;}
.y120{bottom:181.957687pt;}
.y78{bottom:182.318361pt;}
.y117{bottom:182.651041pt;}
.y12d{bottom:183.257814pt;}
.y16f{bottom:187.130214pt;}
.y8{bottom:187.513991pt;}
.y96{bottom:190.360027pt;}
.yc1{bottom:195.591147pt;}
.y85{bottom:200.040361pt;}
.y152{bottom:204.101561pt;}
.yff{bottom:207.697921pt;}
.y135{bottom:207.746741pt;}
.y193{bottom:209.164068pt;}
.y102{bottom:209.289714pt;}
.y77{bottom:209.916014pt;}
.y116{bottom:210.247401pt;}
.y12c{bottom:210.854161pt;}
.y16e{bottom:214.726561pt;}
.y133{bottom:229.897781pt;}
.y95{bottom:230.154302pt;}
.y151{bottom:231.700521pt;}
.y84{bottom:235.070310pt;}
.yfe{bottom:235.295574pt;}
.yb5{bottom:236.632814pt;}
.y18d{bottom:236.760414pt;}
.y115{bottom:237.846347pt;}
.y6e{bottom:242.324867pt;}
.y16d{bottom:242.325521pt;}
.y53{bottom:248.642583pt;}
.y15c{bottom:254.651041pt;}
.yfd{bottom:262.893228pt;}
.yb4{bottom:264.230467pt;}
.y18c{bottom:264.356774pt;}
.y76{bottom:265.111334pt;}
.y114{bottom:265.445308pt;}
.y12b{bottom:266.049481pt;}
.y16c{bottom:269.921881pt;}
.y6d{bottom:269.922521pt;}
.yd6{bottom:270.047527pt;}
.y107{bottom:270.195967pt;}
.y52{bottom:277.935544pt;}
.y198{bottom:280.026041pt;}
.y15b{bottom:282.247401pt;}
.y150{bottom:286.895828pt;}
.yfc{bottom:290.490881pt;}
.y7{bottom:291.377602pt;}
.yb3{bottom:291.828121pt;}
.y18b{bottom:291.955734pt;}
.y75{bottom:292.708987pt;}
.y113{bottom:293.041668pt;}
.y12a{bottom:293.648441pt;}
.y130{bottom:296.296221pt;}
.y6c{bottom:297.520187pt;}
.y197{bottom:307.622401pt;}
.y15a{bottom:309.846347pt;}
.y83{bottom:310.952474pt;}
.y14f{bottom:314.492188pt;}
.yfb{bottom:318.088547pt;}
.yb2{bottom:319.425787pt;}
.y18a{bottom:319.554681pt;}
.ybf{bottom:320.036454pt;}
.y74{bottom:320.306641pt;}
.y112{bottom:320.638014pt;}
.y129{bottom:321.244788pt;}
.y16b{bottom:325.117188pt;}
.y6b{bottom:325.117841pt;}
.y6{bottom:333.694015pt;}
.y196{bottom:335.221347pt;}
.y159{bottom:337.445308pt;}
.y94{bottom:341.949867pt;}
.y14e{bottom:342.091147pt;}
.yfa{bottom:345.686201pt;}
.y189{bottom:347.151041pt;}
.ybe{bottom:347.632814pt;}
.y111{bottom:348.236974pt;}
.y128{bottom:348.841147pt;}
.y6a{bottom:352.715494pt;}
.y16a{bottom:352.716147pt;}
.yf1{bottom:362.819014pt;}
.yb1{bottom:364.573567pt;}
.y93{bottom:369.547521pt;}
.y14d{bottom:369.687494pt;}
.y51{bottom:370.532223pt;}
.y73{bottom:372.354821pt;}
.y188{bottom:374.747401pt;}
.ybd{bottom:375.231774pt;}
.y127{bottom:376.440108pt;}
.yf9{bottom:376.894529pt;}
.y110{bottom:379.445315pt;}
.y169{bottom:380.312494pt;}
.y69{bottom:380.313148pt;}
.yf0{bottom:390.416668pt;}
.y50{bottom:393.530276pt;}
.y158{bottom:394.090501pt;}
.y92{bottom:397.145188pt;}
.y14c{bottom:397.286454pt;}
.y187{bottom:402.346347pt;}
.ybc{bottom:402.828121pt;}
.y126{bottom:404.039067pt;}
.y68{bottom:407.910801pt;}
.y168{bottom:407.911454pt;}
.ya7{bottom:411.168614pt;}
.y4f{bottom:416.528316pt;}
.y195{bottom:418.013014pt;}
.yef{bottom:418.014321pt;}
.y91{bottom:424.742841pt;}
.y192{bottom:429.945308pt;}
.y125{bottom:431.635414pt;}
.y167{bottom:435.507814pt;}
.y67{bottom:435.508467pt;}
.ya6{bottom:438.766281pt;}
.y4e{bottom:439.526369pt;}
.yee{bottom:445.611974pt;}
.y90{bottom:452.340494pt;}
.y14b{bottom:452.481774pt;}
.ybb{bottom:454.876954pt;}
.y186{bottom:457.541667pt;}
.y124{bottom:459.231774pt;}
.y10f{bottom:461.343748pt;}
.y4d{bottom:462.524409pt;}
.y66{bottom:463.106121pt;}
.y166{bottom:463.106774pt;}
.yed{bottom:473.209641pt;}
.y194{bottom:473.210934pt;}
.ya5{bottom:478.560542pt;}
.y8f{bottom:479.938148pt;}
.y14a{bottom:480.078121pt;}
.y185{bottom:485.138014pt;}
.y4c{bottom:485.522463pt;}
.y10e{bottom:488.942708pt;}
.y165{bottom:490.703121pt;}
.y65{bottom:490.703774pt;}
.yf8{bottom:492.442061pt;}
.yec{bottom:500.807294pt;}
.y149{bottom:507.677081pt;}
.y4b{bottom:508.520503pt;}
.y184{bottom:512.736974pt;}
.y123{bottom:514.429681pt;}
.y10d{bottom:516.539067pt;}
.y164{bottom:518.302081pt;}
.y38{bottom:521.088211pt;}
.y174{bottom:528.403641pt;}
.yeb{bottom:528.404948pt;}
.y64{bottom:530.498049pt;}
.y4a{bottom:531.518556pt;}
.y101{bottom:534.129554pt;}
.y8e{bottom:535.133468pt;}
.y148{bottom:535.273441pt;}
.y183{bottom:540.335934pt;}
.y37{bottom:541.953451pt;}
.y122{bottom:542.026041pt;}
.y10c{bottom:544.138014pt;}
.y49{bottom:554.516596pt;}
.yea{bottom:556.002601pt;}
.y36{bottom:562.818678pt;}
.y182{bottom:567.932294pt;}
.y10b{bottom:571.734374pt;}
.yd5{bottom:573.080734pt;}
.y163{bottom:573.497401pt;}
.y48{bottom:577.514649pt;}
.y5{bottom:582.077315pt;}
.ye9{bottom:583.600254pt;}
.y157{bottom:583.601561pt;}
.y35{bottom:583.683918pt;}
.y121{bottom:587.176434pt;}
.y8d{bottom:590.328774pt;}
.ya4{bottom:590.356121pt;}
.y147{bottom:590.468747pt;}
.y132{bottom:593.116541pt;}
.y181{bottom:595.528641pt;}
.y10a{bottom:599.333334pt;}
.y47{bottom:600.512689pt;}
.yd4{bottom:600.678388pt;}
.y162{bottom:601.093748pt;}
.y34{bottom:604.549158pt;}
.ye8{bottom:611.197921pt;}
.y63{bottom:612.395827pt;}
.y8c{bottom:617.926428pt;}
.ya3{bottom:617.953774pt;}
.y146{bottom:618.067707pt;}
.y180{bottom:623.127601pt;}
.y46{bottom:623.510743pt;}
.y33{bottom:625.414385pt;}
.y134{bottom:626.835287pt;}
.yd3{bottom:628.276041pt;}
.y161{bottom:628.692707pt;}
.y4{bottom:629.683262pt;}
.yc0{bottom:634.973961pt;}
.y106{bottom:638.129554pt;}
.y156{bottom:638.794267pt;}
.ye7{bottom:638.795574pt;}
.y62{bottom:639.993494pt;}
.y109{bottom:643.179034pt;}
.y8b{bottom:645.524094pt;}
.ya2{bottom:645.551428pt;}
.y145{bottom:645.664067pt;}
.y32{bottom:646.279625pt;}
.y45{bottom:646.508783pt;}
.y17f{bottom:650.726561pt;}
.y160{bottom:656.289067pt;}
.y12f{bottom:662.530594pt;}
.ye6{bottom:666.393227pt;}
.y31{bottom:667.144851pt;}
.y61{bottom:667.591147pt;}
.y44{bottom:669.506836pt;}
.ya1{bottom:673.149094pt;}
.y144{bottom:673.263014pt;}
.y3{bottom:677.289222pt;}
.y17e{bottom:678.322921pt;}
.y8a{bottom:680.553377pt;}
.yd2{bottom:683.471347pt;}
.y15f{bottom:683.888014pt;}
.y30{bottom:688.010091pt;}
.y43{bottom:692.504876pt;}
.y23{bottom:692.763348pt;}
.y11f{bottom:693.992188pt;}
.y60{bottom:695.188801pt;}
.ya0{bottom:700.746747pt;}
.y143{bottom:700.859374pt;}
.y19{bottom:700.965987pt;}
.y17d{bottom:705.919267pt;}
.y2f{bottom:708.875331pt;}
.yd1{bottom:711.069014pt;}
.y15e{bottom:711.484374pt;}
.y42{bottom:715.502929pt;}
.y72{bottom:717.388014pt;}
.y22{bottom:720.361001pt;}
.ye5{bottom:721.588547pt;}
.y2{bottom:724.895182pt;}
.y9f{bottom:728.344401pt;}
.y142{bottom:728.458334pt;}
.y18{bottom:728.563641pt;}
.y2e{bottom:729.740558pt;}
.y82{bottom:731.985681pt;}
.y191{bottom:733.518227pt;}
.y41{bottom:738.500983pt;}
.yd0{bottom:738.666667pt;}
.y71{bottom:744.985681pt;}
.y21{bottom:747.958654pt;}
.y11e{bottom:749.184894pt;}
.ye4{bottom:749.186201pt;}
.y5f{bottom:750.384121pt;}
.y2d{bottom:750.605798pt;}
.y17{bottom:756.161294pt;}
.y15d{bottom:758.702474pt;}
.y81{bottom:759.583334pt;}
.y17c{bottom:761.117188pt;}
.y40{bottom:761.499023pt;}
.ycf{bottom:766.264321pt;}
.y2c{bottom:771.471025pt;}
.y20{bottom:775.556321pt;}
.ye3{bottom:776.783854pt;}
.y5e{bottom:777.981774pt;}
.y141{bottom:779.814447pt;}
.y9e{bottom:783.539707pt;}
.y16{bottom:783.758947pt;}
.y3f{bottom:784.497076pt;}
.y70{bottom:784.779942pt;}
.y80{bottom:787.180987pt;}
.y17b{bottom:788.713547pt;}
.y13f{bottom:792.072921pt;}
.y2b{bottom:792.336265pt;}
.yce{bottom:793.861974pt;}
.y13e{bottom:795.291672pt;}
.y1f{bottom:803.153974pt;}
.ye2{bottom:804.381507pt;}
.y155{bottom:804.382814pt;}
.y5d{bottom:805.579427pt;}
.y3e{bottom:807.495116pt;}
.y15{bottom:811.356614pt;}
.y2a{bottom:813.201491pt;}
.y7f{bottom:814.778641pt;}
.y17a{bottom:816.309894pt;}
.ycd{bottom:821.459641pt;}
.yb0{bottom:829.558587pt;}
.y3d{bottom:830.493169pt;}
.y1e{bottom:830.751627pt;}
.y13c{bottom:831.755211pt;}
.yc8{bottom:831.977867pt;}
.ye1{bottom:831.979161pt;}
.y5c{bottom:833.177081pt;}
.y29{bottom:834.066731pt;}
.y13b{bottom:834.973961pt;}
.y9d{bottom:838.735027pt;}
.y14{bottom:838.954267pt;}
.y89{bottom:842.376307pt;}
.y179{bottom:843.908854pt;}
.yba{bottom:843.910161pt;}
.y1{bottom:848.543615pt;}
.ycc{bottom:849.057294pt;}
.y3c{bottom:853.491209pt;}
.y28{bottom:854.931971pt;}
.yaf{bottom:857.156254pt;}
.y1d{bottom:858.349281pt;}
.yc7{bottom:859.575521pt;}
.ye0{bottom:859.576827pt;}
.y6f{bottom:860.774734pt;}
.y9c{bottom:866.332681pt;}
.yf7{bottom:866.475254pt;}
.y13{bottom:866.551921pt;}
.y7e{bottom:869.973961pt;}
.y139{bottom:871.440104pt;}
.yb9{bottom:871.507814pt;}
.y27{bottom:875.797198pt;}
.y3b{bottom:876.489263pt;}
.ycb{bottom:876.654947pt;}
.yae{bottom:884.753906pt;}
.y1c{bottom:885.946939pt;}
.ydf{bottom:887.174479pt;}
.y5b{bottom:888.372395pt;}
.y9b{bottom:893.930338pt;}
.yf6{bottom:894.072917pt;}
.y12{bottom:894.149577pt;}
.y26{bottom:896.662434pt;}
.y7d{bottom:897.571614pt;}
.y178{bottom:899.104166pt;}
.yb8{bottom:899.105469pt;}
.y3a{bottom:899.487304pt;}
.y138{bottom:907.906251pt;}
.yad{bottom:912.351562pt;}
.y1b{bottom:913.544597pt;}
.yc6{bottom:914.770833pt;}
.yde{bottom:914.772135pt;}
.y11d{bottom:914.773437pt;}
.y5a{bottom:915.970051pt;}
.yca{bottom:916.449220pt;}
.y25{bottom:917.527669pt;}
.y9a{bottom:921.527994pt;}
.yf5{bottom:921.670573pt;}
.y11{bottom:921.747233pt;}
.y39{bottom:922.485351pt;}
.y7c{bottom:925.169270pt;}
.y177{bottom:926.700521pt;}
.yb7{bottom:926.703125pt;}
.y24{bottom:938.392903pt;}
.yac{bottom:939.949218pt;}
.yc5{bottom:942.368490pt;}
.ydd{bottom:942.369791pt;}
.y131{bottom:943.260416pt;}
.y59{bottom:943.567709pt;}
.y136{bottom:944.369792pt;}
.y99{bottom:949.045574pt;}
.yf4{bottom:949.268229pt;}
.y7b{bottom:952.766927pt;}
.y176{bottom:954.299480pt;}
.yb6{bottom:954.300781pt;}
.yc9{bottom:957.442708pt;}
.y108{bottom:963.270831pt;}
.y10{bottom:964.350587pt;}
.yab{bottom:967.546875pt;}
.yc4{bottom:969.966146pt;}
.ydc{bottom:969.967448pt;}
.yf3{bottom:976.865885pt;}
.y58{bottom:987.558593pt;}
.y175{bottom:987.559895pt;}
.y7a{bottom:992.561199pt;}
.yaa{bottom:995.062499pt;}
.y54{bottom:1012.571615pt;}
.yc{bottom:1012.571940pt;}
.yd8{bottom:1012.572916pt;}
.h12{height:35.463541pt;}
.h13{height:35.466145pt;}
.h15{height:38.682292pt;}
.h14{height:38.684896pt;}
.h5{height:42.937500pt;}
.h6{height:43.031250pt;}
.h7{height:43.335938pt;}
.hb{height:47.812499pt;}
.hd{height:52.593751pt;}
.hc{height:52.966147pt;}
.h9{height:57.375000pt;}
.h3{height:66.937498pt;}
.h10{height:76.500002pt;}
.h8{height:77.041669pt;}
.hf{height:95.624998pt;}
.ha{height:95.666667pt;}
.h11{height:110.093751pt;}
.h4{height:110.094727pt;}
.he{height:110.095052pt;}
.h1{height:114.750000pt;}
.h2{height:129.093750pt;}
.h0{height:1122.666667pt;}
.w3{width:148.000000pt;}
.w2{width:297.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x32{left:47.050575pt;}
.x30{left:50.156914pt;}
.x2f{left:52.252098pt;}
.x31{left:53.800713pt;}
.x35{left:55.344772pt;}
.x33{left:61.575668pt;}
.x34{left:64.691116pt;}
.x2e{left:71.808167pt;}
.x2c{left:83.217812pt;}
.x12{left:87.000000pt;}
.x13{left:92.769104pt;}
.xf{left:96.000000pt;}
.x2b{left:99.000000pt;}
.x3{left:105.132620pt;}
.x5{left:113.473440pt;}
.x37{left:118.114065pt;}
.x1f{left:119.039846pt;}
.x10{left:120.000000pt;}
.x2a{left:122.558401pt;}
.x2{left:124.828909pt;}
.x1d{left:126.572073pt;}
.x29{left:127.553518pt;}
.x14{left:132.425323pt;}
.x11{left:144.000000pt;}
.x38{left:160.398247pt;}
.x36{left:161.950981pt;}
.x6{left:166.498833pt;}
.x17{left:169.322937pt;}
.x19{left:170.745903pt;}
.x16{left:174.750786pt;}
.x1e{left:176.411919pt;}
.x4{left:181.799614pt;}
.x22{left:194.696098pt;}
.x1a{left:197.532036pt;}
.x18{left:201.862114pt;}
.x23{left:215.435356pt;}
.x26{left:217.776176pt;}
.x28{left:223.661919pt;}
.x25{left:227.107224pt;}
.x27{left:228.000778pt;}
.x15{left:229.439255pt;}
.x1b{left:235.106247pt;}
.x24{left:238.116989pt;}
.x21{left:243.788864pt;}
.x1{left:247.155075pt;}
.x20{left:256.240036pt;}
.x1c{left:260.228317pt;}
.x7{left:318.584760pt;}
.x9{left:392.824130pt;}
.x2d{left:397.000000pt;}
.xc{left:417.880460pt;}
.x8{left:426.046480pt;}
.xb{left:545.262450pt;}
.xd{left:550.483980pt;}
.xa{left:554.554140pt;}
.xe{left:579.001560pt;}
}




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