
    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_32e5c5ddd4e8b69d279daae2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5051304ff4b3c2a5f1cd2295.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_74c3345fa51133b4298c00fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ef003839640e98d7a8a87a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_68aa358fe5ad68fb5f60c5db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_7e105d098f779ce7ee818db7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952637;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_3daed96fecfa2a53c3e35939.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_194fa744f19b585e4d61362d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aa785252121f729268e942f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6429889c5d08a0caa17a98a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_21fda7df07fa01041cd8a8aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_49e8da82f3a7619ae8a7ee16.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,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);}
.v3{vertical-align:-50.895235px;}
.v2{vertical-align:-30.172467px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.724139px;}
.lsb{letter-spacing:-0.292200px;}
.lsc{letter-spacing:-0.272400px;}
.ls2{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.048960px;}
.lse{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060480px;}
.ls5{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.543104px;}
.ls6{letter-spacing:0.780480px;}
.ls1{letter-spacing:4.032000px;}
.ls7{letter-spacing:16.145280px;}
.ls9{letter-spacing:37.745280px;}
.ls3{letter-spacing:38.465280px;}
.lsd{letter-spacing:49.068000px;}
.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;}
}
.ws1{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.921280px;}
.ws3{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.204000px;}
.ws6{word-spacing:-12.186000px;}
.wsb{word-spacing:-11.478242px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:9.953738px;}
.ws15{word-spacing:16.467815px;}
.ws12{word-spacing:16.531336px;}
.wsd{word-spacing:30.598058px;}
.wsa{word-spacing:32.217843px;}
.wsc{word-spacing:48.304532px;}
.ws14{word-spacing:48.707890px;}
.wsf{word-spacing:52.970148px;}
.ws13{word-spacing:54.354905px;}
.ws10{word-spacing:54.418426px;}
.ws11{word-spacing:54.450187px;}
.ws17{word-spacing:60.976968px;}
.wse{word-spacing:65.471077px;}
.ws16{word-spacing:67.122623px;}
.ws9{word-spacing:92.524664px;}
._7{margin-left:-6.489360px;}
._8{margin-left:-4.279920px;}
._0{margin-left:-3.002400px;}
._6{margin-left:-1.589760px;}
._5{width:1.195200px;}
._9{width:2.235120px;}
._2{width:3.240000px;}
._1{width:4.428000px;}
._3{width:6.240000px;}
._4{width:7.260000px;}
._a{width:22.264105px;}
._b{width:33.412037px;}
._1c{width:38.795440px;}
._d{width:41.352160px;}
._c{width:44.559970px;}
._12{width:47.196090px;}
._1f{width:48.533304px;}
._1e{width:49.548537px;}
._11{width:53.331763px;}
._f{width:54.812711px;}
._13{width:55.967884px;}
._1d{width:57.821710px;}
._15{width:63.985595px;}
._14{width:65.109008px;}
._10{width:66.792314px;}
._17{width:68.019177px;}
._18{width:77.336797px;}
._20{width:81.084535px;}
._16{width:86.712494px;}
._19{width:89.024658px;}
._1b{width:99.142110px;}
._1a{width:158.113255px;}
._e{width:230.800316px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,21,56);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fs10{font-size:41.288639px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:50.352865px;}
.fse{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fsa{font-size:228.240000px;}
.fs8{font-size:300.240000px;}
.y0{bottom:0.000000px;}
.y166{bottom:2.382042px;}
.y167{bottom:2.382066px;}
.y181{bottom:2.397946px;}
.y16d{bottom:3.176055px;}
.y38{bottom:3.240000px;}
.y186{bottom:3.573061px;}
.y29{bottom:5.760000px;}
.y178{bottom:8.734140px;}
.y163{bottom:9.155002px;}
.y17d{bottom:9.544033px;}
.y173{bottom:9.925160px;}
.y161{bottom:9.941072px;}
.y18f{bottom:10.322165px;}
.y15f{bottom:10.322189px;}
.y175{bottom:15.499158px;}
.y165{bottom:15.507066px;}
.y191{bottom:15.899897px;}
.y16c{bottom:16.277257px;}
.y16e{bottom:16.277281px;}
.y169{bottom:16.277290px;}
.y17f{bottom:16.293171px;}
.y17a{bottom:16.293172px;}
.y185{bottom:16.674263px;}
.y187{bottom:16.674287px;}
.y170{bottom:16.674297px;}
.y18c{bottom:16.694147px;}
.y2f{bottom:18.360000px;}
.y3a{bottom:19.080000px;}
.y177{bottom:21.851225px;}
.y33{bottom:21.960000px;}
.y17c{bottom:22.645236px;}
.y172{bottom:23.042241px;}
.y18a{bottom:23.050183px;}
.y18e{bottom:23.443219px;}
.y37{bottom:25.785000px;}
.y16b{bottom:29.394340px;}
.y184{bottom:29.799286px;}
.y36{bottom:48.285000px;}
.y35{bottom:70.785000px;}
.y34{bottom:93.285000px;}
.y4{bottom:97.125005px;}
.y2d{bottom:104.220000px;}
.y85{bottom:110.016000px;}
.yb5{bottom:111.276000px;}
.y84{bottom:115.236000px;}
.y14d{bottom:120.636000px;}
.y104{bottom:127.116000px;}
.y31{bottom:128.205000px;}
.y83{bottom:128.376000px;}
.y129{bottom:128.916000px;}
.y2b{bottom:131.085000px;}
.yb4{bottom:133.056000px;}
.yee{bottom:133.596000px;}
.y5d{bottom:135.216000px;}
.y20{bottom:139.264499px;}
.y27{bottom:140.616000px;}
.y14c{bottom:142.416000px;}
.y82{bottom:146.736000px;}
.y103{bottom:148.896000px;}
.ycc{bottom:151.950000px;}
.yb3{bottom:154.650000px;}
.y14b{bottom:164.190000px;}
.y81{bottom:165.090000px;}
.y5c{bottom:168.870000px;}
.y109{bottom:169.818041px;}
.yed{bottom:170.310000px;}
.y102{bottom:170.670000px;}
.y128{bottom:172.110000px;}
.y107{bottom:174.014108px;}
.y26{bottom:174.270000px;}
.y10b{bottom:179.888628px;}
.y80{bottom:183.270000px;}
.yec{bottom:183.810000px;}
.y10d{bottom:184.504281px;}
.y108{bottom:184.923900px;}
.y14a{bottom:185.970000px;}
.y7f{bottom:188.490000px;}
.y106{bottom:189.119967px;}
.y10f{bottom:191.637623px;}
.y101{bottom:192.270000px;}
.y127{bottom:193.890000px;}
.y10a{bottom:194.994487px;}
.y17{bottom:196.933500px;}
.y10c{bottom:199.610141px;}
.ya2{bottom:201.630000px;}
.y7e{bottom:202.170000px;}
.y5b{bottom:202.710000px;}
.y10e{bottom:206.743483px;}
.ycb{bottom:206.850000px;}
.y149{bottom:207.570000px;}
.y25{bottom:208.110000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yb2{bottom:210.090000px;}
.y100{bottom:214.050000px;}
.y126{bottom:215.670000px;}
.ya1{bottom:219.990000px;}
.yca{bottom:220.530000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y148{bottom:229.350000px;}
.yb1{bottom:231.870000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yff{bottom:235.830000px;}
.y5a{bottom:236.370000px;}
.y125{bottom:237.450000px;}
.ya0{bottom:238.170000px;}
.yeb{bottom:240.510000px;}
.y24{bottom:241.770000px;}
.y9f{bottom:243.390000px;}
.y147{bottom:251.130000px;}
.y9e{bottom:256.530000px;}
.yfe{bottom:257.610000px;}
.y124{bottom:259.050000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ye9{bottom:262.290000px;}
.yb0{bottom:265.710000px;}
.yea{bottom:268.230000px;}
.y59{bottom:270.030000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y146{bottom:272.910000px;}
.y9d{bottom:274.890000px;}
.y23{bottom:275.430000px;}
.yc9{bottom:277.770000px;}
.yfd{bottom:279.210000px;}
.ye8{bottom:284.070000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y123{bottom:292.890000px;}
.y9c{bottom:293.250000px;}
.y145{bottom:294.510000px;}
.yaf{bottom:294.870000px;}
.yc8{bottom:296.490000px;}
.y9b{bottom:298.470000px;}
.yfc{bottom:300.990000px;}
.y58{bottom:303.870000px;}
.ye7{bottom:305.850000px;}
.y22{bottom:309.270000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y9a{bottom:311.970000px;}
.yc7{bottom:313.770000px;}
.y122{bottom:314.670000px;}
.y7d{bottom:316.110000px;}
.y144{bottom:316.290000px;}
.yfb{bottom:322.770000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ye6{bottom:327.630000px;}
.y30{bottom:333.390000px;}
.y121{bottom:336.270000px;}
.y57{bottom:337.530000px;}
.y15d{bottom:337.710000px;}
.y7c{bottom:337.890000px;}
.y143{bottom:338.070000px;}
.yfa{bottom:344.595000px;}
.ye{bottom:348.133500px;}
.ye5{bottom:349.275000px;}
.y99{bottom:349.635000px;}
.y15c{bottom:354.135000px;}
.y120{bottom:358.095000px;}
.y7b{bottom:359.715000px;}
.y142{bottom:359.895000px;}
.yf9{bottom:366.375000px;}
.y15b{bottom:370.695000px;}
.y56{bottom:371.415000px;}
.y11f{bottom:379.875000px;}
.y7a{bottom:381.495000px;}
.ye4{bottom:383.115000px;}
.y98{bottom:383.295000px;}
.yd{bottom:386.785499px;}
.y15a{bottom:387.075000px;}
.yf8{bottom:387.975000px;}
.y11e{bottom:401.655000px;}
.y79{bottom:403.095000px;}
.y141{bottom:403.275000px;}
.y159{bottom:403.635000px;}
.ye3{bottom:404.715000px;}
.y55{bottom:405.075000px;}
.yc{bottom:408.044999px;}
.yf7{bottom:409.755000px;}
.y97{bottom:416.955000px;}
.y158{bottom:420.015000px;}
.y78{bottom:423.255000px;}
.y140{bottom:425.055000px;}
.yf6{bottom:425.415000px;}
.y105{bottom:425.649856px;}
.ye2{bottom:426.495000px;}
.y11d{bottom:429.195000px;}
.y157{bottom:436.575000px;}
.y54{bottom:438.915000px;}
.y11c{bottom:445.035000px;}
.y32{bottom:445.935000px;}
.y13f{bottom:446.835000px;}
.ye0{bottom:448.275000px;}
.y96{bottom:450.795000px;}
.y156{bottom:452.955000px;}
.ye1{bottom:454.215000px;}
.y77{bottom:459.435000px;}
.y11b{bottom:466.815000px;}
.ydf{bottom:468.435000px;}
.y155{bottom:469.515000px;}
.y53{bottom:472.575000px;}
.y95{bottom:484.455000px;}
.y154{bottom:485.895000px;}
.y13e{bottom:490.215000px;}
.y76{bottom:493.095000px;}
.y11a{bottom:500.475000px;}
.y153{bottom:502.455000px;}
.yb{bottom:502.864502px;}
.yde{bottom:504.435000px;}
.y52{bottom:506.235000px;}
.y13d{bottom:511.995000px;}
.y75{bottom:514.875000px;}
.y94{bottom:518.295000px;}
.ya{bottom:520.864502px;}
.y119{bottom:522.255000px;}
.ydd{bottom:526.215000px;}
.y152{bottom:528.555000px;}
.y190{bottom:529.194586px;}
.y13c{bottom:533.775000px;}
.y73{bottom:536.655000px;}
.y9{bottom:538.864499px;}
.y51{bottom:540.075000px;}
.yae{bottom:540.255000px;}
.y74{bottom:542.595000px;}
.y118{bottom:544.035000px;}
.ydc{bottom:547.995000px;}
.y93{bottom:551.955000px;}
.y13b{bottom:555.375000px;}
.y8{bottom:556.864499px;}
.y72{bottom:558.255000px;}
.y2e{bottom:563.655000px;}
.y117{bottom:565.815000px;}
.y18b{bottom:569.331669px;}
.y18d{bottom:569.331698px;}
.y50{bottom:573.735000px;}
.yad{bottom:573.915000px;}
.y13a{bottom:577.155000px;}
.y71{bottom:580.035000px;}
.ydb{bottom:581.655000px;}
.y116{bottom:587.445000px;}
.y92{bottom:595.545000px;}
.y139{bottom:598.965000px;}
.y2c{bottom:601.305000px;}
.y70{bottom:601.845000px;}
.y4f{bottom:607.605000px;}
.yac{bottom:607.785000px;}
.y188{bottom:611.054632px;}
.y189{bottom:611.054662px;}
.y91{bottom:617.145000px;}
.y138{bottom:620.745000px;}
.y115{bottom:621.285000px;}
.yab{bottom:629.565000px;}
.y6f{bottom:635.505000px;}
.yda{bottom:638.025000px;}
.y90{bottom:638.925000px;}
.y4e{bottom:641.265000px;}
.y137{bottom:642.345000px;}
.y114{bottom:643.065000px;}
.y7{bottom:645.510000px;}
.yaa{bottom:651.165000px;}
.y182{bottom:652.382972px;}
.y183{bottom:652.383002px;}
.y6e{bottom:657.285000px;}
.yd9{bottom:659.625000px;}
.y8e{bottom:660.705000px;}
.y136{bottom:664.125000px;}
.y113{bottom:664.665000px;}
.y8f{bottom:666.645000px;}
.y6{bottom:666.771000px;}
.yc6{bottom:669.525000px;}
.ya9{bottom:672.945000px;}
.y4d{bottom:675.105000px;}
.y6d{bottom:679.065000px;}
.y8d{bottom:682.485000px;}
.y112{bottom:684.825000px;}
.y135{bottom:685.905000px;}
.yd8{bottom:693.465000px;}
.y17e{bottom:694.092438px;}
.y180{bottom:694.092467px;}
.ya8{bottom:694.725000px;}
.y6c{bottom:700.845000px;}
.yc5{bottom:703.185000px;}
.y8c{bottom:704.085000px;}
.y111{bottom:707.685000px;}
.y4c{bottom:708.765000px;}
.yd6{bottom:713.625000px;}
.ya7{bottom:716.505000px;}
.yd7{bottom:719.565000px;}
.y134{bottom:721.005000px;}
.y6b{bottom:722.445000px;}
.y4b{bottom:725.505000px;}
.y5{bottom:726.298500px;}
.y2a{bottom:732.705000px;}
.y179{bottom:734.626765px;}
.y17b{bottom:734.626794px;}
.yc3{bottom:736.845000px;}
.y8b{bottom:737.925000px;}
.ya6{bottom:738.105000px;}
.yc4{bottom:742.785000px;}
.yd5{bottom:749.625000px;}
.y110{bottom:751.965000px;}
.y3{bottom:752.599495px;}
.y6a{bottom:756.285000px;}
.y133{bottom:757.185000px;}
.yc2{bottom:758.625000px;}
.ya5{bottom:759.885000px;}
.y8a{bottom:767.085000px;}
.y4a{bottom:767.445000px;}
.yd4{bottom:771.405000px;}
.y174{bottom:775.161092px;}
.y176{bottom:775.161122px;}
.y69{bottom:778.065000px;}
.yc1{bottom:780.405000px;}
.y49{bottom:785.625000px;}
.y132{bottom:790.845000px;}
.yd3{bottom:793.185000px;}
.ya4{bottom:793.725000px;}
.y68{bottom:799.665000px;}
.yc0{bottom:802.185000px;}
.y48{bottom:803.625000px;}
.y131{bottom:812.625000px;}
.y16f{bottom:814.107395px;}
.y171{bottom:814.107425px;}
.yd2{bottom:814.965000px;}
.y67{bottom:821.445000px;}
.y47{bottom:821.625000px;}
.ya3{bottom:822.885000px;}
.ybf{bottom:823.785000px;}
.y130{bottom:834.450000px;}
.yd1{bottom:836.610000px;}
.y46{bottom:839.850000px;}
.y66{bottom:843.270000px;}
.ybe{bottom:845.610000px;}
.yf5{bottom:855.330000px;}
.y168{bottom:855.435735px;}
.y16a{bottom:855.435764px;}
.y12f{bottom:856.050000px;}
.y45{bottom:857.850000px;}
.yd0{bottom:858.390000px;}
.y65{bottom:865.050000px;}
.ybd{bottom:867.390000px;}
.y44{bottom:876.030000px;}
.y12e{bottom:877.830000px;}
.y2{bottom:879.369000px;}
.y64{bottom:885.210000px;}
.ybc{bottom:887.550000px;}
.yf4{bottom:889.170000px;}
.ycf{bottom:892.230000px;}
.y43{bottom:894.030000px;}
.y162{bottom:895.946242px;}
.y164{bottom:895.946271px;}
.y12d{bottom:899.610000px;}
.y42{bottom:912.210000px;}
.yce{bottom:913.830000px;}
.y12c{bottom:919.770000px;}
.y63{bottom:921.210000px;}
.y160{bottom:922.172468px;}
.yf3{bottom:922.830000px;}
.ybb{bottom:923.550000px;}
.y41{bottom:930.210000px;}
.y28{bottom:934.170000px;}
.ycd{bottom:935.610000px;}
.y12b{bottom:942.270000px;}
.yf2{bottom:944.610000px;}
.y40{bottom:948.210000px;}
.y15e{bottom:950.399604px;}
.y62{bottom:954.870000px;}
.yb9{bottom:957.390000px;}
.yba{bottom:963.330000px;}
.y12a{bottom:964.770000px;}
.y3f{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.yb8{bottom:979.170000px;}
.y3e{bottom:984.390000px;}
.y151{bottom:985.110000px;}
.y21{bottom:985.470000px;}
.yf1{bottom:987.990000px;}
.y61{bottom:988.710000px;}
.yb7{bottom:1000.770000px;}
.y150{bottom:1006.710000px;}
.yf0{bottom:1009.770000px;}
.y89{bottom:1010.490000px;}
.y3d{bottom:1017.510000px;}
.y5f{bottom:1022.370000px;}
.yb6{bottom:1022.550000px;}
.y60{bottom:1028.310000px;}
.y14f{bottom:1028.490000px;}
.yef{bottom:1029.930000px;}
.y3c{bottom:1040.010000px;}
.y87{bottom:1044.330000px;}
.y88{bottom:1050.270000px;}
.y5e{bottom:1058.910000px;}
.y3b{bottom:1062.510000px;}
.y14e{bottom:1063.770000px;}
.y86{bottom:1066.110000px;}
.y39{bottom:1075.680000px;}
.h29{height:25.825256px;}
.h28{height:25.825290px;}
.h27{height:27.830171px;}
.h25{height:28.207327px;}
.h7{height:32.130000px;}
.hb{height:32.940000px;}
.h17{height:37.620000px;}
.h10{height:37.656000px;}
.h2f{height:38.549303px;}
.h2e{height:38.549337px;}
.h1b{height:38.671172px;}
.h38{height:39.740356px;}
.h2b{height:40.117477px;}
.h2a{height:40.117512px;}
.h31{height:40.137328px;}
.h30{height:40.137362px;}
.h2d{height:40.911490px;}
.h2c{height:40.911524px;}
.h35{height:40.931340px;}
.h34{height:40.931374px;}
.h13{height:41.205000px;}
.h21{height:41.238281px;}
.h33{height:41.308496px;}
.h32{height:41.308530px;}
.h37{height:41.328346px;}
.h36{height:41.328380px;}
.h1a{height:41.535703px;}
.h26{height:43.062760px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1d{height:50.585625px;}
.h20{height:51.557596px;}
.h24{height:53.709961px;}
.h2{height:55.080000px;}
.h23{height:56.320312px;}
.h1c{height:59.439023px;}
.h9{height:62.327813px;}
.ha{height:65.884219px;}
.h22{height:67.824844px;}
.h18{height:69.086250px;}
.h15{height:73.440000px;}
.h1e{height:74.004654px;}
.h5{height:78.030000px;}
.h12{height:87.859687px;}
.h19{height:98.051133px;}
.h14{height:112.536000px;}
.hc{height:112.640625px;}
.h4{height:119.055004px;}
.hf{height:131.400000px;}
.h11{height:153.750000px;}
.hd{height:201.450000px;}
.h16{height:227.014102px;}
.he{height:313.140938px;}
.h1f{height:377.646525px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wd{width:111.999729px;}
.w7{width:229.035000px;}
.w8{width:287.535000px;}
.w9{width:333.975000px;}
.w6{width:476.715000px;}
.w2{width:637.794021px;}
.wb{width:671.704179px;}
.wc{width:704.944139px;}
.w5{width:705.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.wa{width:917.999973px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:1.260000px;}
.x3b{left:5.557118px;}
.x31{left:8.351554px;}
.x39{left:9.550304px;}
.x37{left:11.138052px;}
.x2f{left:12.701983px;}
.x3a{left:15.496419px;}
.x26{left:16.663093px;}
.x36{left:19.076790px;}
.x3c{left:21.061475px;}
.x32{left:22.252286px;}
.x35{left:26.618592px;}
.x38{left:33.763457px;}
.x2e{left:36.934983px;}
.x34{left:38.125794px;}
.x7{left:90.900000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:111.095986px;}
.x2b{left:115.955986px;}
.x28{left:117.418718px;}
.x2c{left:133.235986px;}
.x1f{left:160.229986px;}
.x30{left:188.877570px;}
.x29{left:197.309973px;}
.x33{left:199.778365px;}
.x4{left:203.484001px;}
.x2a{left:207.749986px;}
.x25{left:243.447213px;}
.xa{left:251.129986px;}
.x9{left:257.969986px;}
.xe{left:289.154973px;}
.xf{left:294.374986px;}
.x10{left:322.274986px;}
.x18{left:325.154973px;}
.x19{left:330.374986px;}
.x22{left:349.094973px;}
.x23{left:354.314986px;}
.x12{left:355.934973px;}
.x13{left:361.154986px;}
.x27{left:438.234424px;}
.x3{left:454.959000px;}
.xd{left:458.924986px;}
.x15{left:482.684973px;}
.x16{left:487.904986px;}
.x1c{left:508.964986px;}
.x20{left:520.844973px;}
.x6{left:523.905000px;}
.x21{left:526.064986px;}
.x5{left:582.945000px;}
.x14{left:610.844986px;}
.x17{left:613.364986px;}
.xb{left:661.649973px;}
.xc{left:666.869986px;}
.x1a{left:704.849973px;}
.x1b{left:710.069986px;}
.x1d{left:767.849973px;}
.x1e{left:773.069986px;}
.x24{left:779.009986px;}
.x2d{left:811.799986px;}
@media print{
.v3{vertical-align:-45.240209pt;}
.v2{vertical-align:-26.819971pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.643679pt;}
.lsb{letter-spacing:-0.259733pt;}
.lsc{letter-spacing:-0.242133pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.043520pt;}
.lse{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053760pt;}
.ls5{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.482759pt;}
.ls6{letter-spacing:0.693760pt;}
.ls1{letter-spacing:3.584000pt;}
.ls7{letter-spacing:14.351360pt;}
.ls9{letter-spacing:33.551360pt;}
.ls3{letter-spacing:34.191360pt;}
.lsd{letter-spacing:43.616000pt;}
.ws1{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.263360pt;}
.ws3{word-spacing:-12.005120pt;}
.ws7{word-spacing:-10.848000pt;}
.ws6{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.202881pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:8.847767pt;}
.ws15{word-spacing:14.638058pt;}
.ws12{word-spacing:14.694521pt;}
.wsd{word-spacing:27.198273pt;}
.wsa{word-spacing:28.638082pt;}
.wsc{word-spacing:42.937361pt;}
.ws14{word-spacing:43.295902pt;}
.wsf{word-spacing:47.084576pt;}
.ws13{word-spacing:48.315471pt;}
.ws10{word-spacing:48.371934pt;}
.ws11{word-spacing:48.400166pt;}
.ws17{word-spacing:54.201749pt;}
.wse{word-spacing:58.196513pt;}
.ws16{word-spacing:59.664554pt;}
.ws9{word-spacing:82.244146pt;}
._7{margin-left:-5.768320pt;}
._8{margin-left:-3.804373pt;}
._0{margin-left:-2.668800pt;}
._6{margin-left:-1.413120pt;}
._5{width:1.062400pt;}
._9{width:1.986773pt;}
._2{width:2.880000pt;}
._1{width:3.936000pt;}
._3{width:5.546667pt;}
._4{width:6.453333pt;}
._a{width:19.790315pt;}
._b{width:29.699589pt;}
._1c{width:34.484836pt;}
._d{width:36.757476pt;}
._c{width:39.608862pt;}
._12{width:41.952080pt;}
._1f{width:43.140715pt;}
._1e{width:44.043144pt;}
._11{width:47.406012pt;}
._f{width:48.722409pt;}
._13{width:49.749230pt;}
._1d{width:51.397076pt;}
._15{width:56.876084pt;}
._14{width:57.874674pt;}
._10{width:59.370946pt;}
._17{width:60.461491pt;}
._18{width:68.743820pt;}
._20{width:72.075142pt;}
._16{width:77.077772pt;}
._19{width:79.133029pt;}
._1b{width:88.126320pt;}
._1a{width:140.545116pt;}
._e{width:205.155837pt;}
.fsd{font-size:34.560000pt;}
.fs10{font-size:36.701012pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:44.758102pt;}
.fse{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fsa{font-size:202.880000pt;}
.fs8{font-size:266.880000pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:2.117371pt;}
.y167{bottom:2.117392pt;}
.y181{bottom:2.131508pt;}
.y16d{bottom:2.823160pt;}
.y38{bottom:2.880000pt;}
.y186{bottom:3.176054pt;}
.y29{bottom:5.120000pt;}
.y178{bottom:7.763680pt;}
.y163{bottom:8.137779pt;}
.y17d{bottom:8.483585pt;}
.y173{bottom:8.822364pt;}
.y161{bottom:8.836509pt;}
.y18f{bottom:9.175258pt;}
.y15f{bottom:9.175279pt;}
.y175{bottom:13.777030pt;}
.y165{bottom:13.784059pt;}
.y191{bottom:14.133242pt;}
.y16c{bottom:14.468673pt;}
.y16e{bottom:14.468694pt;}
.y169{bottom:14.468703pt;}
.y17f{bottom:14.482818pt;}
.y17a{bottom:14.482820pt;}
.y185{bottom:14.821567pt;}
.y187{bottom:14.821589pt;}
.y170{bottom:14.821597pt;}
.y18c{bottom:14.839242pt;}
.y2f{bottom:16.320000pt;}
.y3a{bottom:16.960000pt;}
.y177{bottom:19.423311pt;}
.y33{bottom:19.520000pt;}
.y17c{bottom:20.129099pt;}
.y172{bottom:20.481992pt;}
.y18a{bottom:20.489051pt;}
.y18e{bottom:20.838417pt;}
.y37{bottom:22.920000pt;}
.y16b{bottom:26.128302pt;}
.y184{bottom:26.488254pt;}
.y36{bottom:42.920000pt;}
.y35{bottom:62.920000pt;}
.y34{bottom:82.920000pt;}
.y4{bottom:86.333337pt;}
.y2d{bottom:92.640000pt;}
.y85{bottom:97.792000pt;}
.yb5{bottom:98.912000pt;}
.y84{bottom:102.432000pt;}
.y14d{bottom:107.232000pt;}
.y104{bottom:112.992000pt;}
.y31{bottom:113.960000pt;}
.y83{bottom:114.112000pt;}
.y129{bottom:114.592000pt;}
.y2b{bottom:116.520000pt;}
.yb4{bottom:118.272000pt;}
.yee{bottom:118.752000pt;}
.y5d{bottom:120.192000pt;}
.y20{bottom:123.790666pt;}
.y27{bottom:124.992000pt;}
.y14c{bottom:126.592000pt;}
.y82{bottom:130.432000pt;}
.y103{bottom:132.352000pt;}
.ycc{bottom:135.066667pt;}
.yb3{bottom:137.466667pt;}
.y14b{bottom:145.946667pt;}
.y81{bottom:146.746667pt;}
.y5c{bottom:150.106667pt;}
.y109{bottom:150.949370pt;}
.yed{bottom:151.386667pt;}
.y102{bottom:151.706667pt;}
.y128{bottom:152.986667pt;}
.y107{bottom:154.679207pt;}
.y26{bottom:154.906667pt;}
.y10b{bottom:159.901002pt;}
.y80{bottom:162.906667pt;}
.yec{bottom:163.386667pt;}
.y10d{bottom:164.003806pt;}
.y108{bottom:164.376800pt;}
.y14a{bottom:165.306667pt;}
.y7f{bottom:167.546667pt;}
.y106{bottom:168.106637pt;}
.y10f{bottom:170.344554pt;}
.y101{bottom:170.906667pt;}
.y127{bottom:172.346667pt;}
.y10a{bottom:173.328433pt;}
.y17{bottom:175.052000pt;}
.y10c{bottom:177.431236pt;}
.ya2{bottom:179.226667pt;}
.y7e{bottom:179.706667pt;}
.y5b{bottom:180.186667pt;}
.y10e{bottom:183.771984pt;}
.ycb{bottom:183.866667pt;}
.y149{bottom:184.506667pt;}
.y25{bottom:184.986667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yb2{bottom:186.746667pt;}
.y100{bottom:190.266667pt;}
.y126{bottom:191.706667pt;}
.ya1{bottom:195.546667pt;}
.yca{bottom:196.026667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y148{bottom:203.866667pt;}
.yb1{bottom:206.106667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yff{bottom:209.626667pt;}
.y5a{bottom:210.106667pt;}
.y125{bottom:211.066667pt;}
.ya0{bottom:211.706667pt;}
.yeb{bottom:213.786667pt;}
.y24{bottom:214.906667pt;}
.y9f{bottom:216.346667pt;}
.y147{bottom:223.226667pt;}
.y9e{bottom:228.026667pt;}
.yfe{bottom:228.986667pt;}
.y124{bottom:230.266667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ye9{bottom:233.146667pt;}
.yb0{bottom:236.186667pt;}
.yea{bottom:238.426667pt;}
.y59{bottom:240.026667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y146{bottom:242.586667pt;}
.y9d{bottom:244.346667pt;}
.y23{bottom:244.826667pt;}
.yc9{bottom:246.906667pt;}
.yfd{bottom:248.186667pt;}
.ye8{bottom:252.506667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y123{bottom:260.346667pt;}
.y9c{bottom:260.666667pt;}
.y145{bottom:261.786667pt;}
.yaf{bottom:262.106667pt;}
.yc8{bottom:263.546667pt;}
.y9b{bottom:265.306667pt;}
.yfc{bottom:267.546667pt;}
.y58{bottom:270.106667pt;}
.ye7{bottom:271.866667pt;}
.y22{bottom:274.906667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y9a{bottom:277.306667pt;}
.yc7{bottom:278.906667pt;}
.y122{bottom:279.706667pt;}
.y7d{bottom:280.986667pt;}
.y144{bottom:281.146667pt;}
.yfb{bottom:286.906667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ye6{bottom:291.226667pt;}
.y30{bottom:296.346667pt;}
.y121{bottom:298.906667pt;}
.y57{bottom:300.026667pt;}
.y15d{bottom:300.186667pt;}
.y7c{bottom:300.346667pt;}
.y143{bottom:300.506667pt;}
.yfa{bottom:306.306667pt;}
.ye{bottom:309.452000pt;}
.ye5{bottom:310.466667pt;}
.y99{bottom:310.786667pt;}
.y15c{bottom:314.786667pt;}
.y120{bottom:318.306667pt;}
.y7b{bottom:319.746667pt;}
.y142{bottom:319.906667pt;}
.yf9{bottom:325.666667pt;}
.y15b{bottom:329.506667pt;}
.y56{bottom:330.146667pt;}
.y11f{bottom:337.666667pt;}
.y7a{bottom:339.106667pt;}
.ye4{bottom:340.546667pt;}
.y98{bottom:340.706667pt;}
.yd{bottom:343.809333pt;}
.y15a{bottom:344.066667pt;}
.yf8{bottom:344.866667pt;}
.y11e{bottom:357.026667pt;}
.y79{bottom:358.306667pt;}
.y141{bottom:358.466667pt;}
.y159{bottom:358.786667pt;}
.ye3{bottom:359.746667pt;}
.y55{bottom:360.066667pt;}
.yc{bottom:362.706666pt;}
.yf7{bottom:364.226667pt;}
.y97{bottom:370.626667pt;}
.y158{bottom:373.346667pt;}
.y78{bottom:376.226667pt;}
.y140{bottom:377.826667pt;}
.yf6{bottom:378.146667pt;}
.y105{bottom:378.355427pt;}
.ye2{bottom:379.106667pt;}
.y11d{bottom:381.506667pt;}
.y157{bottom:388.066667pt;}
.y54{bottom:390.146667pt;}
.y11c{bottom:395.586667pt;}
.y32{bottom:396.386667pt;}
.y13f{bottom:397.186667pt;}
.ye0{bottom:398.466667pt;}
.y96{bottom:400.706667pt;}
.y156{bottom:402.626667pt;}
.ye1{bottom:403.746667pt;}
.y77{bottom:408.386667pt;}
.y11b{bottom:414.946667pt;}
.ydf{bottom:416.386667pt;}
.y155{bottom:417.346667pt;}
.y53{bottom:420.066667pt;}
.y95{bottom:430.626667pt;}
.y154{bottom:431.906667pt;}
.y13e{bottom:435.746667pt;}
.y76{bottom:438.306667pt;}
.y11a{bottom:444.866667pt;}
.y153{bottom:446.626667pt;}
.yb{bottom:446.990669pt;}
.yde{bottom:448.386667pt;}
.y52{bottom:449.986667pt;}
.y13d{bottom:455.106667pt;}
.y75{bottom:457.666667pt;}
.y94{bottom:460.706667pt;}
.ya{bottom:462.990669pt;}
.y119{bottom:464.226667pt;}
.ydd{bottom:467.746667pt;}
.y152{bottom:469.826667pt;}
.y190{bottom:470.395187pt;}
.y13c{bottom:474.466667pt;}
.y73{bottom:477.026667pt;}
.y9{bottom:478.990666pt;}
.y51{bottom:480.066667pt;}
.yae{bottom:480.226667pt;}
.y74{bottom:482.306667pt;}
.y118{bottom:483.586667pt;}
.ydc{bottom:487.106667pt;}
.y93{bottom:490.626667pt;}
.y13b{bottom:493.666667pt;}
.y8{bottom:494.990666pt;}
.y72{bottom:496.226667pt;}
.y2e{bottom:501.026667pt;}
.y117{bottom:502.946667pt;}
.y18b{bottom:506.072594pt;}
.y18d{bottom:506.072621pt;}
.y50{bottom:509.986667pt;}
.yad{bottom:510.146667pt;}
.y13a{bottom:513.026667pt;}
.y71{bottom:515.586667pt;}
.ydb{bottom:517.026667pt;}
.y116{bottom:522.173333pt;}
.y92{bottom:529.373333pt;}
.y139{bottom:532.413333pt;}
.y2c{bottom:534.493333pt;}
.y70{bottom:534.973333pt;}
.y4f{bottom:540.093333pt;}
.yac{bottom:540.253333pt;}
.y188{bottom:543.159673pt;}
.y189{bottom:543.159699pt;}
.y91{bottom:548.573333pt;}
.y138{bottom:551.773333pt;}
.y115{bottom:552.253333pt;}
.yab{bottom:559.613333pt;}
.y6f{bottom:564.893333pt;}
.yda{bottom:567.133333pt;}
.y90{bottom:567.933333pt;}
.y4e{bottom:570.013333pt;}
.y137{bottom:570.973333pt;}
.y114{bottom:571.613333pt;}
.y7{bottom:573.786667pt;}
.yaa{bottom:578.813333pt;}
.y182{bottom:579.895975pt;}
.y183{bottom:579.896001pt;}
.y6e{bottom:584.253333pt;}
.yd9{bottom:586.333333pt;}
.y8e{bottom:587.293333pt;}
.y136{bottom:590.333333pt;}
.y113{bottom:590.813333pt;}
.y8f{bottom:592.573333pt;}
.y6{bottom:592.685334pt;}
.yc6{bottom:595.133333pt;}
.ya9{bottom:598.173333pt;}
.y4d{bottom:600.093333pt;}
.y6d{bottom:603.613333pt;}
.y8d{bottom:606.653333pt;}
.y112{bottom:608.733333pt;}
.y135{bottom:609.693333pt;}
.yd8{bottom:616.413333pt;}
.y17e{bottom:616.971056pt;}
.y180{bottom:616.971082pt;}
.ya8{bottom:617.533333pt;}
.y6c{bottom:622.973333pt;}
.yc5{bottom:625.053333pt;}
.y8c{bottom:625.853333pt;}
.y111{bottom:629.053333pt;}
.y4c{bottom:630.013333pt;}
.yd6{bottom:634.333333pt;}
.ya7{bottom:636.893333pt;}
.yd7{bottom:639.613333pt;}
.y134{bottom:640.893333pt;}
.y6b{bottom:642.173333pt;}
.y4b{bottom:644.893333pt;}
.y5{bottom:645.598667pt;}
.y2a{bottom:651.293333pt;}
.y179{bottom:653.001569pt;}
.y17b{bottom:653.001595pt;}
.yc3{bottom:654.973333pt;}
.y8b{bottom:655.933333pt;}
.ya6{bottom:656.093333pt;}
.yc4{bottom:660.253333pt;}
.yd5{bottom:666.333333pt;}
.y110{bottom:668.413333pt;}
.y3{bottom:668.977329pt;}
.y6a{bottom:672.253333pt;}
.y133{bottom:673.053333pt;}
.yc2{bottom:674.333333pt;}
.ya5{bottom:675.453333pt;}
.y8a{bottom:681.853333pt;}
.y4a{bottom:682.173333pt;}
.yd4{bottom:685.693333pt;}
.y174{bottom:689.032082pt;}
.y176{bottom:689.032108pt;}
.y69{bottom:691.613333pt;}
.yc1{bottom:693.693333pt;}
.y49{bottom:698.333333pt;}
.y132{bottom:702.973333pt;}
.yd3{bottom:705.053333pt;}
.ya4{bottom:705.533333pt;}
.y68{bottom:710.813333pt;}
.yc0{bottom:713.053333pt;}
.y48{bottom:714.333333pt;}
.y131{bottom:722.333333pt;}
.y16f{bottom:723.651018pt;}
.y171{bottom:723.651044pt;}
.yd2{bottom:724.413333pt;}
.y67{bottom:730.173333pt;}
.y47{bottom:730.333333pt;}
.ya3{bottom:731.453333pt;}
.ybf{bottom:732.253333pt;}
.y130{bottom:741.733333pt;}
.yd1{bottom:743.653333pt;}
.y46{bottom:746.533333pt;}
.y66{bottom:749.573333pt;}
.ybe{bottom:751.653333pt;}
.yf5{bottom:760.293333pt;}
.y168{bottom:760.387320pt;}
.y16a{bottom:760.387346pt;}
.y12f{bottom:760.933333pt;}
.y45{bottom:762.533333pt;}
.yd0{bottom:763.013333pt;}
.y65{bottom:768.933333pt;}
.ybd{bottom:771.013333pt;}
.y44{bottom:778.693333pt;}
.y12e{bottom:780.293333pt;}
.y2{bottom:781.661334pt;}
.y64{bottom:786.853333pt;}
.ybc{bottom:788.933333pt;}
.yf4{bottom:790.373333pt;}
.ycf{bottom:793.093333pt;}
.y43{bottom:794.693333pt;}
.y162{bottom:796.396659pt;}
.y164{bottom:796.396686pt;}
.y12d{bottom:799.653333pt;}
.y42{bottom:810.853333pt;}
.yce{bottom:812.293333pt;}
.y12c{bottom:817.573333pt;}
.y63{bottom:818.853333pt;}
.y160{bottom:819.708860pt;}
.yf3{bottom:820.293333pt;}
.ybb{bottom:820.933333pt;}
.y41{bottom:826.853333pt;}
.y28{bottom:830.373333pt;}
.ycd{bottom:831.653333pt;}
.y12b{bottom:837.573333pt;}
.yf2{bottom:839.653333pt;}
.y40{bottom:842.853333pt;}
.y15e{bottom:844.799648pt;}
.y62{bottom:848.773333pt;}
.yb9{bottom:851.013333pt;}
.yba{bottom:856.293333pt;}
.y12a{bottom:857.573333pt;}
.y3f{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.yb8{bottom:870.373333pt;}
.y3e{bottom:875.013333pt;}
.y151{bottom:875.653333pt;}
.y21{bottom:875.973333pt;}
.yf1{bottom:878.213333pt;}
.y61{bottom:878.853333pt;}
.yb7{bottom:889.573333pt;}
.y150{bottom:894.853333pt;}
.yf0{bottom:897.573333pt;}
.y89{bottom:898.213333pt;}
.y3d{bottom:904.453333pt;}
.y5f{bottom:908.773333pt;}
.yb6{bottom:908.933333pt;}
.y60{bottom:914.053333pt;}
.y14f{bottom:914.213333pt;}
.yef{bottom:915.493333pt;}
.y3c{bottom:924.453333pt;}
.y87{bottom:928.293333pt;}
.y88{bottom:933.573333pt;}
.y5e{bottom:941.253333pt;}
.y3b{bottom:944.453333pt;}
.y14e{bottom:945.573333pt;}
.y86{bottom:947.653333pt;}
.y39{bottom:956.160000pt;}
.h29{height:22.955783pt;}
.h28{height:22.955814pt;}
.h27{height:24.737930pt;}
.h25{height:25.073180pt;}
.h7{height:28.560000pt;}
.hb{height:29.280000pt;}
.h17{height:33.440000pt;}
.h10{height:33.472000pt;}
.h2f{height:34.266047pt;}
.h2e{height:34.266078pt;}
.h1b{height:34.374375pt;}
.h38{height:35.324761pt;}
.h2b{height:35.659980pt;}
.h2a{height:35.660010pt;}
.h31{height:35.677625pt;}
.h30{height:35.677655pt;}
.h2d{height:36.365769pt;}
.h2c{height:36.365799pt;}
.h35{height:36.383413pt;}
.h34{height:36.383444pt;}
.h13{height:36.626667pt;}
.h21{height:36.656250pt;}
.h33{height:36.718663pt;}
.h32{height:36.718693pt;}
.h37{height:36.736308pt;}
.h36{height:36.736338pt;}
.h1a{height:36.920625pt;}
.h26{height:38.278009pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1d{height:44.965000pt;}
.h20{height:45.828974pt;}
.h24{height:47.742188pt;}
.h2{height:48.960000pt;}
.h23{height:50.062500pt;}
.h1c{height:52.834688pt;}
.h9{height:55.402500pt;}
.ha{height:58.563750pt;}
.h22{height:60.288750pt;}
.h18{height:61.410000pt;}
.h15{height:65.280000pt;}
.h1e{height:65.781915pt;}
.h5{height:69.360000pt;}
.h12{height:78.097500pt;}
.h19{height:87.156562pt;}
.h14{height:100.032000pt;}
.hc{height:100.125000pt;}
.h4{height:105.826671pt;}
.hf{height:116.800000pt;}
.h11{height:136.666667pt;}
.hd{height:179.066667pt;}
.h16{height:201.790312pt;}
.he{height:278.347500pt;}
.h1f{height:335.685800pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wd{width:99.555315pt;}
.w7{width:203.586667pt;}
.w8{width:255.586667pt;}
.w9{width:296.866667pt;}
.w6{width:423.746667pt;}
.w2{width:566.928019pt;}
.wb{width:597.070381pt;}
.wc{width:626.617012pt;}
.w5{width:627.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.wa{width:815.999976pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.120000pt;}
.x3b{left:4.939660pt;}
.x31{left:7.423603pt;}
.x39{left:8.489159pt;}
.x37{left:9.900490pt;}
.x2f{left:11.290651pt;}
.x3a{left:13.774594pt;}
.x26{left:14.811638pt;}
.x36{left:16.957147pt;}
.x3c{left:18.721311pt;}
.x32{left:19.779810pt;}
.x35{left:23.660971pt;}
.x38{left:30.011962pt;}
.x2e{left:32.831096pt;}
.x34{left:33.889595pt;}
.x7{left:80.800000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:98.751988pt;}
.x2b{left:103.071988pt;}
.x28{left:104.372193pt;}
.x2c{left:118.431988pt;}
.x1f{left:142.426655pt;}
.x30{left:167.891173pt;}
.x29{left:175.386642pt;}
.x33{left:177.580769pt;}
.x4{left:180.874667pt;}
.x2a{left:184.666655pt;}
.x25{left:216.397523pt;}
.xa{left:223.226655pt;}
.x9{left:229.306655pt;}
.xe{left:257.026642pt;}
.xf{left:261.666655pt;}
.x10{left:286.466655pt;}
.x18{left:289.026642pt;}
.x19{left:293.666655pt;}
.x22{left:310.306642pt;}
.x23{left:314.946655pt;}
.x12{left:316.386642pt;}
.x13{left:321.026655pt;}
.x27{left:389.541711pt;}
.x3{left:404.408000pt;}
.xd{left:407.933321pt;}
.x15{left:429.053309pt;}
.x16{left:433.693321pt;}
.x1c{left:452.413321pt;}
.x20{left:462.973309pt;}
.x6{left:465.693333pt;}
.x21{left:467.613321pt;}
.x5{left:518.173333pt;}
.x14{left:542.973321pt;}
.x17{left:545.213321pt;}
.xb{left:588.133309pt;}
.xc{left:592.773321pt;}
.x1a{left:626.533309pt;}
.x1b{left:631.173321pt;}
.x1d{left:682.533309pt;}
.x1e{left:687.173321pt;}
.x24{left:692.453321pt;}
.x2d{left:721.599988pt;}
}




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