
    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_dd8cbb8b32d41af7180b1e9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_f2128affb61ac153d1d8c299.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_8841f194c59db331eee8689e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_df6e8c34bdbd3da7842ffc8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_54ba676b5ae7d0f744cd6939.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6bc83d7a4be8a092cfb42e8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ba06d98cc42f098ae5294750.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8f7fb70baba3b1389280263.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_52041bb0b319a718205b432f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.144415,-0.204070,0.204070,0.144415,0,0);-ms-transform:matrix(0.144415,-0.204070,0.204070,0.144415,0,0);-webkit-transform:matrix(0.144415,-0.204070,0.204070,0.144415,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-32.615982px;}
.v4{vertical-align:-21.816001px;}
.v2{vertical-align:-10.799973px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.799973px;}
.v5{vertical-align:19.998004px;}
.v1{vertical-align:21.816001px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000011px;}
.ls7{letter-spacing:0.005856px;}
.lsc{letter-spacing:0.005865px;}
.ls6{letter-spacing:0.005948px;}
.lsa{letter-spacing:0.005957px;}
.ls8{letter-spacing:0.005994px;}
.ls11{letter-spacing:0.006000px;}
.ls15{letter-spacing:0.006003px;}
.ls14{letter-spacing:0.006005px;}
.lse{letter-spacing:0.006017px;}
.ls5{letter-spacing:0.006040px;}
.lsb{letter-spacing:0.006048px;}
.lsd{letter-spacing:0.017989px;}
.ls13{letter-spacing:0.035999px;}
.lsf{letter-spacing:1.296000px;}
.ls10{letter-spacing:2.664000px;}
.ls12{letter-spacing:6.029995px;}
.ls16{letter-spacing:7.242004px;}
.ls9{letter-spacing:10.224000px;}
.ls3{letter-spacing:107.988004px;}
.ls2{letter-spacing:108.000000px;}
.ls0{letter-spacing:246.528000px;}
.ls1{letter-spacing:849.096000px;}
.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;}
}
.wsd{word-spacing:-36.000000px;}
.ws10{word-spacing:-33.000000px;}
.ws8{word-spacing:-24.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws12{word-spacing:-10.500000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:36.000000px;}
.ws13{word-spacing:91.668000px;}
.wsc{word-spacing:91.692013px;}
.ws2{word-spacing:91.703997px;}
.ws3{word-spacing:91.728000px;}
.ws5{word-spacing:111.528000px;}
.wse{word-spacing:307.692013px;}
.ws7{word-spacing:307.728000px;}
.ws14{word-spacing:1007.352000px;}
.wsf{word-spacing:1325.796000px;}
.wsa{word-spacing:1566.000000px;}
.wsb{word-spacing:1772.784000px;}
.ws9{word-spacing:2683.728000px;}
._1b{margin-left:-5.328000px;}
._10{margin-left:-4.320000px;}
._5{margin-left:-3.240000px;}
._e{margin-left:-2.232000px;}
._2{margin-left:-1.152000px;}
._8{width:1.080000px;}
._f{width:2.160000px;}
._c{width:3.528000px;}
._3{width:5.184000px;}
._7{width:6.912000px;}
._6{width:8.352000px;}
._9{width:9.432000px;}
._4{width:11.016000px;}
._d{width:12.024000px;}
._16{width:13.032000px;}
._11{width:14.256000px;}
._13{width:15.552000px;}
._18{width:16.776000px;}
._17{width:19.008000px;}
._a{width:20.952000px;}
._b{width:21.960000px;}
._23{width:23.328000px;}
._15{width:24.480000px;}
._1{width:25.848000px;}
._1a{width:27.072000px;}
._24{width:29.160000px;}
._14{width:30.240000px;}
._22{width:34.056000px;}
._1d{width:41.688057px;}
._0{width:43.128000px;}
._12{width:44.208000px;}
._19{width:54.000000px;}
._1c{width:69.629979px;}
._21{width:146.016000px;}
._1e{width:174.816000px;}
._20{width:676.872000px;}
._1f{width:883.728000px;}
.fc2{color:transparent;}
.fc1{color:rgb(195,195,195);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:420.000864px;}
.y0{bottom:0.000000px;}
.yf1{bottom:5.068500px;}
.yf5{bottom:5.394000px;}
.y127{bottom:5.611500px;}
.y2{bottom:5.734498px;}
.yf6{bottom:6.793499px;}
.y10c{bottom:6.794998px;}
.y10e{bottom:6.795000px;}
.y121{bottom:6.944999px;}
.y104{bottom:7.278002px;}
.yf3{bottom:9.344999px;}
.y1c{bottom:15.000000px;}
.y103{bottom:26.308502px;}
.yfe{bottom:45.066002px;}
.yf9{bottom:46.465502px;}
.y1{bottom:52.199962px;}
.y1d{bottom:112.919022px;}
.y132{bottom:116.668485px;}
.y7f{bottom:127.573430px;}
.y131{bottom:131.422465px;}
.yaa{bottom:140.236450px;}
.yce{bottom:140.236454px;}
.y98{bottom:142.520920px;}
.y33{bottom:142.942423px;}
.yd8{bottom:142.942429px;}
.yd3{bottom:142.942451px;}
.y40{bottom:142.942474px;}
.y1b{bottom:142.942479px;}
.y5a{bottom:142.942486px;}
.y130{bottom:150.395947px;}
.y7e{bottom:168.075740px;}
.y12f{bottom:171.095974px;}
.y7d{bottom:171.575984px;}
.y7c{bottom:171.892460px;}
.ybf{bottom:178.927460px;}
.ya9{bottom:181.633461px;}
.ycd{bottom:181.633488px;}
.y97{bottom:183.917919px;}
.yd5{bottom:184.339417px;}
.y1a{bottom:184.339421px;}
.ye1{bottom:184.339428px;}
.yd2{bottom:184.339439px;}
.yde{bottom:184.339457px;}
.y3f{bottom:184.339462px;}
.y59{bottom:184.339485px;}
.y12e{bottom:191.795956px;}
.y12d{bottom:212.495948px;}
.y7b{bottom:213.289494px;}
.ybe{bottom:220.324471px;}
.ycc{bottom:223.030430px;}
.ya8{bottom:223.030449px;}
.y96{bottom:225.314919px;}
.ye0{bottom:225.736427px;}
.y3e{bottom:225.736450px;}
.y19{bottom:225.736454px;}
.ye6{bottom:225.736462px;}
.y62{bottom:225.736473px;}
.y58{bottom:225.736490px;}
.y12c{bottom:233.345974px;}
.y149{bottom:245.470459px;}
.y12b{bottom:254.045956px;}
.y7a{bottom:254.686436px;}
.ybd{bottom:261.721458px;}
.y148{bottom:262.274963px;}
.ya7{bottom:264.427460px;}
.y95{bottom:266.711924px;}
.y32{bottom:267.133427px;}
.y18{bottom:267.133432px;}
.y4d{bottom:267.133438px;}
.yd1{bottom:267.133450px;}
.y61{bottom:267.133461px;}
.y3d{bottom:267.133484px;}
.y57{bottom:267.133488px;}
.y12a{bottom:274.745938px;}
.y147{bottom:290.302437px;}
.y77{bottom:295.188732px;}
.y129{bottom:295.445965px;}
.y78{bottom:298.688232px;}
.y76{bottom:298.688976px;}
.y75{bottom:299.005453px;}
.ybc{bottom:303.118469px;}
.y79{bottom:305.688721px;}
.ycb{bottom:305.824448px;}
.ya6{bottom:305.824459px;}
.y94{bottom:308.108922px;}
.yd4{bottom:308.530426px;}
.y17{bottom:308.530430px;}
.yd0{bottom:308.530449px;}
.y31{bottom:308.530460px;}
.ydd{bottom:308.530466px;}
.y3c{bottom:308.530472px;}
.y128{bottom:316.145947px;}
.y146{bottom:331.699448px;}
.y126{bottom:336.845974px;}
.y74{bottom:340.781960px;}
.ybb{bottom:344.515469px;}
.ya5{bottom:347.221458px;}
.y93{bottom:349.505955px;}
.ydb{bottom:349.927437px;}
.y30{bottom:349.927448px;}
.ycf{bottom:349.927454px;}
.y3b{bottom:349.927460px;}
.y16{bottom:349.927464px;}
.y60{bottom:349.927471px;}
.y125{bottom:358.295956px;}
.y189{bottom:363.485939px;}
.y145{bottom:373.096447px;}
.y124{bottom:378.995938px;}
.y73{bottom:381.284237px;}
.y72{bottom:384.784481px;}
.y71{bottom:385.100956px;}
.yba{bottom:385.912468px;}
.yca{bottom:388.618446px;}
.ya4{bottom:388.618464px;}
.y92{bottom:390.902943px;}
.y4c{bottom:391.324448px;}
.y15{bottom:391.324452px;}
.y56{bottom:391.324459px;}
.y3a{bottom:391.324471px;}
.y2f{bottom:391.324482px;}
.ye5{bottom:391.324488px;}
.y123{bottom:399.695965px;}
.y188{bottom:404.882950px;}
.y144{bottom:414.493446px;}
.y122{bottom:420.395947px;}
.y70{bottom:425.603236px;}
.yb9{bottom:427.309473px;}
.y6f{bottom:429.103480px;}
.y6e{bottom:429.419957px;}
.yc9{bottom:430.015457px;}
.ya3{bottom:430.015461px;}
.y91{bottom:432.299950px;}
.y4b{bottom:432.721436px;}
.yda{bottom:432.721447px;}
.y39{bottom:432.721458px;}
.y2e{bottom:432.721470px;}
.y14{bottom:432.721476px;}
.y63{bottom:432.721481px;}
.ye4{bottom:432.721486px;}
.y120{bottom:441.095939px;}
.y187{bottom:446.279949px;}
.y160{bottom:448.390461px;}
.y143{bottom:455.890451px;}
.y11f{bottom:461.945965px;}
.yb8{bottom:468.706471px;}
.y6d{bottom:470.816945px;}
.yc8{bottom:471.412457px;}
.ya2{bottom:471.412468px;}
.y15f{bottom:472.169955px;}
.y90{bottom:473.696960px;}
.yd7{bottom:474.118446px;}
.y2d{bottom:474.118458px;}
.y55{bottom:474.118464px;}
.y38{bottom:474.118469px;}
.y13{bottom:474.118474px;}
.y11e{bottom:482.645947px;}
.y186{bottom:487.676949px;}
.y10a{bottom:490.838978px;}
.y142{bottom:497.287449px;}
.y15e{bottom:499.618449px;}
.y11d{bottom:503.345952px;}
.y108{bottom:508.393455px;}
.y109{bottom:508.393458px;}
.y182{bottom:508.997958px;}
.yb7{bottom:510.103459px;}
.y6a{bottom:511.319241px;}
.y18d{bottom:512.686443px;}
.ya1{bottom:512.809456px;}
.y6b{bottom:514.818741px;}
.y69{bottom:514.819485px;}
.y8f{bottom:515.093960px;}
.y68{bottom:515.135961px;}
.yd6{bottom:515.515434px;}
.y2c{bottom:515.515446px;}
.yd9{bottom:515.515451px;}
.y4a{bottom:515.515457px;}
.y12{bottom:515.515461px;}
.y37{bottom:515.515469px;}
.ye7{bottom:515.515480px;}
.y6c{bottom:521.819229px;}
.y11c{bottom:524.045956px;}
.y15d{bottom:527.066966px;}
.y107{bottom:527.366953px;}
.y181{bottom:527.971461px;}
.y141{bottom:528.334446px;}
.y185{bottom:529.073954px;}
.y11b{bottom:544.745961px;}
.y180{bottom:546.944964px;}
.y106{bottom:548.065470px;}
.yb6{bottom:551.500447px;}
.ya0{bottom:554.206444px;}
.yc7{bottom:554.206461px;}
.y15c{bottom:554.515460px;}
.y18c{bottom:555.374949px;}
.y8e{bottom:556.490959px;}
.y49{bottom:556.912445px;}
.y5f{bottom:556.912449px;}
.ydc{bottom:556.912457px;}
.y36{bottom:556.912468px;}
.y2b{bottom:556.912479px;}
.y11{bottom:556.912485px;}
.y11a{bottom:565.445965px;}
.y17f{bottom:565.918468px;}
.y140{bottom:569.731453px;}
.y184{bottom:570.470952px;}
.y14b{bottom:571.271946px;}
.y102{bottom:573.038956px;}
.y105{bottom:573.038959px;}
.y15b{bottom:581.963954px;}
.y14d{bottom:586.271946px;}
.y17e{bottom:586.391948px;}
.y183{bottom:587.275452px;}
.y119{bottom:587.645947px;}
.y101{bottom:592.012453px;}
.yb5{bottom:592.897476px;}
.yc6{bottom:595.603459px;}
.y9f{bottom:595.603477px;}
.y18b{bottom:596.771946px;}
.y8d{bottom:597.887964px;}
.y54{bottom:598.309444px;}
.y48{bottom:598.309456px;}
.y2a{bottom:598.309467px;}
.y35{bottom:598.309473px;}
.y5e{bottom:598.309479px;}
.y10{bottom:598.309483px;}
.y17d{bottom:605.365451px;}
.y118{bottom:608.345952px;}
.y14a{bottom:608.774963px;}
.y15a{bottom:609.412459px;}
.y13f{bottom:611.128441px;}
.y100{bottom:612.710958px;}
.y170{bottom:621.508481px;}
.y14c{bottom:623.774963px;}
.y17c{bottom:624.338954px;}
.y117{bottom:629.045956px;}
.y18a{bottom:634.274963px;}
.yb4{bottom:634.294464px;}
.y16f{bottom:636.262462px;}
.y159{bottom:636.860965px;}
.yc5{bottom:637.000447px;}
.y9e{bottom:637.000465px;}
.yfd{bottom:637.684456px;}
.yff{bottom:637.684459px;}
.y8c{bottom:639.284962px;}
.y47{bottom:639.706444px;}
.y29{bottom:639.706455px;}
.yf{bottom:639.706461px;}
.y5d{bottom:639.706467px;}
.y34{bottom:639.706471px;}
.y17b{bottom:643.312457px;}
.y116{bottom:649.745961px;}
.y13e{bottom:652.525452px;}
.y16e{bottom:655.235965px;}
.y158{bottom:655.834456px;}
.yfc{bottom:656.657965px;}
.y17a{bottom:663.785960px;}
.y115{bottom:670.445954px;}
.y16d{bottom:674.209445px;}
.yb3{bottom:675.691452px;}
.yfb{bottom:677.356459px;}
.y9d{bottom:678.397453px;}
.yc4{bottom:678.397480px;}
.y8b{bottom:680.681974px;}
.y28{bottom:681.103443px;}
.y53{bottom:681.103449px;}
.y46{bottom:681.103455px;}
.ye{bottom:681.103459px;}
.y67{bottom:681.103466px;}
.y179{bottom:682.759452px;}
.y157{bottom:683.282962px;}
.y114{bottom:691.145958px;}
.y16c{bottom:693.182948px;}
.y13d{bottom:693.922451px;}
.y178{bottom:701.732955px;}
.yf8{bottom:702.329956px;}
.yfa{bottom:702.329959px;}
.y156{bottom:706.531457px;}
.y113{bottom:711.845952px;}
.y16b{bottom:712.156451px;}
.yb2{bottom:717.088440px;}
.y9c{bottom:719.794464px;}
.y177{bottom:720.706458px;}
.yf7{bottom:721.303459px;}
.y8a{bottom:722.078962px;}
.y5c{bottom:722.500443px;}
.y50{bottom:722.500447px;}
.y45{bottom:722.500454px;}
.yd{bottom:722.500460px;}
.y66{bottom:722.500465px;}
.y27{bottom:722.500477px;}
.y155{bottom:729.779958px;}
.y16a{bottom:731.129954px;}
.y112{bottom:732.545956px;}
.y13c{bottom:735.319450px;}
.y176{bottom:741.179961px;}
.yf4{bottom:742.001959px;}
.y154{bottom:753.028459px;}
.y111{bottom:753.245955px;}
.yb1{bottom:758.485474px;}
.y169{bottom:760.078460px;}
.y175{bottom:760.153459px;}
.y9b{bottom:761.191452px;}
.y89{bottom:763.475950px;}
.y44{bottom:763.897453px;}
.yc{bottom:763.897458px;}
.y26{bottom:763.897465px;}
.y65{bottom:763.897470px;}
.y5b{bottom:763.897476px;}
.yf2{bottom:766.975459px;}
.y153{bottom:772.001959px;}
.y110{bottom:773.945954px;}
.y13b{bottom:776.716455px;}
.y168{bottom:779.051951px;}
.y174{bottom:779.126956px;}
.yf0{bottom:792.475459px;}
.y10f{bottom:794.645957px;}
.y167{bottom:798.025455px;}
.y173{bottom:798.100456px;}
.yb0{bottom:799.882462px;}
.y9a{bottom:802.588463px;}
.y88{bottom:804.872961px;}
.y25{bottom:805.294453px;}
.yb{bottom:805.294458px;}
.y4f{bottom:805.294464px;}
.y64{bottom:805.294468px;}
.y10d{bottom:816.845956px;}
.y166{bottom:816.998958px;}
.y13a{bottom:818.113453px;}
.y172{bottom:818.573956px;}
.y10b{bottom:839.045958px;}
.yef{bottom:839.791460px;}
.y152{bottom:839.791466px;}
.y171{bottom:840.772456px;}
.yaf{bottom:841.279449px;}
.yc3{bottom:843.985451px;}
.y165{bottom:844.447457px;}
.y99{bottom:845.399963px;}
.y87{bottom:846.269949px;}
.y4e{bottom:846.691452px;}
.ya{bottom:846.691456px;}
.y24{bottom:846.691463px;}
.ye2{bottom:846.691469px;}
.y139{bottom:859.510464px;}
.y164{bottom:863.420955px;}
.yee{bottom:881.188448px;}
.y151{bottom:881.188465px;}
.y163{bottom:882.394455px;}
.yae{bottom:882.676460px;}
.yc2{bottom:885.382462px;}
.y86{bottom:887.666960px;}
.y23{bottom:888.088451px;}
.ye3{bottom:888.088457px;}
.y43{bottom:888.088463px;}
.y9{bottom:888.088467px;}
.y138{bottom:900.907459px;}
.y162{bottom:901.367955px;}
.y161{bottom:921.841455px;}
.yed{bottom:922.585459px;}
.y150{bottom:922.585464px;}
.yad{bottom:924.073448px;}
.yc1{bottom:926.779449px;}
.y85{bottom:929.063959px;}
.y42{bottom:929.485451px;}
.y8{bottom:929.485455px;}
.y22{bottom:929.485462px;}
.y52{bottom:929.485468px;}
.y137{bottom:943.718960px;}
.yec{bottom:963.982458px;}
.y14f{bottom:963.982470px;}
.yac{bottom:966.884960px;}
.yc0{bottom:968.176460px;}
.y84{bottom:970.460958px;}
.y21{bottom:970.882462px;}
.y7{bottom:970.882466px;}
.ydf{bottom:970.882467px;}
.y136{bottom:986.407459px;}
.yeb{bottom:1005.379457px;}
.y14e{bottom:1005.379467px;}
.yab{bottom:1010.987961px;}
.y83{bottom:1011.857964px;}
.y20{bottom:1012.279461px;}
.y51{bottom:1012.279465px;}
.y6{bottom:1012.279467px;}
.y135{bottom:1027.804464px;}
.yea{bottom:1046.776463px;}
.y82{bottom:1053.254961px;}
.y41{bottom:1053.676460px;}
.y5{bottom:1053.676465px;}
.y1f{bottom:1053.676466px;}
.y134{bottom:1069.201462px;}
.ye9{bottom:1088.173460px;}
.y81{bottom:1094.651962px;}
.y1e{bottom:1095.073464px;}
.y4{bottom:1095.073465px;}
.y133{bottom:1100.248462px;}
.ye8{bottom:1133.668463px;}
.y80{bottom:1136.153987px;}
.y3{bottom:1136.470463px;}
.h1e{height:21.973500px;}
.h2a{height:23.473500px;}
.h23{height:23.698500px;}
.h26{height:23.699999px;}
.h27{height:23.700000px;}
.h2{height:23.771999px;}
.h29{height:23.849999px;}
.h2c{height:25.198500px;}
.h28{height:25.199999px;}
.h21{height:26.250000px;}
.h20{height:28.500000px;}
.hf{height:38.100586px;}
.h24{height:44.730469px;}
.h22{height:45.826172px;}
.h3{height:47.988281px;}
.h4{height:48.796875px;}
.ha{height:49.992188px;}
.hd{height:50.800781px;}
.h2b{height:52.646484px;}
.h2d{height:56.850543px;}
.h1d{height:56.929688px;}
.h1f{height:57.911133px;}
.h8{height:62.578125px;}
.h7{height:63.175781px;}
.h25{height:63.370502px;}
.h6{height:63.933174px;}
.h5{height:63.933188px;}
.hb{height:63.933197px;}
.h1b{height:181.324865px;}
.h1a{height:189.241485px;}
.h17{height:308.437858px;}
.h18{height:316.353733px;}
.h16{height:316.354477px;}
.h19{height:318.937846px;}
.h15{height:394.533362px;}
.h14{height:402.449982px;}
.h9{height:438.047776px;}
.h13{height:438.852362px;}
.h12{height:446.768981px;}
.he{height:524.568366px;}
.h10{height:532.484241px;}
.hc{height:532.484985px;}
.h11{height:535.068355px;}
.h1c{height:1153.819488px;}
.h0{height:1261.274963px;}
.h1{height:1261.500000px;}
.w2{width:10.323000px;}
.w14{width:19.446000px;}
.w4{width:20.017124px;}
.wa{width:20.300625px;}
.w9{width:21.058875px;}
.wb{width:21.817125px;}
.w12{width:25.844999px;}
.w7{width:27.067500px;}
.w8{width:27.304499px;}
.w10{width:28.078500px;}
.wf{width:28.404001px;}
.we{width:28.731375px;}
.wc{width:29.089499px;}
.w3{width:29.844000px;}
.wd{width:30.547500px;}
.w5{width:31.822500px;}
.w11{width:34.388998px;}
.w30{width:43.875000px;}
.w6{width:46.602000px;}
.w3a{width:49.500000px;}
.w3b{width:50.399998px;}
.w38{width:52.725002px;}
.w15{width:54.015003px;}
.w13{width:55.737001px;}
.w3c{width:56.324999px;}
.w3d{width:59.850002px;}
.w41{width:60.600002px;}
.w1d{width:64.574999px;}
.w37{width:66.000000px;}
.w24{width:66.750000px;}
.w28{width:66.824999px;}
.w3e{width:67.500000px;}
.w1f{width:67.800001px;}
.w39{width:68.250000px;}
.w1e{width:69.000000px;}
.w2c{width:69.074999px;}
.w44{width:71.024998px;}
.w42{width:71.774998px;}
.w19{width:72.975002px;}
.w43{width:73.274998px;}
.w2d{width:75.149998px;}
.w3f{width:76.800001px;}
.w25{width:77.399998px;}
.w27{width:79.050001px;}
.w36{width:80.625000px;}
.w2e{width:83.699999px;}
.w40{width:85.050001px;}
.w2f{width:91.199999px;}
.w18{width:92.100002px;}
.w32{width:101.625000px;}
.w1a{width:105.000000px;}
.w1b{width:108.075005px;}
.w1c{width:109.875000px;}
.w29{width:110.774998px;}
.w22{width:129.000000px;}
.w31{width:130.200005px;}
.w23{width:130.575005px;}
.w35{width:142.049995px;}
.w17{width:195.375000px;}
.w21{width:204.974991px;}
.w33{width:221.924995px;}
.w2b{width:279.075005px;}
.w16{width:316.950005px;}
.w20{width:384.150009px;}
.w34{width:463.425018px;}
.w2a{width:601.500000px;}
.w26{width:683.400009px;}
.w1{width:892.500000px;}
.w0{width:892.574982px;}
.x0{left:0.000000px;}
.xa{left:6.890625px;}
.x8{left:9.187500px;}
.x39{left:11.236500px;}
.x4b{left:12.637500px;}
.x35{left:13.746000px;}
.x47{left:14.812500px;}
.x3b{left:15.937500px;}
.x37{left:16.972500px;}
.x36{left:19.096500px;}
.x3c{left:20.634000px;}
.x38{left:21.997501px;}
.x3a{left:24.060001px;}
.x2f{left:25.181999px;}
.x2e{left:26.383500px;}
.x48{left:28.222500px;}
.x34{left:29.460000px;}
.x46{left:31.560001px;}
.x45{left:33.660002px;}
.x56{left:35.287500px;}
.x41{left:36.432001px;}
.x31{left:37.531501px;}
.x59{left:39.773999px;}
.x58{left:40.950000px;}
.x4{left:42.974985px;}
.x5a{left:46.537500px;}
.x42{left:47.881500px;}
.x57{left:50.662500px;}
.x6{left:53.630997px;}
.x2b{left:55.288500px;}
.x3f{left:61.007999px;}
.x3{left:62.754001px;}
.x2{left:71.876999px;}
.x2c{left:106.500000px;}
.x5{left:112.068053px;}
.x29{left:113.808000px;}
.x4f{left:124.687500px;}
.x13{left:146.998501px;}
.x27{left:148.152002px;}
.x14{left:160.764376px;}
.x50{left:172.574999px;}
.x3d{left:182.550001px;}
.x5b{left:188.175001px;}
.x16{left:190.009501px;}
.x5c{left:191.150995px;}
.x2d{left:195.600002px;}
.x17{left:203.775375px;}
.x51{left:244.725002px;}
.x28{left:265.575005px;}
.x4a{left:279.694505px;}
.x40{left:308.549995px;}
.x49{left:312.715494px;}
.x52{left:325.424995px;}
.x5d{left:328.799995px;}
.x7{left:343.387505px;}
.x1f{left:353.962509px;}
.x9{left:357.153379px;}
.xb{left:365.055872px;}
.x20{left:367.728384px;}
.x18{left:375.262505px;}
.x5e{left:378.525009px;}
.xc{left:382.467004px;}
.x19{left:389.731879px;}
.x21{left:393.042244px;}
.xd{left:396.232879px;}
.x4c{left:400.762505px;}
.x1a{left:406.349373px;}
.x53{left:413.625000px;}
.x1b{left:423.760506px;}
.xe{left:430.721375px;}
.x1c{left:434.986881px;}
.x26{left:436.564490px;}
.x22{left:438.113844px;}
.x1{left:441.126013px;}
.xf{left:443.377510px;}
.x15{left:447.480011px;}
.x23{left:450.770209px;}
.x1d{left:452.909906px;}
.x10{left:454.603885px;}
.x1e{left:462.402181px;}
.x11{left:464.854410px;}
.x24{left:466.783504px;}
.x30{left:472.650009px;}
.x12{left:474.346686px;}
.x5f{left:490.275009px;}
.x4d{left:507.637505px;}
.x25{left:511.615505px;}
.x60{left:537.675018px;}
.x54{left:581.699982px;}
.x3e{left:584.925018px;}
.x61{left:591.000000px;}
.x2a{left:597.300018px;}
.x4e{left:615.412491px;}
.x43{left:648.750000px;}
.x32{left:662.099991px;}
.x55{left:680.324982px;}
.x44{left:712.500000px;}
.x62{left:713.849991px;}
.x63{left:717.375000px;}
.x33{left:723.675018px;}
@media print{
.v6{vertical-align:-28.991984pt;}
.v4{vertical-align:-19.392001pt;}
.v2{vertical-align:-9.599976pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.599976pt;}
.v5{vertical-align:17.776004pt;}
.v1{vertical-align:19.392001pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000010pt;}
.ls7{letter-spacing:0.005206pt;}
.lsc{letter-spacing:0.005214pt;}
.ls6{letter-spacing:0.005287pt;}
.lsa{letter-spacing:0.005295pt;}
.ls8{letter-spacing:0.005328pt;}
.ls11{letter-spacing:0.005333pt;}
.ls15{letter-spacing:0.005336pt;}
.ls14{letter-spacing:0.005338pt;}
.lse{letter-spacing:0.005348pt;}
.ls5{letter-spacing:0.005368pt;}
.lsb{letter-spacing:0.005376pt;}
.lsd{letter-spacing:0.015990pt;}
.ls13{letter-spacing:0.031999pt;}
.lsf{letter-spacing:1.152000pt;}
.ls10{letter-spacing:2.368000pt;}
.ls12{letter-spacing:5.359996pt;}
.ls16{letter-spacing:6.437337pt;}
.ls9{letter-spacing:9.088000pt;}
.ls3{letter-spacing:95.989337pt;}
.ls2{letter-spacing:96.000000pt;}
.ls0{letter-spacing:219.136000pt;}
.ls1{letter-spacing:754.752000pt;}
.wsd{word-spacing:-32.000000pt;}
.ws10{word-spacing:-29.333333pt;}
.ws8{word-spacing:-21.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.666667pt;}
.ws0{word-spacing:-10.666667pt;}
.ws12{word-spacing:-9.333333pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:32.000000pt;}
.ws13{word-spacing:81.482667pt;}
.wsc{word-spacing:81.504012pt;}
.ws2{word-spacing:81.514664pt;}
.ws3{word-spacing:81.536000pt;}
.ws5{word-spacing:99.136000pt;}
.wse{word-spacing:273.504012pt;}
.ws7{word-spacing:273.536000pt;}
.ws14{word-spacing:895.424000pt;}
.wsf{word-spacing:1178.485333pt;}
.wsa{word-spacing:1392.000000pt;}
.wsb{word-spacing:1575.808000pt;}
.ws9{word-spacing:2385.536000pt;}
._1b{margin-left:-4.736000pt;}
._10{margin-left:-3.840000pt;}
._5{margin-left:-2.880000pt;}
._e{margin-left:-1.984000pt;}
._2{margin-left:-1.024000pt;}
._8{width:0.960000pt;}
._f{width:1.920000pt;}
._c{width:3.136000pt;}
._3{width:4.608000pt;}
._7{width:6.144000pt;}
._6{width:7.424000pt;}
._9{width:8.384000pt;}
._4{width:9.792000pt;}
._d{width:10.688000pt;}
._16{width:11.584000pt;}
._11{width:12.672000pt;}
._13{width:13.824000pt;}
._18{width:14.912000pt;}
._17{width:16.896000pt;}
._a{width:18.624000pt;}
._b{width:19.520000pt;}
._23{width:20.736000pt;}
._15{width:21.760000pt;}
._1{width:22.976000pt;}
._1a{width:24.064000pt;}
._24{width:25.920000pt;}
._14{width:26.880000pt;}
._22{width:30.272000pt;}
._1d{width:37.056050pt;}
._0{width:38.336000pt;}
._12{width:39.296000pt;}
._19{width:48.000000pt;}
._1c{width:61.893315pt;}
._21{width:129.792000pt;}
._1e{width:155.392000pt;}
._20{width:601.664000pt;}
._1f{width:785.536000pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:373.334101pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:4.505333pt;}
.yf5{bottom:4.794666pt;}
.y127{bottom:4.988000pt;}
.y2{bottom:5.097332pt;}
.yf6{bottom:6.038666pt;}
.y10c{bottom:6.039998pt;}
.y10e{bottom:6.040000pt;}
.y121{bottom:6.173332pt;}
.y104{bottom:6.469335pt;}
.yf3{bottom:8.306666pt;}
.y1c{bottom:13.333333pt;}
.y103{bottom:23.385335pt;}
.yfe{bottom:40.058669pt;}
.yf9{bottom:41.302668pt;}
.y1{bottom:46.399966pt;}
.y1d{bottom:100.372464pt;}
.y132{bottom:103.705320pt;}
.y7f{bottom:113.398604pt;}
.y131{bottom:116.819969pt;}
.yaa{bottom:124.654622pt;}
.yce{bottom:124.654626pt;}
.y98{bottom:126.685262pt;}
.y33{bottom:127.059931pt;}
.yd8{bottom:127.059937pt;}
.yd3{bottom:127.059957pt;}
.y40{bottom:127.059977pt;}
.y1b{bottom:127.059981pt;}
.y5a{bottom:127.059987pt;}
.y130{bottom:133.685286pt;}
.y7e{bottom:149.400658pt;}
.y12f{bottom:152.085311pt;}
.y7d{bottom:152.511986pt;}
.y7c{bottom:152.793298pt;}
.ybf{bottom:159.046631pt;}
.ya9{bottom:161.451965pt;}
.ycd{bottom:161.451989pt;}
.y97{bottom:163.482595pt;}
.yd5{bottom:163.857259pt;}
.y1a{bottom:163.857263pt;}
.ye1{bottom:163.857269pt;}
.yd2{bottom:163.857279pt;}
.yde{bottom:163.857295pt;}
.y3f{bottom:163.857300pt;}
.y59{bottom:163.857320pt;}
.y12e{bottom:170.485294pt;}
.y12d{bottom:188.885287pt;}
.y7b{bottom:189.590661pt;}
.ybe{bottom:195.843974pt;}
.ycc{bottom:198.249271pt;}
.ya8{bottom:198.249288pt;}
.y96{bottom:200.279928pt;}
.ye0{bottom:200.654602pt;}
.y3e{bottom:200.654622pt;}
.y19{bottom:200.654626pt;}
.ye6{bottom:200.654633pt;}
.y62{bottom:200.654643pt;}
.y58{bottom:200.654658pt;}
.y12c{bottom:207.418644pt;}
.y149{bottom:218.195964pt;}
.y12b{bottom:225.818628pt;}
.y7a{bottom:226.387943pt;}
.ybd{bottom:232.641296pt;}
.y148{bottom:233.133301pt;}
.ya7{bottom:235.046631pt;}
.y95{bottom:237.077265pt;}
.y32{bottom:237.451935pt;}
.y18{bottom:237.451940pt;}
.y4d{bottom:237.451945pt;}
.yd1{bottom:237.451955pt;}
.y61{bottom:237.451965pt;}
.y3d{bottom:237.451986pt;}
.y57{bottom:237.451989pt;}
.y12a{bottom:244.218611pt;}
.y147{bottom:258.046611pt;}
.y77{bottom:262.389984pt;}
.y129{bottom:262.618636pt;}
.y78{bottom:265.500651pt;}
.y76{bottom:265.501312pt;}
.y75{bottom:265.782625pt;}
.ybc{bottom:269.438639pt;}
.y79{bottom:271.723307pt;}
.ycb{bottom:271.843953pt;}
.ya6{bottom:271.843964pt;}
.y94{bottom:273.874597pt;}
.yd4{bottom:274.249268pt;}
.y17{bottom:274.249271pt;}
.yd0{bottom:274.249288pt;}
.y31{bottom:274.249298pt;}
.ydd{bottom:274.249303pt;}
.y3c{bottom:274.249308pt;}
.y128{bottom:281.018620pt;}
.y146{bottom:294.843953pt;}
.y126{bottom:299.418644pt;}
.y74{bottom:302.917297pt;}
.ybb{bottom:306.235972pt;}
.ya5{bottom:308.641296pt;}
.y93{bottom:310.671960pt;}
.ydb{bottom:311.046611pt;}
.y30{bottom:311.046621pt;}
.ycf{bottom:311.046626pt;}
.y3b{bottom:311.046631pt;}
.y16{bottom:311.046635pt;}
.y60{bottom:311.046641pt;}
.y125{bottom:318.485294pt;}
.y189{bottom:323.098612pt;}
.y145{bottom:331.641286pt;}
.y124{bottom:336.885278pt;}
.y73{bottom:338.919322pt;}
.y72{bottom:342.030650pt;}
.y71{bottom:342.311961pt;}
.yba{bottom:343.033305pt;}
.yca{bottom:345.438619pt;}
.ya4{bottom:345.438634pt;}
.y92{bottom:347.469283pt;}
.y4c{bottom:347.843953pt;}
.y15{bottom:347.843957pt;}
.y56{bottom:347.843964pt;}
.y3a{bottom:347.843974pt;}
.y2f{bottom:347.843984pt;}
.ye5{bottom:347.843989pt;}
.y123{bottom:355.285302pt;}
.y188{bottom:359.895955pt;}
.y144{bottom:368.438619pt;}
.y122{bottom:373.685286pt;}
.y70{bottom:378.313988pt;}
.yb9{bottom:379.830643pt;}
.y6f{bottom:381.425316pt;}
.y6e{bottom:381.706628pt;}
.yc9{bottom:382.235962pt;}
.ya3{bottom:382.235966pt;}
.y91{bottom:384.266622pt;}
.y4b{bottom:384.641276pt;}
.yda{bottom:384.641286pt;}
.y39{bottom:384.641296pt;}
.y2e{bottom:384.641307pt;}
.y14{bottom:384.641312pt;}
.y63{bottom:384.641317pt;}
.ye4{bottom:384.641321pt;}
.y120{bottom:392.085279pt;}
.y187{bottom:396.693288pt;}
.y160{bottom:398.569299pt;}
.y143{bottom:405.235957pt;}
.y11f{bottom:410.618636pt;}
.yb8{bottom:416.627974pt;}
.y6d{bottom:418.503951pt;}
.yc8{bottom:419.033295pt;}
.ya2{bottom:419.033305pt;}
.y15f{bottom:419.706627pt;}
.y90{bottom:421.063965pt;}
.yd7{bottom:421.438619pt;}
.y2d{bottom:421.438629pt;}
.y55{bottom:421.438634pt;}
.y38{bottom:421.438639pt;}
.y13{bottom:421.438643pt;}
.y11e{bottom:429.018620pt;}
.y186{bottom:433.490621pt;}
.y10a{bottom:436.301314pt;}
.y142{bottom:442.033288pt;}
.y15e{bottom:444.105288pt;}
.y11d{bottom:447.418624pt;}
.y108{bottom:451.905294pt;}
.y109{bottom:451.905296pt;}
.y182{bottom:452.442629pt;}
.yb7{bottom:453.425297pt;}
.y6a{bottom:454.505992pt;}
.y18d{bottom:455.721283pt;}
.ya1{bottom:455.830627pt;}
.y6b{bottom:457.616659pt;}
.y69{bottom:457.617320pt;}
.y8f{bottom:457.861298pt;}
.y68{bottom:457.898632pt;}
.yd6{bottom:458.235942pt;}
.y2c{bottom:458.235952pt;}
.yd9{bottom:458.235957pt;}
.y4a{bottom:458.235962pt;}
.y12{bottom:458.235966pt;}
.y37{bottom:458.235972pt;}
.ye7{bottom:458.235982pt;}
.y6c{bottom:463.839315pt;}
.y11c{bottom:465.818628pt;}
.y15d{bottom:468.503970pt;}
.y107{bottom:468.770625pt;}
.y181{bottom:469.307966pt;}
.y141{bottom:469.630619pt;}
.y185{bottom:470.287959pt;}
.y11b{bottom:484.218632pt;}
.y180{bottom:486.173302pt;}
.y106{bottom:487.169306pt;}
.yb6{bottom:490.222619pt;}
.ya0{bottom:492.627950pt;}
.yc7{bottom:492.627965pt;}
.y15c{bottom:492.902631pt;}
.y18c{bottom:493.666621pt;}
.y8e{bottom:494.658630pt;}
.y49{bottom:495.033285pt;}
.y5f{bottom:495.033288pt;}
.ydc{bottom:495.033295pt;}
.y36{bottom:495.033305pt;}
.y2b{bottom:495.033315pt;}
.y11{bottom:495.033320pt;}
.y11a{bottom:502.618636pt;}
.y17f{bottom:503.038638pt;}
.y140{bottom:506.427958pt;}
.y184{bottom:507.085290pt;}
.y14b{bottom:507.797286pt;}
.y102{bottom:509.367961pt;}
.y105{bottom:509.367963pt;}
.y15b{bottom:517.301292pt;}
.y14d{bottom:521.130619pt;}
.y17e{bottom:521.237287pt;}
.y183{bottom:522.022624pt;}
.y119{bottom:522.351953pt;}
.y101{bottom:526.233292pt;}
.yb5{bottom:527.019979pt;}
.yc6{bottom:529.425297pt;}
.y9f{bottom:529.425313pt;}
.y18b{bottom:530.463952pt;}
.y8d{bottom:531.455968pt;}
.y54{bottom:531.830617pt;}
.y48{bottom:531.830627pt;}
.y2a{bottom:531.830638pt;}
.y35{bottom:531.830643pt;}
.y5e{bottom:531.830648pt;}
.y10{bottom:531.830652pt;}
.y17d{bottom:538.102623pt;}
.y118{bottom:540.751957pt;}
.y14a{bottom:541.133301pt;}
.y15a{bottom:541.699964pt;}
.y13f{bottom:543.225281pt;}
.y100{bottom:544.631963pt;}
.y170{bottom:552.451983pt;}
.y14c{bottom:554.466634pt;}
.y17c{bottom:554.967959pt;}
.y117{bottom:559.151961pt;}
.y18a{bottom:563.799967pt;}
.yb4{bottom:563.817301pt;}
.y16f{bottom:565.566633pt;}
.y159{bottom:566.098635pt;}
.yc5{bottom:566.222619pt;}
.y9e{bottom:566.222636pt;}
.yfd{bottom:566.830627pt;}
.yff{bottom:566.830630pt;}
.y8c{bottom:568.253300pt;}
.y47{bottom:568.627950pt;}
.y29{bottom:568.627960pt;}
.yf{bottom:568.627965pt;}
.y5d{bottom:568.627970pt;}
.y34{bottom:568.627974pt;}
.y17b{bottom:571.833295pt;}
.y116{bottom:577.551965pt;}
.y13e{bottom:580.022624pt;}
.y16e{bottom:582.431969pt;}
.y158{bottom:582.963961pt;}
.yfc{bottom:583.695969pt;}
.y17a{bottom:590.031965pt;}
.y115{bottom:595.951959pt;}
.y16d{bottom:599.297284pt;}
.yb3{bottom:600.614624pt;}
.yfb{bottom:602.094630pt;}
.y9d{bottom:603.019958pt;}
.yc4{bottom:603.019983pt;}
.y8b{bottom:605.050644pt;}
.y28{bottom:605.425283pt;}
.y53{bottom:605.425288pt;}
.y46{bottom:605.425293pt;}
.ye{bottom:605.425297pt;}
.y67{bottom:605.425303pt;}
.y179{bottom:606.897291pt;}
.y157{bottom:607.362633pt;}
.y114{bottom:614.351963pt;}
.y16c{bottom:616.162621pt;}
.y13d{bottom:616.819956pt;}
.y178{bottom:623.762627pt;}
.yf8{bottom:624.293294pt;}
.yfa{bottom:624.293297pt;}
.y156{bottom:628.027962pt;}
.y113{bottom:632.751957pt;}
.y16b{bottom:633.027957pt;}
.yb2{bottom:637.411947pt;}
.y9c{bottom:639.817301pt;}
.y177{bottom:640.627963pt;}
.yf7{bottom:641.158630pt;}
.y8a{bottom:641.847967pt;}
.y5c{bottom:642.222616pt;}
.y50{bottom:642.222619pt;}
.y45{bottom:642.222626pt;}
.yd{bottom:642.222631pt;}
.y66{bottom:642.222636pt;}
.y27{bottom:642.222646pt;}
.y155{bottom:648.693296pt;}
.y16a{bottom:649.893293pt;}
.y112{bottom:651.151961pt;}
.y13c{bottom:653.617289pt;}
.y176{bottom:658.826632pt;}
.yf4{bottom:659.557297pt;}
.y154{bottom:669.358630pt;}
.y111{bottom:669.551960pt;}
.yb1{bottom:674.209310pt;}
.y169{bottom:675.625298pt;}
.y175{bottom:675.691963pt;}
.y9b{bottom:676.614624pt;}
.y89{bottom:678.645289pt;}
.y44{bottom:679.019958pt;}
.yc{bottom:679.019962pt;}
.y26{bottom:679.019969pt;}
.y65{bottom:679.019974pt;}
.y5b{bottom:679.019979pt;}
.yf2{bottom:681.755964pt;}
.y153{bottom:686.223963pt;}
.y110{bottom:687.951959pt;}
.y13b{bottom:690.414627pt;}
.y168{bottom:692.490623pt;}
.y174{bottom:692.557294pt;}
.yf0{bottom:704.422630pt;}
.y10f{bottom:706.351962pt;}
.y167{bottom:709.355960pt;}
.y173{bottom:709.422628pt;}
.yb0{bottom:711.006632pt;}
.y9a{bottom:713.411967pt;}
.y88{bottom:715.442632pt;}
.y25{bottom:715.817291pt;}
.yb{bottom:715.817296pt;}
.y4f{bottom:715.817301pt;}
.y64{bottom:715.817305pt;}
.y10d{bottom:726.085294pt;}
.y166{bottom:726.221296pt;}
.y13a{bottom:727.211959pt;}
.y172{bottom:727.621295pt;}
.y10b{bottom:745.818629pt;}
.yef{bottom:746.481298pt;}
.y152{bottom:746.481303pt;}
.y171{bottom:747.353294pt;}
.yaf{bottom:747.803955pt;}
.yc3{bottom:750.209290pt;}
.y165{bottom:750.619962pt;}
.y99{bottom:751.466634pt;}
.y87{bottom:752.239955pt;}
.y4e{bottom:752.614624pt;}
.ya{bottom:752.614628pt;}
.y24{bottom:752.614634pt;}
.ye2{bottom:752.614639pt;}
.y139{bottom:764.009302pt;}
.y164{bottom:767.485293pt;}
.yee{bottom:783.278620pt;}
.y151{bottom:783.278636pt;}
.y163{bottom:784.350627pt;}
.yae{bottom:784.601298pt;}
.yc2{bottom:787.006632pt;}
.y86{bottom:789.037298pt;}
.y23{bottom:789.411957pt;}
.ye3{bottom:789.411962pt;}
.y43{bottom:789.411967pt;}
.y9{bottom:789.411971pt;}
.y138{bottom:800.806630pt;}
.y162{bottom:801.215960pt;}
.y161{bottom:819.414627pt;}
.yed{bottom:820.075963pt;}
.y150{bottom:820.075968pt;}
.yad{bottom:821.398621pt;}
.yc1{bottom:823.803955pt;}
.y85{bottom:825.834630pt;}
.y42{bottom:826.209290pt;}
.y8{bottom:826.209293pt;}
.y22{bottom:826.209300pt;}
.y52{bottom:826.209305pt;}
.y137{bottom:838.861298pt;}
.yec{bottom:856.873296pt;}
.y14f{bottom:856.873306pt;}
.yac{bottom:859.453298pt;}
.yc0{bottom:860.601298pt;}
.y84{bottom:862.631963pt;}
.y21{bottom:863.006632pt;}
.y7{bottom:863.006636pt;}
.ydf{bottom:863.006638pt;}
.y136{bottom:876.806630pt;}
.yeb{bottom:893.670629pt;}
.y14e{bottom:893.670638pt;}
.yab{bottom:898.655965pt;}
.y83{bottom:899.429301pt;}
.y20{bottom:899.803965pt;}
.y51{bottom:899.803969pt;}
.y6{bottom:899.803970pt;}
.y135{bottom:913.603968pt;}
.yea{bottom:930.467967pt;}
.y82{bottom:936.226632pt;}
.y41{bottom:936.601298pt;}
.y5{bottom:936.601302pt;}
.y1f{bottom:936.601303pt;}
.y134{bottom:950.401300pt;}
.ye9{bottom:967.265298pt;}
.y81{bottom:973.023966pt;}
.y1e{bottom:973.398635pt;}
.y4{bottom:973.398636pt;}
.y133{bottom:977.998633pt;}
.ye8{bottom:1007.705301pt;}
.y80{bottom:1009.914655pt;}
.y3{bottom:1010.195967pt;}
.h1e{height:19.532000pt;}
.h2a{height:20.865334pt;}
.h23{height:21.065333pt;}
.h26{height:21.066666pt;}
.h27{height:21.066667pt;}
.h2{height:21.130666pt;}
.h29{height:21.199999pt;}
.h2c{height:22.398666pt;}
.h28{height:22.399999pt;}
.h21{height:23.333333pt;}
.h20{height:25.333333pt;}
.hf{height:33.867188pt;}
.h24{height:39.760417pt;}
.h22{height:40.734375pt;}
.h3{height:42.656250pt;}
.h4{height:43.375000pt;}
.ha{height:44.437500pt;}
.hd{height:45.156250pt;}
.h2b{height:46.796875pt;}
.h2d{height:50.533816pt;}
.h1d{height:50.604167pt;}
.h1f{height:51.476562pt;}
.h8{height:55.625000pt;}
.h7{height:56.156250pt;}
.h25{height:56.329336pt;}
.h6{height:56.829488pt;}
.h5{height:56.829501pt;}
.hb{height:56.829508pt;}
.h1b{height:161.177658pt;}
.h1a{height:168.214653pt;}
.h17{height:274.166985pt;}
.h18{height:281.203318pt;}
.h16{height:281.203979pt;}
.h19{height:283.500308pt;}
.h15{height:350.696322pt;}
.h14{height:357.733317pt;}
.h9{height:389.375801pt;}
.h13{height:390.090988pt;}
.h12{height:397.127983pt;}
.he{height:466.282992pt;}
.h10{height:473.319326pt;}
.hc{height:473.319987pt;}
.h11{height:475.616315pt;}
.h1c{height:1025.617322pt;}
.h0{height:1121.133301pt;}
.h1{height:1121.333333pt;}
.w2{width:9.176000pt;}
.w14{width:17.285334pt;}
.w4{width:17.792999pt;}
.wa{width:18.045000pt;}
.w9{width:18.719000pt;}
.wb{width:19.393000pt;}
.w12{width:22.973333pt;}
.w7{width:24.060000pt;}
.w8{width:24.270665pt;}
.w10{width:24.958666pt;}
.wf{width:25.248001pt;}
.we{width:25.539000pt;}
.wc{width:25.857333pt;}
.w3{width:26.528000pt;}
.wd{width:27.153333pt;}
.w5{width:28.286667pt;}
.w11{width:30.567998pt;}
.w30{width:39.000000pt;}
.w6{width:41.424000pt;}
.w3a{width:44.000000pt;}
.w3b{width:44.799998pt;}
.w38{width:46.866669pt;}
.w15{width:48.013336pt;}
.w13{width:49.544001pt;}
.w3c{width:50.066666pt;}
.w3d{width:53.200002pt;}
.w41{width:53.866669pt;}
.w1d{width:57.399999pt;}
.w37{width:58.666667pt;}
.w24{width:59.333333pt;}
.w28{width:59.399999pt;}
.w3e{width:60.000000pt;}
.w1f{width:60.266668pt;}
.w39{width:60.666667pt;}
.w1e{width:61.333333pt;}
.w2c{width:61.399999pt;}
.w44{width:63.133331pt;}
.w42{width:63.799998pt;}
.w19{width:64.866669pt;}
.w43{width:65.133331pt;}
.w2d{width:66.799998pt;}
.w3f{width:68.266668pt;}
.w25{width:68.799998pt;}
.w27{width:70.266668pt;}
.w36{width:71.666667pt;}
.w2e{width:74.399999pt;}
.w40{width:75.600001pt;}
.w2f{width:81.066666pt;}
.w18{width:81.866669pt;}
.w32{width:90.333333pt;}
.w1a{width:93.333333pt;}
.w1b{width:96.066671pt;}
.w1c{width:97.666667pt;}
.w29{width:98.466665pt;}
.w22{width:114.666667pt;}
.w31{width:115.733337pt;}
.w23{width:116.066671pt;}
.w35{width:126.266663pt;}
.w17{width:173.666667pt;}
.w21{width:182.199992pt;}
.w33{width:197.266663pt;}
.w2b{width:248.066671pt;}
.w16{width:281.733337pt;}
.w20{width:341.466675pt;}
.w34{width:411.933350pt;}
.w2a{width:534.666667pt;}
.w26{width:607.466675pt;}
.w1{width:793.333333pt;}
.w0{width:793.399984pt;}
.x0{left:0.000000pt;}
.xa{left:6.125000pt;}
.x8{left:8.166667pt;}
.x39{left:9.988000pt;}
.x4b{left:11.233334pt;}
.x35{left:12.218667pt;}
.x47{left:13.166667pt;}
.x3b{left:14.166667pt;}
.x37{left:15.086667pt;}
.x36{left:16.974667pt;}
.x3c{left:18.341333pt;}
.x38{left:19.553334pt;}
.x3a{left:21.386667pt;}
.x2f{left:22.384000pt;}
.x2e{left:23.452000pt;}
.x48{left:25.086667pt;}
.x34{left:26.186666pt;}
.x46{left:28.053334pt;}
.x45{left:29.920001pt;}
.x56{left:31.366667pt;}
.x41{left:32.384001pt;}
.x31{left:33.361334pt;}
.x59{left:35.354666pt;}
.x58{left:36.400000pt;}
.x4{left:38.199987pt;}
.x5a{left:41.366667pt;}
.x42{left:42.561333pt;}
.x57{left:45.033333pt;}
.x6{left:47.671997pt;}
.x2b{left:49.145333pt;}
.x3f{left:54.229333pt;}
.x3{left:55.781334pt;}
.x2{left:63.890666pt;}
.x2c{left:94.666667pt;}
.x5{left:99.616047pt;}
.x29{left:101.162667pt;}
.x4f{left:110.833333pt;}
.x13{left:130.665334pt;}
.x27{left:131.690669pt;}
.x14{left:142.901667pt;}
.x50{left:153.399999pt;}
.x3d{left:162.266668pt;}
.x5b{left:167.266668pt;}
.x16{left:168.897334pt;}
.x5c{left:169.911996pt;}
.x2d{left:173.866669pt;}
.x17{left:181.133667pt;}
.x51{left:217.533335pt;}
.x28{left:236.066671pt;}
.x4a{left:248.617338pt;}
.x40{left:274.266663pt;}
.x49{left:277.969328pt;}
.x52{left:289.266663pt;}
.x5d{left:292.266663pt;}
.x7{left:305.233337pt;}
.x1f{left:314.633341pt;}
.x9{left:317.469671pt;}
.xb{left:324.494109pt;}
.x20{left:326.869675pt;}
.x18{left:333.566671pt;}
.x5e{left:336.466675pt;}
.xc{left:339.970670pt;}
.x19{left:346.428337pt;}
.x21{left:349.370884pt;}
.xd{left:352.207003pt;}
.x4c{left:356.233337pt;}
.x1a{left:361.199443pt;}
.x53{left:367.666667pt;}
.x1b{left:376.676005pt;}
.xe{left:382.863444pt;}
.x1c{left:386.655005pt;}
.x26{left:388.057324pt;}
.x22{left:389.434528pt;}
.x1{left:392.112012pt;}
.xf{left:394.113342pt;}
.x15{left:397.760010pt;}
.x23{left:400.684630pt;}
.x1d{left:402.586583pt;}
.x10{left:404.092342pt;}
.x1e{left:411.024161pt;}
.x11{left:413.203920pt;}
.x24{left:414.918671pt;}
.x30{left:420.133341pt;}
.x12{left:421.641499pt;}
.x5f{left:435.800008pt;}
.x4d{left:451.233337pt;}
.x25{left:454.769338pt;}
.x60{left:477.933350pt;}
.x54{left:517.066650pt;}
.x3e{left:519.933350pt;}
.x61{left:525.333333pt;}
.x2a{left:530.933350pt;}
.x4e{left:547.033325pt;}
.x43{left:576.666667pt;}
.x32{left:588.533325pt;}
.x55{left:604.733317pt;}
.x44{left:633.333333pt;}
.x62{left:634.533325pt;}
.x63{left:637.666667pt;}
.x33{left:643.266683pt;}
}




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