
    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_1cf9119b41a69e6d3384a1ff.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3299ec65e657a8e00accb637.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a97b2ea72a2d999d5a7c335.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0b100746bd57ba6d4146bc79.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_fe34e4667c66b452f05fab44.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_bfad7f58ee671b4f520984b6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_adc78770ca699776d86914f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_45c48472c95969e8eaff5248.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9e7363041d09d319ec756444.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_52ca44a3ae3c7663ff4935c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.345600px;}
.ls28{letter-spacing:-0.315600px;}
.ls20{letter-spacing:-0.226200px;}
.ls1a{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.216600px;}
.lsc{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.178800px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.022320px;}
.ls1e{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.089400px;}
.ls27{letter-spacing:0.092400px;}
.ls29{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.223800px;}
.ls1d{letter-spacing:0.226200px;}
.ls6{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.269280px;}
.ls24{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.305280px;}
.ls22{letter-spacing:0.493800px;}
.ls23{letter-spacing:0.541200px;}
.ls25{letter-spacing:0.630720px;}
.ls13{letter-spacing:0.869760px;}
.ls26{letter-spacing:0.946080px;}
.lse{letter-spacing:5.904000px;}
.ls2a{letter-spacing:9.504000px;}
.ls11{letter-spacing:21.024000px;}
.ls4{letter-spacing:66.365760px;}
.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;}
}
.ws0{word-spacing:-23.381280px;}
.ws9{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.160000px;}
.ws16{word-spacing:-20.088000px;}
.ws2{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.wsc{word-spacing:-19.512000px;}
.ws3{word-spacing:-19.038240px;}
.wsf{word-spacing:-18.676920px;}
.wse{word-spacing:-18.305520px;}
.ws4{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.624640px;}
.ws10{word-spacing:-13.634520px;}
.ws12{word-spacing:-13.229520px;}
.ws11{word-spacing:-13.186920px;}
.ws1b{word-spacing:-12.150480px;}
.ws1a{word-spacing:-12.103080px;}
.ws14{word-spacing:-11.835480px;}
.ws19{word-spacing:-11.698680px;}
.ws15{word-spacing:-11.609280px;}
.ws17{word-spacing:-11.430480px;}
.ws18{word-spacing:-11.383080px;}
.ws1c{word-spacing:-11.293680px;}
.ws13{word-spacing:-10.685640px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-14.197920px;}
._25{margin-left:-12.249360px;}
._23{margin-left:-10.700400px;}
._22{margin-left:-8.892720px;}
._24{margin-left:-7.752480px;}
._26{margin-left:-6.387120px;}
._14{margin-left:-5.326560px;}
._12{margin-left:-3.966240px;}
._e{margin-left:-2.528880px;}
._0{margin-left:-1.095120px;}
._1{width:1.010880px;}
._2{width:2.138400px;}
._d{width:3.147840px;}
._c{width:4.176000px;}
._6{width:5.472000px;}
._1b{width:6.480000px;}
._7{width:7.923120px;}
._11{width:9.717360px;}
._9{width:10.944000px;}
._8{width:12.240000px;}
._13{width:14.184000px;}
._28{width:15.192000px;}
._39{width:16.287360px;}
._1d{width:17.424000px;}
._1c{width:18.504000px;}
._1e{width:21.024000px;}
._2c{width:22.236000px;}
._2d{width:24.048000px;}
._5{width:25.140000px;}
._30{width:26.184000px;}
._35{width:27.480000px;}
._27{width:29.278080px;}
._3c{width:30.281040px;}
._10{width:31.320000px;}
._f{width:32.787120px;}
._17{width:33.852000px;}
._1f{width:35.796000px;}
._31{width:37.512000px;}
._2e{width:38.691120px;}
._a{width:39.744000px;}
._b{width:40.764000px;}
._34{width:42.552000px;}
._37{width:44.208000px;}
._3a{width:45.288000px;}
._36{width:48.024000px;}
._16{width:49.248000px;}
._15{width:50.832000px;}
._40{width:52.128000px;}
._20{width:53.928000px;}
._4b{width:55.176480px;}
._4c{width:58.608000px;}
._44{width:60.624000px;}
._45{width:61.920000px;}
._1a{width:63.720000px;}
._2a{width:66.975120px;}
._29{width:68.904000px;}
._2f{width:70.776000px;}
._3b{width:72.264000px;}
._3f{width:74.136720px;}
._2b{width:75.864000px;}
._38{width:77.832000px;}
._43{width:88.503120px;}
._42{width:89.604000px;}
._48{width:102.528000px;}
._47{width:103.644000px;}
._19{width:119.964000px;}
._18{width:121.104000px;}
._41{width:142.128000px;}
._33{width:159.830880px;}
._32{width:160.851120px;}
._3{width:165.538560px;}
._3d{width:168.384000px;}
._4{width:188.981280px;}
._3e{width:216.864000px;}
._46{width:292.968000px;}
._49{width:299.016000px;}
._4a{width:301.044000px;}
._4d{width:633.384000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(91,155,213);}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y126{bottom:2.340000px;}
.y10a{bottom:2.700000px;}
.yaf{bottom:3.420000px;}
.yb1{bottom:3.600000px;}
.yb6{bottom:4.140000px;}
.yb5{bottom:4.500000px;}
.ye3{bottom:6.840000px;}
.ye6{bottom:7.380000px;}
.y125{bottom:8.460000px;}
.y108{bottom:8.640000px;}
.ye5{bottom:12.060000px;}
.y124{bottom:14.400000px;}
.y109{bottom:14.760000px;}
.ye8{bottom:15.120000px;}
.yf0{bottom:15.165000px;}
.yeb{bottom:15.300000px;}
.y110{bottom:15.345000px;}
.yb9{bottom:18.360000px;}
.y103{bottom:21.780000px;}
.y112{bottom:27.720000px;}
.yf3{bottom:27.900000px;}
.yef{bottom:27.945000px;}
.yf2{bottom:28.080000px;}
.y100{bottom:28.125000px;}
.y115{bottom:40.680000px;}
.yee{bottom:40.725000px;}
.y114{bottom:40.860000px;}
.yed{bottom:40.905000px;}
.y120{bottom:53.640000px;}
.y2{bottom:57.420000px;}
.ye0{bottom:57.600000px;}
.y11f{bottom:66.420000px;}
.y11e{bottom:66.600000px;}
.y1{bottom:77.580000px;}
.y13e{bottom:115.056000px;}
.y3a{bottom:115.236000px;}
.y19{bottom:120.636000px;}
.y106{bottom:121.176000px;}
.y93{bottom:125.136000px;}
.yde{bottom:125.316000px;}
.y7c{bottom:125.676000px;}
.y5b{bottom:131.436000px;}
.ya8{bottom:134.676000px;}
.y13c{bottom:141.516000px;}
.y105{bottom:141.876000px;}
.y164{bottom:144.216000px;}
.y39{bottom:146.196000px;}
.y140{bottom:146.376000px;}
.yac{bottom:150.150000px;}
.y127{bottom:153.930000px;}
.y92{bottom:156.090000px;}
.ydd{bottom:156.450000px;}
.y18{bottom:156.810000px;}
.y104{bottom:162.570000px;}
.y5a{bottom:162.750000px;}
.ya7{bottom:165.810000px;}
.y102{bottom:174.450000px;}
.y163{bottom:175.350000px;}
.y13d{bottom:177.150000px;}
.y38{bottom:177.330000px;}
.yab{bottom:181.290000px;}
.y91{bottom:187.230000px;}
.ydc{bottom:187.410000px;}
.y7b{bottom:187.770000px;}
.y123{bottom:190.830000px;}
.y17{bottom:192.990000px;}
.ya6{bottom:196.770000px;}
.y162{bottom:206.310000px;}
.y101{bottom:206.670000px;}
.y13b{bottom:207.390000px;}
.y37{bottom:208.290000px;}
.y142{bottom:208.470000px;}
.yaa{bottom:214.590000px;}
.y122{bottom:216.390000px;}
.y90{bottom:218.190000px;}
.ydb{bottom:218.550000px;}
.y7a{bottom:218.910000px;}
.y95{bottom:219.090000px;}
.y59{bottom:223.050000px;}
.ya5{bottom:227.910000px;}
.y16{bottom:229.350000px;}
.y161{bottom:237.450000px;}
.y13a{bottom:239.250000px;}
.y36{bottom:239.430000px;}
.ya9{bottom:239.970000px;}
.y121{bottom:241.950000px;}
.yff{bottom:245.190000px;}
.y8f{bottom:249.330000px;}
.yda{bottom:249.510000px;}
.y79{bottom:249.870000px;}
.y94{bottom:250.050000px;}
.y58{bottom:253.290000px;}
.ya4{bottom:258.870000px;}
.y15{bottom:265.530000px;}
.y11d{bottom:267.735000px;}
.y160{bottom:268.410000px;}
.y35{bottom:270.390000px;}
.y139{bottom:270.570000px;}
.y8e{bottom:280.290000px;}
.yd9{bottom:280.650000px;}
.y78{bottom:281.010000px;}
.y57{bottom:283.530000px;}
.yfe{bottom:283.755000px;}
.ya3{bottom:290.010000px;}
.y15f{bottom:299.550000px;}
.y34{bottom:301.350000px;}
.y138{bottom:301.530000px;}
.y14{bottom:301.710000px;}
.y56{bottom:303.690000px;}
.yfd{bottom:309.495000px;}
.y8d{bottom:311.430000px;}
.yd8{bottom:311.610000px;}
.y77{bottom:311.970000px;}
.y16e{bottom:315.570000px;}
.ya2{bottom:320.970000px;}
.y55{bottom:323.850000px;}
.y15e{bottom:330.510000px;}
.y33{bottom:332.490000px;}
.y137{bottom:332.670000px;}
.yfc{bottom:335.055000px;}
.y13{bottom:337.890000px;}
.y8c{bottom:342.390000px;}
.yd7{bottom:342.570000px;}
.y76{bottom:343.110000px;}
.y54{bottom:344.010000px;}
.y11c{bottom:344.775000px;}
.y16d{bottom:347.610000px;}
.ya1{bottom:352.110000px;}
.yfb{bottom:360.615000px;}
.y15d{bottom:361.650000px;}
.y32{bottom:363.450000px;}
.y136{bottom:363.630000px;}
.y53{bottom:364.170000px;}
.y11b{bottom:370.515000px;}
.y8b{bottom:373.575000px;}
.yd6{bottom:373.755000px;}
.y75{bottom:374.115000px;}
.y12{bottom:374.295000px;}
.y16c{bottom:380.595000px;}
.ya0{bottom:383.115000px;}
.y52{bottom:384.375000px;}
.y15c{bottom:392.655000px;}
.y31{bottom:394.635000px;}
.y135{bottom:394.815000px;}
.y11a{bottom:396.075000px;}
.yfa{bottom:399.135000px;}
.y8a{bottom:404.535000px;}
.yd5{bottom:404.715000px;}
.y74{bottom:405.255000px;}
.y11{bottom:410.475000px;}
.y16b{bottom:413.535000px;}
.y9f{bottom:414.255000px;}
.y51{bottom:414.615000px;}
.y119{bottom:421.815000px;}
.y15b{bottom:423.795000px;}
.yf9{bottom:424.875000px;}
.y30{bottom:425.595000px;}
.y89{bottom:435.675000px;}
.yd4{bottom:435.855000px;}
.y73{bottom:436.215000px;}
.y50{bottom:444.495000px;}
.y9e{bottom:445.215000px;}
.y16a{bottom:446.295000px;}
.y10{bottom:446.655000px;}
.y118{bottom:447.405000px;}
.yf8{bottom:450.465000px;}
.y15a{bottom:454.755000px;}
.y134{bottom:456.555000px;}
.y2f{bottom:456.735000px;}
.y88{bottom:466.635000px;}
.y9c{bottom:466.815000px;}
.y72{bottom:467.355000px;}
.y117{bottom:472.965000px;}
.yf7{bottom:476.025000px;}
.y4f{bottom:479.055000px;}
.y169{bottom:479.235000px;}
.yf{bottom:482.835000px;}
.y159{bottom:485.895000px;}
.y2e{bottom:487.695000px;}
.y87{bottom:497.775000px;}
.y9b{bottom:497.955000px;}
.y9d{bottom:498.135000px;}
.y71{bottom:498.315000px;}
.y116{bottom:498.705000px;}
.yf6{bottom:501.765000px;}
.y168{bottom:512.175000px;}
.y4e{bottom:512.535000px;}
.y158{bottom:516.855000px;}
.y133{bottom:518.655000px;}
.y2d{bottom:518.835000px;}
.ye{bottom:521.535000px;}
.y113{bottom:524.265000px;}
.yf5{bottom:527.325000px;}
.y86{bottom:528.735000px;}
.yd3{bottom:528.915000px;}
.y70{bottom:529.455000px;}
.y4d{bottom:541.875000px;}
.y167{bottom:545.115000px;}
.y157{bottom:547.995000px;}
.y2c{bottom:549.795000px;}
.y132{bottom:549.975000px;}
.yf4{bottom:553.065000px;}
.y85{bottom:559.875000px;}
.yd2{bottom:560.055000px;}
.y6f{bottom:560.415000px;}
.yd{bottom:562.935000px;}
.y4c{bottom:571.215000px;}
.y111{bottom:575.745000px;}
.y166{bottom:578.055000px;}
.yf1{bottom:578.625000px;}
.y156{bottom:578.955000px;}
.y131{bottom:580.755000px;}
.y2b{bottom:580.935000px;}
.y84{bottom:590.835000px;}
.yd1{bottom:591.015000px;}
.y6e{bottom:591.555000px;}
.yc{bottom:604.335000px;}
.y4b{bottom:604.515000px;}
.y155{bottom:610.095000px;}
.y165{bottom:610.995000px;}
.y2a{bottom:611.895000px;}
.y10f{bottom:614.085000px;}
.yec{bottom:617.145000px;}
.y83{bottom:621.975000px;}
.yd0{bottom:622.155000px;}
.y6d{bottom:622.515000px;}
.y4a{bottom:634.785000px;}
.y154{bottom:641.085000px;}
.y130{bottom:642.885000px;}
.y29{bottom:643.065000px;}
.yb{bottom:643.245000px;}
.y10e{bottom:652.650000px;}
.y82{bottom:652.965000px;}
.ycf{bottom:653.145000px;}
.y6c{bottom:653.685000px;}
.y49{bottom:665.025000px;}
.yea{bottom:668.490000px;}
.y153{bottom:672.045000px;}
.y28{bottom:674.025000px;}
.y13f{bottom:674.205000px;}
.ya{bottom:679.605000px;}
.y81{bottom:684.105000px;}
.yce{bottom:684.285000px;}
.y6b{bottom:684.645000px;}
.y10d{bottom:691.170000px;}
.ye9{bottom:694.230000px;}
.y48{bottom:695.085000px;}
.y152{bottom:703.185000px;}
.y12f{bottom:704.985000px;}
.y27{bottom:705.165000px;}
.y80{bottom:715.065000px;}
.y9{bottom:715.785000px;}
.ycd{bottom:716.145000px;}
.y10c{bottom:716.910000px;}
.ye7{bottom:719.790000px;}
.y47{bottom:725.325000px;}
.y151{bottom:734.145000px;}
.y26{bottom:736.125000px;}
.y143{bottom:736.305000px;}
.ycc{bottom:740.985000px;}
.y10b{bottom:742.470000px;}
.ye4{bottom:745.350000px;}
.y7f{bottom:746.205000px;}
.y6a{bottom:746.745000px;}
.y8{bottom:751.965000px;}
.ycb{bottom:753.765000px;}
.y46{bottom:755.565000px;}
.y150{bottom:765.285000px;}
.yca{bottom:766.545000px;}
.y12e{bottom:767.085000px;}
.y25{bottom:767.265000px;}
.ye2{bottom:767.850000px;}
.y107{bottom:768.030000px;}
.y7e{bottom:777.165000px;}
.y69{bottom:777.885000px;}
.yc9{bottom:779.505000px;}
.y45{bottom:785.805000px;}
.y7{bottom:788.145000px;}
.yc8{bottom:792.285000px;}
.y14f{bottom:796.245000px;}
.y24{bottom:798.225000px;}
.y141{bottom:798.405000px;}
.yc7{bottom:805.245000px;}
.ye1{bottom:805.830000px;}
.y9a{bottom:808.305000px;}
.y7d{bottom:808.665000px;}
.y68{bottom:808.845000px;}
.yc6{bottom:815.865000px;}
.y44{bottom:816.045000px;}
.y6{bottom:817.845000px;}
.ydf{bottom:824.220000px;}
.y14e{bottom:827.385000px;}
.y12d{bottom:829.185000px;}
.y23{bottom:829.365000px;}
.yc5{bottom:830.625000px;}
.y99{bottom:839.265000px;}
.y67{bottom:839.805000px;}
.yc4{bottom:845.385000px;}
.y43{bottom:846.285000px;}
.y14d{bottom:858.345000px;}
.yc3{bottom:859.965000px;}
.y22{bottom:860.325000px;}
.y98{bottom:870.765000px;}
.y66{bottom:870.945000px;}
.yc2{bottom:874.725000px;}
.y42{bottom:876.525000px;}
.yc1{bottom:889.530000px;}
.y12c{bottom:891.330000px;}
.y21{bottom:891.510000px;}
.y65{bottom:901.950000px;}
.yc0{bottom:904.290000px;}
.y41{bottom:906.630000px;}
.ybf{bottom:919.050000px;}
.y14c{bottom:920.490000px;}
.y20{bottom:922.470000px;}
.y64{bottom:933.090000px;}
.ybe{bottom:933.630000px;}
.y40{bottom:936.870000px;}
.ybd{bottom:948.390000px;}
.y14b{bottom:951.630000px;}
.y12b{bottom:953.430000px;}
.y1f{bottom:953.610000px;}
.ybc{bottom:963.150000px;}
.y63{bottom:964.050000px;}
.y3f{bottom:967.110000px;}
.ybb{bottom:977.910000px;}
.y14a{bottom:982.590000px;}
.y1e{bottom:984.570000px;}
.y145{bottom:984.750000px;}
.yba{bottom:992.490000px;}
.y62{bottom:995.190000px;}
.y3e{bottom:997.350000px;}
.yb8{bottom:1007.250000px;}
.y149{bottom:1013.730000px;}
.y12a{bottom:1015.530000px;}
.y1d{bottom:1015.710000px;}
.y61{bottom:1026.150000px;}
.y3d{bottom:1027.590000px;}
.yb7{bottom:1036.770000px;}
.y148{bottom:1044.690000px;}
.y1c{bottom:1046.670000px;}
.y3c{bottom:1048.830000px;}
.yb4{bottom:1051.350000px;}
.y60{bottom:1057.290000px;}
.yb3{bottom:1067.010000px;}
.y3b{bottom:1074.570000px;}
.y147{bottom:1075.830000px;}
.y129{bottom:1077.630000px;}
.y1b{bottom:1077.810000px;}
.yb2{bottom:1081.770000px;}
.y5{bottom:1082.850000px;}
.y5f{bottom:1088.250000px;}
.yb0{bottom:1096.530000px;}
.y146{bottom:1107.870000px;}
.y1a{bottom:1108.770000px;}
.y144{bottom:1108.950000px;}
.yae{bottom:1111.290000px;}
.y4{bottom:1113.270000px;}
.y5e{bottom:1119.390000px;}
.y97{bottom:1119.570000px;}
.y128{bottom:1139.730000px;}
.y3{bottom:1139.910000px;}
.y5d{bottom:1150.380000px;}
.y96{bottom:1150.560000px;}
.yad{bottom:1152.000000px;}
.y5c{bottom:1194.120000px;}
.ha{height:14.580000px;}
.hc{height:14.760000px;}
.hf{height:14.796000px;}
.hd{height:15.660000px;}
.h13{height:20.700000px;}
.h14{height:21.780000px;}
.h22{height:24.120000px;}
.h1d{height:24.300000px;}
.h15{height:24.840000px;}
.h19{height:24.876000px;}
.h16{height:25.020000px;}
.h21{height:25.056000px;}
.he{height:29.520000px;}
.h1b{height:31.500000px;}
.h1e{height:37.620000px;}
.h18{height:37.800000px;}
.h1a{height:37.836000px;}
.h10{height:43.554375px;}
.hb{height:50.312812px;}
.h1f{height:50.580000px;}
.h17{height:50.616000px;}
.h23{height:50.682656px;}
.h4{height:56.320312px;}
.h1c{height:62.327813px;}
.h2{height:65.884219px;}
.h8{height:67.824844px;}
.h9{height:69.086250px;}
.h3{height:75.093750px;}
.h20{height:76.320000px;}
.h7{height:86.255508px;}
.h5{height:87.859687px;}
.h6{height:99.874688px;}
.h11{height:892.980000px;}
.h12{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:39.600000px;}
.w8{width:39.780000px;}
.w7{width:39.816000px;}
.w5{width:39.960000px;}
.w4{width:40.140000px;}
.w9{width:59.760000px;}
.w33{width:63.000000px;}
.w2b{width:63.720000px;}
.w19{width:70.200000px;}
.w22{width:70.560000px;}
.w17{width:72.396000px;}
.w16{width:72.540000px;}
.w20{width:72.756000px;}
.w1f{width:73.080000px;}
.w15{width:73.440000px;}
.w14{width:74.700000px;}
.w21{width:82.980000px;}
.w18{width:83.340000px;}
.w24{width:84.816000px;}
.w1b{width:89.460000px;}
.we{width:89.820000px;}
.w2e{width:94.860000px;}
.w34{width:95.220000px;}
.w26{width:95.580000px;}
.w2c{width:95.760000px;}
.w1c{width:113.616000px;}
.wf{width:113.976000px;}
.w1e{width:114.336000px;}
.w2f{width:126.936000px;}
.w27{width:127.656000px;}
.w1d{width:138.600000px;}
.w10{width:138.960000px;}
.w12{width:146.016000px;}
.w32{width:148.176000px;}
.w2a{width:148.896000px;}
.w13{width:154.260000px;}
.w2d{width:159.150000px;}
.w25{width:159.510000px;}
.w30{width:169.380000px;}
.w28{width:170.100000px;}
.w1a{width:178.410000px;}
.wd{width:178.770000px;}
.w3{width:180.930000px;}
.w11{width:188.130000px;}
.w31{width:222.510000px;}
.w29{width:223.230000px;}
.w23{width:472.755000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:1262.879981px;}
.wa{width:1262.880000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.x33{left:5.220000px;}
.x21{left:8.100000px;}
.x1d{left:9.360000px;}
.x20{left:10.440000px;}
.x13{left:12.600000px;}
.x22{left:13.680000px;}
.x39{left:17.280000px;}
.x37{left:18.360000px;}
.x35{left:21.240000px;}
.x23{left:23.220000px;}
.x24{left:26.460000px;}
.x2c{left:30.780000px;}
.x28{left:34.020000px;}
.x2f{left:36.180000px;}
.x31{left:41.760000px;}
.x2a{left:44.100000px;}
.x3a{left:54.000000px;}
.x26{left:60.156000px;}
.x11{left:63.714000px;}
.xd{left:73.619987px;}
.x1{left:127.655987px;}
.x6{left:137.915987px;}
.x5{left:144.575987px;}
.xb{left:148.895987px;}
.x42{left:154.649987px;}
.xe{left:157.709987px;}
.xc{left:181.649987px;}
.x3c{left:223.410000px;}
.x2{left:234.929987px;}
.x27{left:242.670000px;}
.x7{left:267.194987px;}
.x8{left:281.054987px;}
.x12{left:308.595000px;}
.x4{left:311.294987px;}
.x3d{left:318.990000px;}
.x29{left:332.490000px;}
.x9{left:340.094987px;}
.x14{left:348.735000px;}
.x15{left:388.695000px;}
.x16{left:428.295000px;}
.x2b{left:446.475000px;}
.x17{left:468.105000px;}
.x18{left:507.705000px;}
.x19{left:547.305000px;}
.x2d{left:585.435000px;}
.x1a{left:587.085000px;}
.x3e{left:616.755000px;}
.x1b{left:626.685000px;}
.x3{left:655.889987px;}
.x1c{left:666.510000px;}
.x34{left:700.125000px;}
.x1e{left:706.650000px;}
.x1f{left:746.790000px;}
.xf{left:748.949987px;}
.xa{left:757.409987px;}
.x10{left:759.929987px;}
.x2e{left:773.565000px;}
.x3f{left:839.985000px;}
.x36{left:846.825000px;}
.x30{left:919.590000px;}
.x40{left:988.890000px;}
.x38{left:1003.290000px;}
.x41{left:1052.610000px;}
.x32{left:1073.850000px;}
.x25{left:1152.869981px;}
.x3b{left:1174.139981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.307200pt;}
.ls28{letter-spacing:-0.280533pt;}
.ls20{letter-spacing:-0.201067pt;}
.ls1a{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.192533pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.158933pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.019840pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.079467pt;}
.ls27{letter-spacing:0.082133pt;}
.ls29{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.198933pt;}
.ls1d{letter-spacing:0.201067pt;}
.ls6{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.239360pt;}
.ls24{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.271360pt;}
.ls22{letter-spacing:0.438933pt;}
.ls23{letter-spacing:0.481067pt;}
.ls25{letter-spacing:0.560640pt;}
.ls13{letter-spacing:0.773120pt;}
.ls26{letter-spacing:0.840960pt;}
.lse{letter-spacing:5.248000pt;}
.ls2a{letter-spacing:8.448000pt;}
.ls11{letter-spacing:18.688000pt;}
.ls4{letter-spacing:58.991787pt;}
.ws0{word-spacing:-20.783360pt;}
.ws9{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.920000pt;}
.ws16{word-spacing:-17.856000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.wsc{word-spacing:-17.344000pt;}
.ws3{word-spacing:-16.922880pt;}
.wsf{word-spacing:-16.601707pt;}
.wse{word-spacing:-16.271573pt;}
.ws4{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.189013pt;}
.ws7{word-spacing:-12.999680pt;}
.ws10{word-spacing:-12.119573pt;}
.ws12{word-spacing:-11.759573pt;}
.ws11{word-spacing:-11.721707pt;}
.ws1b{word-spacing:-10.800427pt;}
.ws1a{word-spacing:-10.758293pt;}
.ws14{word-spacing:-10.520427pt;}
.ws19{word-spacing:-10.398827pt;}
.ws15{word-spacing:-10.319360pt;}
.ws17{word-spacing:-10.160427pt;}
.ws18{word-spacing:-10.118293pt;}
.ws1c{word-spacing:-10.038827pt;}
.ws13{word-spacing:-9.498347pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-12.620373pt;}
._25{margin-left:-10.888320pt;}
._23{margin-left:-9.511467pt;}
._22{margin-left:-7.904640pt;}
._24{margin-left:-6.891093pt;}
._26{margin-left:-5.677440pt;}
._14{margin-left:-4.734720pt;}
._12{margin-left:-3.525547pt;}
._e{margin-left:-2.247893pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.898560pt;}
._2{width:1.900800pt;}
._d{width:2.798080pt;}
._c{width:3.712000pt;}
._6{width:4.864000pt;}
._1b{width:5.760000pt;}
._7{width:7.042773pt;}
._11{width:8.637653pt;}
._9{width:9.728000pt;}
._8{width:10.880000pt;}
._13{width:12.608000pt;}
._28{width:13.504000pt;}
._39{width:14.477653pt;}
._1d{width:15.488000pt;}
._1c{width:16.448000pt;}
._1e{width:18.688000pt;}
._2c{width:19.765333pt;}
._2d{width:21.376000pt;}
._5{width:22.346667pt;}
._30{width:23.274667pt;}
._35{width:24.426667pt;}
._27{width:26.024960pt;}
._3c{width:26.916480pt;}
._10{width:27.840000pt;}
._f{width:29.144107pt;}
._17{width:30.090667pt;}
._1f{width:31.818667pt;}
._31{width:33.344000pt;}
._2e{width:34.392107pt;}
._a{width:35.328000pt;}
._b{width:36.234667pt;}
._34{width:37.824000pt;}
._37{width:39.296000pt;}
._3a{width:40.256000pt;}
._36{width:42.688000pt;}
._16{width:43.776000pt;}
._15{width:45.184000pt;}
._40{width:46.336000pt;}
._20{width:47.936000pt;}
._4b{width:49.045760pt;}
._4c{width:52.096000pt;}
._44{width:53.888000pt;}
._45{width:55.040000pt;}
._1a{width:56.640000pt;}
._2a{width:59.533440pt;}
._29{width:61.248000pt;}
._2f{width:62.912000pt;}
._3b{width:64.234667pt;}
._3f{width:65.899307pt;}
._2b{width:67.434667pt;}
._38{width:69.184000pt;}
._43{width:78.669440pt;}
._42{width:79.648000pt;}
._48{width:91.136000pt;}
._47{width:92.128000pt;}
._19{width:106.634667pt;}
._18{width:107.648000pt;}
._41{width:126.336000pt;}
._33{width:142.071893pt;}
._32{width:142.978773pt;}
._3{width:147.145387pt;}
._3d{width:149.674667pt;}
._4{width:167.983360pt;}
._3e{width:192.768000pt;}
._46{width:260.416000pt;}
._49{width:265.792000pt;}
._4a{width:267.594667pt;}
._4d{width:563.008000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:2.080000pt;}
.y10a{bottom:2.400000pt;}
.yaf{bottom:3.040000pt;}
.yb1{bottom:3.200000pt;}
.yb6{bottom:3.680000pt;}
.yb5{bottom:4.000000pt;}
.ye3{bottom:6.080000pt;}
.ye6{bottom:6.560000pt;}
.y125{bottom:7.520000pt;}
.y108{bottom:7.680000pt;}
.ye5{bottom:10.720000pt;}
.y124{bottom:12.800000pt;}
.y109{bottom:13.120000pt;}
.ye8{bottom:13.440000pt;}
.yf0{bottom:13.480000pt;}
.yeb{bottom:13.600000pt;}
.y110{bottom:13.640000pt;}
.yb9{bottom:16.320000pt;}
.y103{bottom:19.360000pt;}
.y112{bottom:24.640000pt;}
.yf3{bottom:24.800000pt;}
.yef{bottom:24.840000pt;}
.yf2{bottom:24.960000pt;}
.y100{bottom:25.000000pt;}
.y115{bottom:36.160000pt;}
.yee{bottom:36.200000pt;}
.y114{bottom:36.320000pt;}
.yed{bottom:36.360000pt;}
.y120{bottom:47.680000pt;}
.y2{bottom:51.040000pt;}
.ye0{bottom:51.200000pt;}
.y11f{bottom:59.040000pt;}
.y11e{bottom:59.200000pt;}
.y1{bottom:68.960000pt;}
.y13e{bottom:102.272000pt;}
.y3a{bottom:102.432000pt;}
.y19{bottom:107.232000pt;}
.y106{bottom:107.712000pt;}
.y93{bottom:111.232000pt;}
.yde{bottom:111.392000pt;}
.y7c{bottom:111.712000pt;}
.y5b{bottom:116.832000pt;}
.ya8{bottom:119.712000pt;}
.y13c{bottom:125.792000pt;}
.y105{bottom:126.112000pt;}
.y164{bottom:128.192000pt;}
.y39{bottom:129.952000pt;}
.y140{bottom:130.112000pt;}
.yac{bottom:133.466667pt;}
.y127{bottom:136.826667pt;}
.y92{bottom:138.746667pt;}
.ydd{bottom:139.066667pt;}
.y18{bottom:139.386667pt;}
.y104{bottom:144.506667pt;}
.y5a{bottom:144.666667pt;}
.ya7{bottom:147.386667pt;}
.y102{bottom:155.066667pt;}
.y163{bottom:155.866667pt;}
.y13d{bottom:157.466667pt;}
.y38{bottom:157.626667pt;}
.yab{bottom:161.146667pt;}
.y91{bottom:166.426667pt;}
.ydc{bottom:166.586667pt;}
.y7b{bottom:166.906667pt;}
.y123{bottom:169.626667pt;}
.y17{bottom:171.546667pt;}
.ya6{bottom:174.906667pt;}
.y162{bottom:183.386667pt;}
.y101{bottom:183.706667pt;}
.y13b{bottom:184.346667pt;}
.y37{bottom:185.146667pt;}
.y142{bottom:185.306667pt;}
.yaa{bottom:190.746667pt;}
.y122{bottom:192.346667pt;}
.y90{bottom:193.946667pt;}
.ydb{bottom:194.266667pt;}
.y7a{bottom:194.586667pt;}
.y95{bottom:194.746667pt;}
.y59{bottom:198.266667pt;}
.ya5{bottom:202.586667pt;}
.y16{bottom:203.866667pt;}
.y161{bottom:211.066667pt;}
.y13a{bottom:212.666667pt;}
.y36{bottom:212.826667pt;}
.ya9{bottom:213.306667pt;}
.y121{bottom:215.066667pt;}
.yff{bottom:217.946667pt;}
.y8f{bottom:221.626667pt;}
.yda{bottom:221.786667pt;}
.y79{bottom:222.106667pt;}
.y94{bottom:222.266667pt;}
.y58{bottom:225.146667pt;}
.ya4{bottom:230.106667pt;}
.y15{bottom:236.026667pt;}
.y11d{bottom:237.986667pt;}
.y160{bottom:238.586667pt;}
.y35{bottom:240.346667pt;}
.y139{bottom:240.506667pt;}
.y8e{bottom:249.146667pt;}
.yd9{bottom:249.466667pt;}
.y78{bottom:249.786667pt;}
.y57{bottom:252.026667pt;}
.yfe{bottom:252.226667pt;}
.ya3{bottom:257.786667pt;}
.y15f{bottom:266.266667pt;}
.y34{bottom:267.866667pt;}
.y138{bottom:268.026667pt;}
.y14{bottom:268.186667pt;}
.y56{bottom:269.946667pt;}
.yfd{bottom:275.106667pt;}
.y8d{bottom:276.826667pt;}
.yd8{bottom:276.986667pt;}
.y77{bottom:277.306667pt;}
.y16e{bottom:280.506667pt;}
.ya2{bottom:285.306667pt;}
.y55{bottom:287.866667pt;}
.y15e{bottom:293.786667pt;}
.y33{bottom:295.546667pt;}
.y137{bottom:295.706667pt;}
.yfc{bottom:297.826667pt;}
.y13{bottom:300.346667pt;}
.y8c{bottom:304.346667pt;}
.yd7{bottom:304.506667pt;}
.y76{bottom:304.986667pt;}
.y54{bottom:305.786667pt;}
.y11c{bottom:306.466667pt;}
.y16d{bottom:308.986667pt;}
.ya1{bottom:312.986667pt;}
.yfb{bottom:320.546667pt;}
.y15d{bottom:321.466667pt;}
.y32{bottom:323.066667pt;}
.y136{bottom:323.226667pt;}
.y53{bottom:323.706667pt;}
.y11b{bottom:329.346667pt;}
.y8b{bottom:332.066667pt;}
.yd6{bottom:332.226667pt;}
.y75{bottom:332.546667pt;}
.y12{bottom:332.706667pt;}
.y16c{bottom:338.306667pt;}
.ya0{bottom:340.546667pt;}
.y52{bottom:341.666667pt;}
.y15c{bottom:349.026667pt;}
.y31{bottom:350.786667pt;}
.y135{bottom:350.946667pt;}
.y11a{bottom:352.066667pt;}
.yfa{bottom:354.786667pt;}
.y8a{bottom:359.586667pt;}
.yd5{bottom:359.746667pt;}
.y74{bottom:360.226667pt;}
.y11{bottom:364.866667pt;}
.y16b{bottom:367.586667pt;}
.y9f{bottom:368.226667pt;}
.y51{bottom:368.546667pt;}
.y119{bottom:374.946667pt;}
.y15b{bottom:376.706667pt;}
.yf9{bottom:377.666667pt;}
.y30{bottom:378.306667pt;}
.y89{bottom:387.266667pt;}
.yd4{bottom:387.426667pt;}
.y73{bottom:387.746667pt;}
.y50{bottom:395.106667pt;}
.y9e{bottom:395.746667pt;}
.y16a{bottom:396.706667pt;}
.y10{bottom:397.026667pt;}
.y118{bottom:397.693333pt;}
.yf8{bottom:400.413333pt;}
.y15a{bottom:404.226667pt;}
.y134{bottom:405.826667pt;}
.y2f{bottom:405.986667pt;}
.y88{bottom:414.786667pt;}
.y9c{bottom:414.946667pt;}
.y72{bottom:415.426667pt;}
.y117{bottom:420.413333pt;}
.yf7{bottom:423.133333pt;}
.y4f{bottom:425.826667pt;}
.y169{bottom:425.986667pt;}
.yf{bottom:429.186667pt;}
.y159{bottom:431.906667pt;}
.y2e{bottom:433.506667pt;}
.y87{bottom:442.466667pt;}
.y9b{bottom:442.626667pt;}
.y9d{bottom:442.786667pt;}
.y71{bottom:442.946667pt;}
.y116{bottom:443.293333pt;}
.yf6{bottom:446.013333pt;}
.y168{bottom:455.266667pt;}
.y4e{bottom:455.586667pt;}
.y158{bottom:459.426667pt;}
.y133{bottom:461.026667pt;}
.y2d{bottom:461.186667pt;}
.ye{bottom:463.586667pt;}
.y113{bottom:466.013333pt;}
.yf5{bottom:468.733333pt;}
.y86{bottom:469.986667pt;}
.yd3{bottom:470.146667pt;}
.y70{bottom:470.626667pt;}
.y4d{bottom:481.666667pt;}
.y167{bottom:484.546667pt;}
.y157{bottom:487.106667pt;}
.y2c{bottom:488.706667pt;}
.y132{bottom:488.866667pt;}
.yf4{bottom:491.613333pt;}
.y85{bottom:497.666667pt;}
.yd2{bottom:497.826667pt;}
.y6f{bottom:498.146667pt;}
.yd{bottom:500.386667pt;}
.y4c{bottom:507.746667pt;}
.y111{bottom:511.773333pt;}
.y166{bottom:513.826667pt;}
.yf1{bottom:514.333333pt;}
.y156{bottom:514.626667pt;}
.y131{bottom:516.226667pt;}
.y2b{bottom:516.386667pt;}
.y84{bottom:525.186667pt;}
.yd1{bottom:525.346667pt;}
.y6e{bottom:525.826667pt;}
.yc{bottom:537.186667pt;}
.y4b{bottom:537.346667pt;}
.y155{bottom:542.306667pt;}
.y165{bottom:543.106667pt;}
.y2a{bottom:543.906667pt;}
.y10f{bottom:545.853333pt;}
.yec{bottom:548.573333pt;}
.y83{bottom:552.866667pt;}
.yd0{bottom:553.026667pt;}
.y6d{bottom:553.346667pt;}
.y4a{bottom:564.253333pt;}
.y154{bottom:569.853333pt;}
.y130{bottom:571.453333pt;}
.y29{bottom:571.613333pt;}
.yb{bottom:571.773333pt;}
.y10e{bottom:580.133333pt;}
.y82{bottom:580.413333pt;}
.ycf{bottom:580.573333pt;}
.y6c{bottom:581.053333pt;}
.y49{bottom:591.133333pt;}
.yea{bottom:594.213333pt;}
.y153{bottom:597.373333pt;}
.y28{bottom:599.133333pt;}
.y13f{bottom:599.293333pt;}
.ya{bottom:604.093333pt;}
.y81{bottom:608.093333pt;}
.yce{bottom:608.253333pt;}
.y6b{bottom:608.573333pt;}
.y10d{bottom:614.373333pt;}
.ye9{bottom:617.093333pt;}
.y48{bottom:617.853333pt;}
.y152{bottom:625.053333pt;}
.y12f{bottom:626.653333pt;}
.y27{bottom:626.813333pt;}
.y80{bottom:635.613333pt;}
.y9{bottom:636.253333pt;}
.ycd{bottom:636.573333pt;}
.y10c{bottom:637.253333pt;}
.ye7{bottom:639.813333pt;}
.y47{bottom:644.733333pt;}
.y151{bottom:652.573333pt;}
.y26{bottom:654.333333pt;}
.y143{bottom:654.493333pt;}
.ycc{bottom:658.653333pt;}
.y10b{bottom:659.973333pt;}
.ye4{bottom:662.533333pt;}
.y7f{bottom:663.293333pt;}
.y6a{bottom:663.773333pt;}
.y8{bottom:668.413333pt;}
.ycb{bottom:670.013333pt;}
.y46{bottom:671.613333pt;}
.y150{bottom:680.253333pt;}
.yca{bottom:681.373333pt;}
.y12e{bottom:681.853333pt;}
.y25{bottom:682.013333pt;}
.ye2{bottom:682.533333pt;}
.y107{bottom:682.693333pt;}
.y7e{bottom:690.813333pt;}
.y69{bottom:691.453333pt;}
.yc9{bottom:692.893333pt;}
.y45{bottom:698.493333pt;}
.y7{bottom:700.573333pt;}
.yc8{bottom:704.253333pt;}
.y14f{bottom:707.773333pt;}
.y24{bottom:709.533333pt;}
.y141{bottom:709.693333pt;}
.yc7{bottom:715.773333pt;}
.ye1{bottom:716.293333pt;}
.y9a{bottom:718.493333pt;}
.y7d{bottom:718.813333pt;}
.y68{bottom:718.973333pt;}
.yc6{bottom:725.213333pt;}
.y44{bottom:725.373333pt;}
.y6{bottom:726.973333pt;}
.ydf{bottom:732.640000pt;}
.y14e{bottom:735.453333pt;}
.y12d{bottom:737.053333pt;}
.y23{bottom:737.213333pt;}
.yc5{bottom:738.333333pt;}
.y99{bottom:746.013333pt;}
.y67{bottom:746.493333pt;}
.yc4{bottom:751.453333pt;}
.y43{bottom:752.253333pt;}
.y14d{bottom:762.973333pt;}
.yc3{bottom:764.413333pt;}
.y22{bottom:764.733333pt;}
.y98{bottom:774.013333pt;}
.y66{bottom:774.173333pt;}
.yc2{bottom:777.533333pt;}
.y42{bottom:779.133333pt;}
.yc1{bottom:790.693333pt;}
.y12c{bottom:792.293333pt;}
.y21{bottom:792.453333pt;}
.y65{bottom:801.733333pt;}
.yc0{bottom:803.813333pt;}
.y41{bottom:805.893333pt;}
.ybf{bottom:816.933333pt;}
.y14c{bottom:818.213333pt;}
.y20{bottom:819.973333pt;}
.y64{bottom:829.413333pt;}
.ybe{bottom:829.893333pt;}
.y40{bottom:832.773333pt;}
.ybd{bottom:843.013333pt;}
.y14b{bottom:845.893333pt;}
.y12b{bottom:847.493333pt;}
.y1f{bottom:847.653333pt;}
.ybc{bottom:856.133333pt;}
.y63{bottom:856.933333pt;}
.y3f{bottom:859.653333pt;}
.ybb{bottom:869.253333pt;}
.y14a{bottom:873.413333pt;}
.y1e{bottom:875.173333pt;}
.y145{bottom:875.333333pt;}
.yba{bottom:882.213333pt;}
.y62{bottom:884.613333pt;}
.y3e{bottom:886.533333pt;}
.yb8{bottom:895.333333pt;}
.y149{bottom:901.093333pt;}
.y12a{bottom:902.693333pt;}
.y1d{bottom:902.853333pt;}
.y61{bottom:912.133333pt;}
.y3d{bottom:913.413333pt;}
.yb7{bottom:921.573333pt;}
.y148{bottom:928.613333pt;}
.y1c{bottom:930.373333pt;}
.y3c{bottom:932.293333pt;}
.yb4{bottom:934.533333pt;}
.y60{bottom:939.813333pt;}
.yb3{bottom:948.453333pt;}
.y3b{bottom:955.173333pt;}
.y147{bottom:956.293333pt;}
.y129{bottom:957.893333pt;}
.y1b{bottom:958.053333pt;}
.yb2{bottom:961.573333pt;}
.y5{bottom:962.533333pt;}
.y5f{bottom:967.333333pt;}
.yb0{bottom:974.693333pt;}
.y146{bottom:984.773333pt;}
.y1a{bottom:985.573333pt;}
.y144{bottom:985.733333pt;}
.yae{bottom:987.813333pt;}
.y4{bottom:989.573333pt;}
.y5e{bottom:995.013333pt;}
.y97{bottom:995.173333pt;}
.y128{bottom:1013.093333pt;}
.y3{bottom:1013.253333pt;}
.y5d{bottom:1022.560000pt;}
.y96{bottom:1022.720000pt;}
.yad{bottom:1024.000000pt;}
.y5c{bottom:1061.440000pt;}
.ha{height:12.960000pt;}
.hc{height:13.120000pt;}
.hf{height:13.152000pt;}
.hd{height:13.920000pt;}
.h13{height:18.400000pt;}
.h14{height:19.360000pt;}
.h22{height:21.440000pt;}
.h1d{height:21.600000pt;}
.h15{height:22.080000pt;}
.h19{height:22.112000pt;}
.h16{height:22.240000pt;}
.h21{height:22.272000pt;}
.he{height:26.240000pt;}
.h1b{height:28.000000pt;}
.h1e{height:33.440000pt;}
.h18{height:33.600000pt;}
.h1a{height:33.632000pt;}
.h10{height:38.715000pt;}
.hb{height:44.722500pt;}
.h1f{height:44.960000pt;}
.h17{height:44.992000pt;}
.h23{height:45.051250pt;}
.h4{height:50.062500pt;}
.h1c{height:55.402500pt;}
.h2{height:58.563750pt;}
.h8{height:60.288750pt;}
.h9{height:61.410000pt;}
.h3{height:66.750000pt;}
.h20{height:67.840000pt;}
.h7{height:76.671562pt;}
.h5{height:78.097500pt;}
.h6{height:88.777500pt;}
.h11{height:793.760000pt;}
.h12{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:35.200000pt;}
.w8{width:35.360000pt;}
.w7{width:35.392000pt;}
.w5{width:35.520000pt;}
.w4{width:35.680000pt;}
.w9{width:53.120000pt;}
.w33{width:56.000000pt;}
.w2b{width:56.640000pt;}
.w19{width:62.400000pt;}
.w22{width:62.720000pt;}
.w17{width:64.352000pt;}
.w16{width:64.480000pt;}
.w20{width:64.672000pt;}
.w1f{width:64.960000pt;}
.w15{width:65.280000pt;}
.w14{width:66.400000pt;}
.w21{width:73.760000pt;}
.w18{width:74.080000pt;}
.w24{width:75.392000pt;}
.w1b{width:79.520000pt;}
.we{width:79.840000pt;}
.w2e{width:84.320000pt;}
.w34{width:84.640000pt;}
.w26{width:84.960000pt;}
.w2c{width:85.120000pt;}
.w1c{width:100.992000pt;}
.wf{width:101.312000pt;}
.w1e{width:101.632000pt;}
.w2f{width:112.832000pt;}
.w27{width:113.472000pt;}
.w1d{width:123.200000pt;}
.w10{width:123.520000pt;}
.w12{width:129.792000pt;}
.w32{width:131.712000pt;}
.w2a{width:132.352000pt;}
.w13{width:137.120000pt;}
.w2d{width:141.466667pt;}
.w25{width:141.786667pt;}
.w30{width:150.560000pt;}
.w28{width:151.200000pt;}
.w1a{width:158.586667pt;}
.wd{width:158.906667pt;}
.w3{width:160.826667pt;}
.w11{width:167.226667pt;}
.w31{width:197.786667pt;}
.w29{width:198.426667pt;}
.w23{width:420.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:1122.559983pt;}
.wa{width:1122.560000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x33{left:4.640000pt;}
.x21{left:7.200000pt;}
.x1d{left:8.320000pt;}
.x20{left:9.280000pt;}
.x13{left:11.200000pt;}
.x22{left:12.160000pt;}
.x39{left:15.360000pt;}
.x37{left:16.320000pt;}
.x35{left:18.880000pt;}
.x23{left:20.640000pt;}
.x24{left:23.520000pt;}
.x2c{left:27.360000pt;}
.x28{left:30.240000pt;}
.x2f{left:32.160000pt;}
.x31{left:37.120000pt;}
.x2a{left:39.200000pt;}
.x3a{left:48.000000pt;}
.x26{left:53.472000pt;}
.x11{left:56.634667pt;}
.xd{left:65.439988pt;}
.x1{left:113.471988pt;}
.x6{left:122.591988pt;}
.x5{left:128.511988pt;}
.xb{left:132.351988pt;}
.x42{left:137.466655pt;}
.xe{left:140.186655pt;}
.xc{left:161.466655pt;}
.x3c{left:198.586667pt;}
.x2{left:208.826655pt;}
.x27{left:215.706667pt;}
.x7{left:237.506655pt;}
.x8{left:249.826655pt;}
.x12{left:274.306667pt;}
.x4{left:276.706655pt;}
.x3d{left:283.546667pt;}
.x29{left:295.546667pt;}
.x9{left:302.306655pt;}
.x14{left:309.986667pt;}
.x15{left:345.506667pt;}
.x16{left:380.706667pt;}
.x2b{left:396.866667pt;}
.x17{left:416.093333pt;}
.x18{left:451.293333pt;}
.x19{left:486.493333pt;}
.x2d{left:520.386667pt;}
.x1a{left:521.853333pt;}
.x3e{left:548.226667pt;}
.x1b{left:557.053333pt;}
.x3{left:583.013322pt;}
.x1c{left:592.453333pt;}
.x34{left:622.333333pt;}
.x1e{left:628.133333pt;}
.x1f{left:663.813333pt;}
.xf{left:665.733322pt;}
.xa{left:673.253322pt;}
.x10{left:675.493322pt;}
.x2e{left:687.613333pt;}
.x3f{left:746.653333pt;}
.x36{left:752.733333pt;}
.x30{left:817.413333pt;}
.x40{left:879.013333pt;}
.x38{left:891.813333pt;}
.x41{left:935.653333pt;}
.x32{left:954.533333pt;}
.x25{left:1024.773317pt;}
.x3b{left:1043.679983pt;}
}




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