
    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_2b01d86948ce5ca46b98da49.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9df1623fc4b6272376161f49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_95723aafbccf2857c293615f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4892989f114a5677db726b93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_44b34c3f09fac517428af0bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_37b93045aea874f0d5a3093e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.200410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200410,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209235,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);}
.m5{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,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;}
.v1{vertical-align:25.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.318000px;}
.ls6{letter-spacing:0.336000px;}
.ls8{letter-spacing:5.118000px;}
.ls3{letter-spacing:7.518000px;}
.ls7{letter-spacing:8.118000px;}
.lsd{letter-spacing:8.743565px;}
.lse{letter-spacing:9.674906px;}
.ls5{letter-spacing:9.918000px;}
.ls1{letter-spacing:12.918000px;}
.ls2{letter-spacing:13.518000px;}
.ls9{letter-spacing:176.472000px;}
.lsa{letter-spacing:179.766000px;}
.lsb{letter-spacing:182.880000px;}
.lsc{letter-spacing:185.640000px;}
.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:-18.282000px;}
.wsf{word-spacing:-18.115800px;}
.ws14{word-spacing:-15.789000px;}
.ws11{word-spacing:-14.459400px;}
.ws7{word-spacing:-13.632000px;}
.ws4{word-spacing:-13.296000px;}
.ws1{word-spacing:-10.636800px;}
.ws10{word-spacing:-6.576399px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:161.928000px;}
.ws6{word-spacing:213.780000px;}
.ws13{word-spacing:229.419909px;}
.ws5{word-spacing:233.928000px;}
.wse{word-spacing:235.737234px;}
.ws8{word-spacing:244.416000px;}
.wsc{word-spacing:262.298034px;}
.ws9{word-spacing:266.166056px;}
.wsd{word-spacing:358.973634px;}
.wsa{word-spacing:405.883434px;}
.wsb{word-spacing:418.465352px;}
.ws12{word-spacing:423.725954px;}
._31{margin-left:-2487.468000px;}
._2d{margin-left:-1892.964000px;}
._2f{margin-left:-1633.602000px;}
._2b{margin-left:-1508.118000px;}
._33{margin-left:-1497.096000px;}
._35{margin-left:-972.120000px;}
._22{margin-left:-561.666000px;}
._19{margin-left:-546.882000px;}
._24{margin-left:-506.424000px;}
._20{margin-left:-316.014000px;}
._1b{margin-left:-253.578000px;}
._1e{margin-left:-181.836000px;}
._37{margin-left:-17.994000px;}
._12{margin-left:-8.226000px;}
._13{margin-left:-6.690000px;}
._c{margin-left:-5.610000px;}
._7{margin-left:-4.566000px;}
._0{margin-left:-3.024000px;}
._5{margin-left:-1.056000px;}
._1{width:1.176000px;}
._2{width:2.574000px;}
._3{width:4.050000px;}
._6{width:5.070000px;}
._a{width:6.138000px;}
._4{width:7.524000px;}
._b{width:8.580000px;}
._8{width:10.494000px;}
._9{width:12.012000px;}
._e{width:13.728000px;}
._17{width:15.366000px;}
._d{width:16.380000px;}
._f{width:20.142000px;}
._15{width:21.252000px;}
._11{width:22.506000px;}
._10{width:24.126000px;}
._16{width:26.994000px;}
._29{width:28.182000px;}
._67{width:29.242635px;}
._18{width:30.768000px;}
._6c{width:36.003812px;}
._54{width:39.064499px;}
._66{width:46.600699px;}
._6b{width:53.228989px;}
._2a{width:55.176000px;}
._28{width:58.674000px;}
._4e{width:60.962369px;}
._38{width:71.774613px;}
._69{width:75.084711px;}
._63{width:80.336835px;}
._51{width:83.101169px;}
._8b{width:84.483909px;}
._39{width:86.292353px;}
._3e{width:87.463256px;}
._55{width:89.686769px;}
._88{width:102.469520px;}
._8e{width:105.918909px;}
._53{width:107.362173px;}
._4b{width:109.887775px;}
._3c{width:113.307353px;}
._89{width:116.606969px;}
._3b{width:120.523413px;}
._68{width:126.136789px;}
._65{width:133.192412px;}
._8c{width:138.637520px;}
._1f{width:144.936000px;}
._8a{width:148.808508px;}
._14{width:161.022000px;}
._4d{width:165.530699px;}
._70{width:168.464371px;}
._7e{width:182.010481px;}
._77{width:183.250970px;}
._64{width:184.787989px;}
._92{width:185.874192px;}
._4f{width:189.381749px;}
._99{width:200.554621px;}
._1c{width:216.348000px;}
._a5{width:218.817942px;}
._86{width:220.983827px;}
._8f{width:222.654942px;}
._5b{width:225.172913px;}
._1d{width:232.326000px;}
._6a{width:236.170635px;}
._48{width:245.442017px;}
._8d{width:246.762957px;}
._3a{width:249.292033px;}
._4c{width:257.591973px;}
._27{width:258.912000px;}
._44{width:263.763699px;}
._26{width:269.022000px;}
._82{width:275.544827px;}
._21{width:278.718000px;}
._83{width:286.823627px;}
._a2{width:290.082942px;}
._3f{width:309.030813px;}
._62{width:317.635343px;}
._a1{width:324.393942px;}
._84{width:330.256427px;}
._52{width:332.666575px;}
._a3{width:338.124942px;}
._5f{width:342.219143px;}
._7c{width:343.256627px;}
._9e{width:351.801942px;}
._50{width:354.242699px;}
._91{width:363.864204px;}
._6f{width:371.086064px;}
._95{width:378.612175px;}
._9d{width:380.650775px;}
._3d{width:382.823233px;}
._74{width:384.571580px;}
._81{width:386.586321px;}
._61{width:392.903438px;}
._98{width:395.511558px;}
._75{width:399.970511px;}
._85{width:403.215227px;}
._97{width:407.389153px;}
._9b{width:410.094815px;}
._90{width:414.119785px;}
._94{width:416.771441px;}
._a4{width:418.542942px;}
._9f{width:424.775245px;}
._9c{width:429.571408px;}
._6e{width:431.718810px;}
._5c{width:445.269437px;}
._73{width:447.249181px;}
._6d{width:448.473926px;}
._56{width:452.912837px;}
._7b{width:459.162827px;}
._76{width:461.903528px;}
._79{width:464.004296px;}
._25{width:469.524000px;}
._4a{width:475.308246px;}
._7f{width:477.489812px;}
._9a{width:480.762942px;}
._80{width:488.280316px;}
._40{width:490.209883px;}
._47{width:493.825527px;}
._78{width:498.328685px;}
._7a{width:503.866600px;}
._5a{width:505.847530px;}
._1a{width:509.718000px;}
._43{width:513.960846px;}
._71{width:516.966827px;}
._23{width:524.106000px;}
._96{width:532.257942px;}
._93{width:544.116942px;}
._72{width:551.957627px;}
._49{width:565.473896px;}
._41{width:581.409041px;}
._87{width:584.388827px;}
._42{width:587.402014px;}
._59{width:600.902667px;}
._45{width:602.315124px;}
._46{width:605.723696px;}
._a6{width:618.210942px;}
._5e{width:637.737267px;}
._57{width:644.313674px;}
._60{width:661.688168px;}
._58{width:672.006903px;}
._7d{width:686.303027px;}
._5d{width:691.467010px;}
._a0{width:729.837942px;}
._36{width:935.748000px;}
._34{width:1459.524000px;}
._2c{width:1470.348000px;}
._30{width:1595.088000px;}
._2e{width:1855.524000px;}
._32{width:2448.930000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.400000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:52.200000px;}
.fs9{font-size:57.000000px;}
.fs8{font-size:62.400000px;}
.fs6{font-size:65.400000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:71.400000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.ycf{bottom:3.450000px;}
.y157{bottom:6.900000px;}
.y14f{bottom:7.500000px;}
.y7b{bottom:15.450000px;}
.y17b{bottom:22.650000px;}
.y1a4{bottom:25.050000px;}
.y156{bottom:27.750000px;}
.y14e{bottom:30.150000px;}
.y7c{bottom:31.200000px;}
.ybc{bottom:32.700000px;}
.y179{bottom:37.350000px;}
.y17a{bottom:39.150000px;}
.y1a2{bottom:41.250000px;}
.y1a3{bottom:43.350000px;}
.y155{bottom:48.600000px;}
.y7d{bottom:49.650000px;}
.y14d{bottom:52.800000px;}
.ybd{bottom:54.150000px;}
.y178{bottom:55.800000px;}
.y1a1{bottom:61.500000px;}
.y154{bottom:69.300000px;}
.y177{bottom:72.300000px;}
.y14c{bottom:75.450000px;}
.ybe{bottom:75.600000px;}
.y1a0{bottom:79.800000px;}
.y7e{bottom:87.750000px;}
.y176{bottom:88.950000px;}
.y28{bottom:89.400000px;}
.ybf{bottom:97.200000px;}
.y19f{bottom:97.950000px;}
.y14b{bottom:98.100000px;}
.y153{bottom:98.250000px;}
.y69{bottom:99.750000px;}
.y118{bottom:103.350000px;}
.y79{bottom:105.000000px;}
.y175{bottom:105.450000px;}
.yba{bottom:107.100000px;}
.yfb{bottom:107.250000px;}
.y27{bottom:108.300000px;}
.y88{bottom:111.750000px;}
.y145{bottom:115.200000px;}
.y19e{bottom:116.100000px;}
.y149{bottom:116.850000px;}
.y68{bottom:118.650000px;}
.y14a{bottom:119.100000px;}
.y148{bottom:120.750000px;}
.y174{bottom:122.100000px;}
.y117{bottom:122.400000px;}
.y78{bottom:124.050000px;}
.y7f{bottom:125.850000px;}
.yb9{bottom:126.000000px;}
.yfa{bottom:126.150000px;}
.y26{bottom:127.350000px;}
.y87{bottom:127.500000px;}
.y19d{bottom:134.400000px;}
.y67{bottom:137.700000px;}
.y173{bottom:138.600000px;}
.y152{bottom:139.800000px;}
.yc0{bottom:140.100000px;}
.y116{bottom:141.750000px;}
.y137{bottom:142.050000px;}
.y86{bottom:143.250000px;}
.y147{bottom:143.400000px;}
.yb8{bottom:145.050000px;}
.yf9{bottom:145.200000px;}
.y25{bottom:146.250000px;}
.y19c{bottom:152.550000px;}
.y172{bottom:155.250000px;}
.y6c{bottom:156.600000px;}
.y151{bottom:160.650000px;}
.y136{bottom:160.950000px;}
.y85{bottom:161.400000px;}
.yc1{bottom:161.550000px;}
.y77{bottom:162.000000px;}
.y115{bottom:163.350000px;}
.y80{bottom:163.800000px;}
.yf8{bottom:164.100000px;}
.y24{bottom:165.300000px;}
.y146{bottom:166.050000px;}
.y19b{bottom:170.700000px;}
.y171{bottom:171.750000px;}
.y66{bottom:175.650000px;}
.y84{bottom:177.150000px;}
.y135{bottom:180.150000px;}
.y76{bottom:180.900000px;}
.y114{bottom:182.850000px;}
.yb7{bottom:183.000000px;}
.yc2{bottom:183.150000px;}
.y23{bottom:184.200000px;}
.y16f{bottom:186.450000px;}
.y52{bottom:186.600000px;}
.y170{bottom:188.250000px;}
.y19a{bottom:189.000000px;}
.y150{bottom:190.800000px;}
.y65{bottom:194.550000px;}
.y17e{bottom:197.850000px;}
.y75{bottom:199.950000px;}
.y81{bottom:201.900000px;}
.y22{bottom:203.250000px;}
.y113{bottom:204.450000px;}
.yc3{bottom:204.600000px;}
.y16e{bottom:204.900000px;}
.y198{bottom:205.050000px;}
.y51{bottom:205.500000px;}
.y199{bottom:207.150000px;}
.y64{bottom:213.600000px;}
.y74{bottom:218.850000px;}
.y134{bottom:219.600000px;}
.yb6{bottom:220.950000px;}
.yf7{bottom:221.100000px;}
.y16d{bottom:221.400000px;}
.y112{bottom:223.500000px;}
.y50{bottom:224.550000px;}
.y197{bottom:225.450000px;}
.yc4{bottom:226.050000px;}
.y63{bottom:232.500000px;}
.y17d{bottom:235.800000px;}
.y73{bottom:237.900000px;}
.y16c{bottom:238.050000px;}
.y82{bottom:239.850000px;}
.yf6{bottom:240.000000px;}
.y21{bottom:241.200000px;}
.y4f{bottom:243.450000px;}
.y196{bottom:243.600000px;}
.yc5{bottom:247.500000px;}
.y62{bottom:251.550000px;}
.y111{bottom:252.600000px;}
.y16b{bottom:254.550000px;}
.y17c{bottom:254.850000px;}
.y133{bottom:258.900000px;}
.yf5{bottom:259.050000px;}
.y20{bottom:260.100000px;}
.y195{bottom:261.750000px;}
.y4e{bottom:262.500000px;}
.yc6{bottom:269.100000px;}
.y169{bottom:269.400000px;}
.y61{bottom:270.450000px;}
.y16a{bottom:271.200000px;}
.y110{bottom:272.100000px;}
.yb5{bottom:277.800000px;}
.y83{bottom:277.950000px;}
.y1f{bottom:279.150000px;}
.y194{bottom:280.050000px;}
.y4d{bottom:281.400000px;}
.ya5{bottom:282.600000px;}
.y168{bottom:287.700000px;}
.y60{bottom:289.500000px;}
.yc7{bottom:290.550000px;}
.y192{bottom:296.100000px;}
.yb4{bottom:296.850000px;}
.yf4{bottom:297.000000px;}
.y1e{bottom:298.050000px;}
.y193{bottom:298.200000px;}
.y4c{bottom:300.450000px;}
.ya4{bottom:301.500000px;}
.y10f{bottom:302.700000px;}
.y167{bottom:304.200000px;}
.y5f{bottom:308.400000px;}
.yc8{bottom:312.000000px;}
.y72{bottom:313.800000px;}
.yb3{bottom:315.750000px;}
.yf3{bottom:315.900000px;}
.y191{bottom:316.500000px;}
.y132{bottom:317.100000px;}
.y165{bottom:319.050000px;}
.ya3{bottom:320.550000px;}
.y166{bottom:320.850000px;}
.y10e{bottom:321.600000px;}
.y5e{bottom:327.450000px;}
.yd2{bottom:332.850000px;}
.yc9{bottom:333.450000px;}
.y190{bottom:334.650000px;}
.yb2{bottom:334.800000px;}
.y1d{bottom:336.000000px;}
.y163{bottom:337.350000px;}
.ya2{bottom:339.450000px;}
.y144{bottom:339.600000px;}
.y10d{bottom:341.100000px;}
.y5d{bottom:346.350000px;}
.y7a{bottom:348.300000px;}
.yd1{bottom:348.600000px;}
.y18e{bottom:350.700000px;}
.y18f{bottom:352.800000px;}
.yb1{bottom:353.700000px;}
.yca{bottom:354.900000px;}
.y1c{bottom:355.050000px;}
.yf2{bottom:355.650000px;}
.y4b{bottom:356.400000px;}
.y162{bottom:357.000000px;}
.y143{bottom:358.500000px;}
.y10c{bottom:362.700000px;}
.y5c{bottom:365.400000px;}
.yd0{bottom:366.750000px;}
.y18d{bottom:371.100000px;}
.yb0{bottom:372.750000px;}
.y161{bottom:373.650000px;}
.y1b{bottom:373.950000px;}
.yf1{bottom:374.550000px;}
.y4a{bottom:375.300000px;}
.ycb{bottom:376.500000px;}
.ya1{bottom:377.400000px;}
.y10b{bottom:382.050000px;}
.y5b{bottom:384.300000px;}
.y18c{bottom:389.250000px;}
.y160{bottom:390.150000px;}
.y1a{bottom:393.000000px;}
.yf0{bottom:393.600000px;}
.y49{bottom:394.350000px;}
.ya0{bottom:396.450000px;}
.ycc{bottom:397.950000px;}
.y5a{bottom:403.350000px;}
.y10a{bottom:403.650000px;}
.y15f{bottom:406.800000px;}
.y18b{bottom:407.550000px;}
.yaf{bottom:410.700000px;}
.y19{bottom:411.900000px;}
.y131{bottom:412.350000px;}
.yef{bottom:412.500000px;}
.y48{bottom:413.250000px;}
.y9f{bottom:415.350000px;}
.ycd{bottom:419.400000px;}
.y6b{bottom:422.250000px;}
.y109{bottom:423.150000px;}
.y15e{bottom:423.300000px;}
.y18a{bottom:425.700000px;}
.yae{bottom:429.600000px;}
.y18{bottom:430.950000px;}
.yee{bottom:431.550000px;}
.y47{bottom:432.300000px;}
.y9e{bottom:434.400000px;}
.y15d{bottom:439.950000px;}
.yce{bottom:441.000000px;}
.y59{bottom:441.300000px;}
.y189{bottom:443.850000px;}
.yad{bottom:448.650000px;}
.yed{bottom:450.450000px;}
.y130{bottom:453.000000px;}
.y9d{bottom:453.300000px;}
.y108{bottom:453.750000px;}
.y15c{bottom:456.450000px;}
.y46{bottom:460.200000px;}
.y188{bottom:462.150000px;}
.yac{bottom:467.550000px;}
.y17{bottom:468.900000px;}
.yec{bottom:469.500000px;}
.y12f{bottom:471.900000px;}
.y9c{bottom:472.350000px;}
.y15b{bottom:472.950000px;}
.y107{bottom:473.100000px;}
.y45{bottom:479.250000px;}
.y187{bottom:480.300000px;}
.y16{bottom:487.800000px;}
.y15a{bottom:489.600000px;}
.y12e{bottom:490.950000px;}
.yeb{bottom:497.400000px;}
.y17f{bottom:498.000000px;}
.y44{bottom:498.150000px;}
.y186{bottom:498.600000px;}
.y183{bottom:500.100000px;}
.y106{bottom:503.700000px;}
.yab{bottom:505.500000px;}
.y159{bottom:506.100000px;}
.y15{bottom:506.850000px;}
.y158{bottom:507.600000px;}
.y164{bottom:509.400000px;}
.y9b{bottom:510.300000px;}
.yea{bottom:516.450000px;}
.y185{bottom:516.750000px;}
.y43{bottom:517.200000px;}
.y105{bottom:523.200000px;}
.yaa{bottom:524.550000px;}
.y14{bottom:525.750000px;}
.y9a{bottom:529.650000px;}
.y184{bottom:532.800000px;}
.y182{bottom:534.900000px;}
.ye9{bottom:535.350000px;}
.y42{bottom:536.100000px;}
.ya9{bottom:543.450000px;}
.y13{bottom:544.800000px;}
.y99{bottom:549.900000px;}
.y12d{bottom:550.950000px;}
.y181{bottom:553.200000px;}
.y104{bottom:553.800000px;}
.ye8{bottom:554.400000px;}
.y41{bottom:555.150000px;}
.ya8{bottom:562.500000px;}
.y12{bottom:563.700000px;}
.y98{bottom:568.950000px;}
.y12c{bottom:569.850000px;}
.y180{bottom:571.350000px;}
.y103{bottom:572.700000px;}
.ye7{bottom:573.300000px;}
.y40{bottom:574.050000px;}
.ya7{bottom:581.400000px;}
.y11{bottom:582.750000px;}
.y12b{bottom:589.350000px;}
.y102{bottom:592.200000px;}
.ye6{bottom:592.350000px;}
.y3f{bottom:593.100000px;}
.y10{bottom:601.650000px;}
.y97{bottom:606.900000px;}
.ye5{bottom:611.250000px;}
.y58{bottom:612.000000px;}
.y101{bottom:622.800000px;}
.y96{bottom:625.800000px;}
.ye4{bottom:630.300000px;}
.y3e{bottom:631.050000px;}
.y12a{bottom:631.650000px;}
.yf{bottom:639.600000px;}
.y100{bottom:642.150000px;}
.y95{bottom:644.850000px;}
.ye3{bottom:649.200000px;}
.y3d{bottom:649.950000px;}
.y129{bottom:650.550000px;}
.ya6{bottom:657.300000px;}
.y94{bottom:663.750000px;}
.ye2{bottom:668.250000px;}
.y3c{bottom:669.000000px;}
.y128{bottom:670.050000px;}
.yff{bottom:672.750000px;}
.ye{bottom:677.550000px;}
.y93{bottom:682.800000px;}
.ye1{bottom:687.150000px;}
.y3b{bottom:687.900000px;}
.ybb{bottom:691.950000px;}
.yfe{bottom:692.250000px;}
.y3a{bottom:706.950000px;}
.y127{bottom:712.350000px;}
.y71{bottom:713.400000px;}
.y142{bottom:716.700000px;}
.y92{bottom:720.750000px;}
.yfd{bottom:722.850000px;}
.y57{bottom:725.850000px;}
.ye0{bottom:726.900000px;}
.y126{bottom:731.250000px;}
.y141{bottom:735.600000px;}
.y91{bottom:739.650000px;}
.y70{bottom:741.750000px;}
.yfc{bottom:742.200000px;}
.y39{bottom:744.900000px;}
.ydf{bottom:745.800000px;}
.y125{bottom:750.750000px;}
.y90{bottom:758.700000px;}
.y6f{bottom:762.150000px;}
.y38{bottom:763.800000px;}
.yde{bottom:764.850000px;}
.y8f{bottom:777.600000px;}
.y6e{bottom:781.500000px;}
.y37{bottom:782.850000px;}
.ydd{bottom:783.750000px;}
.y124{bottom:791.250000px;}
.yd{bottom:791.400000px;}
.y8e{bottom:796.650000px;}
.y36{bottom:801.750000px;}
.ydc{bottom:802.800000px;}
.yc{bottom:810.450000px;}
.y8d{bottom:815.550000px;}
.y6a{bottom:820.800000px;}
.ydb{bottom:821.700000px;}
.y140{bottom:830.550000px;}
.y8c{bottom:834.600000px;}
.y35{bottom:839.700000px;}
.yda{bottom:840.750000px;}
.y123{bottom:848.250000px;}
.yb{bottom:848.400000px;}
.y13f{bottom:849.450000px;}
.y56{bottom:858.750000px;}
.yd9{bottom:859.650000px;}
.y122{bottom:867.150000px;}
.ya{bottom:867.300000px;}
.y8b{bottom:872.850000px;}
.y55{bottom:877.650000px;}
.y9{bottom:886.350000px;}
.yd8{bottom:887.700000px;}
.y8a{bottom:893.550000px;}
.y34{bottom:896.700000px;}
.y8{bottom:905.250000px;}
.yd7{bottom:906.600000px;}
.y89{bottom:914.250000px;}
.y33{bottom:915.600000px;}
.y7{bottom:924.300000px;}
.yd6{bottom:925.650000px;}
.y32{bottom:934.650000px;}
.y6{bottom:943.200000px;}
.y13e{bottom:944.400000px;}
.yd5{bottom:944.550000px;}
.y31{bottom:953.550000px;}
.y13d{bottom:963.300000px;}
.yd4{bottom:963.600000px;}
.y54{bottom:972.600000px;}
.y5{bottom:981.150000px;}
.yd3{bottom:982.500000px;}
.y13c{bottom:982.800000px;}
.y30{bottom:991.500000px;}
.y121{bottom:1000.050000px;}
.y2f{bottom:1010.550000px;}
.y120{bottom:1019.400000px;}
.y13b{bottom:1023.300000px;}
.y2e{bottom:1029.450000px;}
.y11f{bottom:1041.000000px;}
.y13a{bottom:1042.350000px;}
.y53{bottom:1048.500000px;}
.y11e{bottom:1060.200000px;}
.y139{bottom:1061.250000px;}
.y2d{bottom:1067.400000px;}
.y4{bottom:1076.100000px;}
.y11d{bottom:1080.300000px;}
.y138{bottom:1080.750000px;}
.y2c{bottom:1086.450000px;}
.y11c{bottom:1099.650000px;}
.y2b{bottom:1105.350000px;}
.y11b{bottom:1121.250000px;}
.y2a{bottom:1124.400000px;}
.y3{bottom:1133.850000px;}
.y11a{bottom:1140.300000px;}
.y6d{bottom:1143.300000px;}
.y2{bottom:1158.000000px;}
.y119{bottom:1159.650000px;}
.y29{bottom:1162.350000px;}
.h8{height:34.968750px;}
.h14{height:38.028516px;}
.h18{height:41.525391px;}
.h15{height:45.459375px;}
.h11{height:47.612988px;}
.h12{height:47.644922px;}
.h4{height:48.049805px;}
.h3{height:48.082031px;}
.h6{height:48.656250px;}
.hd{height:51.981152px;}
.hf{height:52.016016px;}
.h5{height:53.175000px;}
.hb{height:61.133789px;}
.h2{height:61.154297px;}
.ha{height:66.691406px;}
.he{height:181.350000px;}
.hc{height:183.000000px;}
.h10{height:206.400000px;}
.h7{height:295.800000px;}
.h9{height:482.250000px;}
.h16{height:516.750000px;}
.h13{height:518.550000px;}
.h19{height:582.900000px;}
.h17{height:585.000000px;}
.h1{height:1262.850000px;}
.h0{height:1263.000000px;}
.w8{width:136.350000px;}
.w7{width:164.850000px;}
.w4{width:168.450000px;}
.w9{width:181.050000px;}
.w1{width:408.300000px;}
.w2{width:718.350000px;}
.w3{width:836.850000px;}
.w5{width:862.650000px;}
.w6{width:892.050000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x30{left:1.350000px;}
.x10{left:7.800000px;}
.x35{left:9.150000px;}
.x39{left:11.100000px;}
.x42{left:12.300000px;}
.x1f{left:14.100000px;}
.x32{left:15.150000px;}
.x3a{left:20.550000px;}
.x44{left:21.600000px;}
.x43{left:22.650000px;}
.x2f{left:28.050000px;}
.xb{left:31.950000px;}
.x25{left:50.100000px;}
.x21{left:71.550000px;}
.x1c{left:73.800000px;}
.x23{left:76.050000px;}
.xc{left:77.550000px;}
.x3{left:85.200000px;}
.x14{left:87.300000px;}
.x1a{left:88.350000px;}
.x24{left:92.850000px;}
.x33{left:94.650000px;}
.x1{left:97.500000px;}
.x1b{left:104.100000px;}
.x1e{left:106.350000px;}
.x22{left:109.800000px;}
.xd{left:115.350000px;}
.x6{left:117.000000px;}
.x16{left:118.800000px;}
.x15{left:119.850000px;}
.x1d{left:124.350000px;}
.x17{left:126.600000px;}
.x27{left:131.100000px;}
.x26{left:134.550000px;}
.x8{left:139.200000px;}
.x19{left:142.350000px;}
.x20{left:158.100000px;}
.xe{left:169.950000px;}
.x18{left:172.800000px;}
.x37{left:185.250000px;}
.x2b{left:200.850000px;}
.x3f{left:203.550000px;}
.x28{left:207.000000px;}
.xf{left:208.200000px;}
.x3b{left:233.400000px;}
.x3c{left:237.300000px;}
.xa{left:241.800000px;}
.x45{left:254.550000px;}
.x7{left:293.100000px;}
.x13{left:306.000000px;}
.x12{left:311.400000px;}
.x11{left:315.600000px;}
.x4{left:323.700000px;}
.x9{left:327.000000px;}
.x46{left:343.950000px;}
.x3e{left:348.000000px;}
.x3d{left:354.000000px;}
.x2{left:364.350000px;}
.x5{left:366.600000px;}
.x2d{left:380.100000px;}
.x2c{left:387.450000px;}
.x36{left:391.650000px;}
.x2e{left:397.200000px;}
.x2a{left:399.450000px;}
.x40{left:456.300000px;}
.x31{left:522.000000px;}
.x34{left:557.700000px;}
.x29{left:576.600000px;}
.x41{left:593.550000px;}
.x38{left:600.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.282667pt;}
.ls6{letter-spacing:0.298667pt;}
.ls8{letter-spacing:4.549333pt;}
.ls3{letter-spacing:6.682667pt;}
.ls7{letter-spacing:7.216000pt;}
.lsd{letter-spacing:7.772058pt;}
.lse{letter-spacing:8.599917pt;}
.ls5{letter-spacing:8.816000pt;}
.ls1{letter-spacing:11.482667pt;}
.ls2{letter-spacing:12.016000pt;}
.ls9{letter-spacing:156.864000pt;}
.lsa{letter-spacing:159.792000pt;}
.lsb{letter-spacing:162.560000pt;}
.lsc{letter-spacing:165.013333pt;}
.ws0{word-spacing:-16.250667pt;}
.wsf{word-spacing:-16.102933pt;}
.ws14{word-spacing:-14.034667pt;}
.ws11{word-spacing:-12.852800pt;}
.ws7{word-spacing:-12.117333pt;}
.ws4{word-spacing:-11.818667pt;}
.ws1{word-spacing:-9.454933pt;}
.ws10{word-spacing:-5.845688pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:143.936000pt;}
.ws6{word-spacing:190.026667pt;}
.ws13{word-spacing:203.928808pt;}
.ws5{word-spacing:207.936000pt;}
.wse{word-spacing:209.544208pt;}
.ws8{word-spacing:217.258667pt;}
.wsc{word-spacing:233.153808pt;}
.ws9{word-spacing:236.592050pt;}
.wsd{word-spacing:319.087674pt;}
.wsa{word-spacing:360.785274pt;}
.wsb{word-spacing:371.969201pt;}
.ws12{word-spacing:376.645292pt;}
._31{margin-left:-2211.082667pt;}
._2d{margin-left:-1682.634667pt;}
._2f{margin-left:-1452.090667pt;}
._2b{margin-left:-1340.549333pt;}
._33{margin-left:-1330.752000pt;}
._35{margin-left:-864.106667pt;}
._22{margin-left:-499.258667pt;}
._19{margin-left:-486.117333pt;}
._24{margin-left:-450.154667pt;}
._20{margin-left:-280.901333pt;}
._1b{margin-left:-225.402667pt;}
._1e{margin-left:-161.632000pt;}
._37{margin-left:-15.994667pt;}
._12{margin-left:-7.312000pt;}
._13{margin-left:-5.946667pt;}
._c{margin-left:-4.986667pt;}
._7{margin-left:-4.058667pt;}
._0{margin-left:-2.688000pt;}
._5{margin-left:-0.938667pt;}
._1{width:1.045333pt;}
._2{width:2.288000pt;}
._3{width:3.600000pt;}
._6{width:4.506667pt;}
._a{width:5.456000pt;}
._4{width:6.688000pt;}
._b{width:7.626667pt;}
._8{width:9.328000pt;}
._9{width:10.677333pt;}
._e{width:12.202667pt;}
._17{width:13.658667pt;}
._d{width:14.560000pt;}
._f{width:17.904000pt;}
._15{width:18.890667pt;}
._11{width:20.005333pt;}
._10{width:21.445333pt;}
._16{width:23.994667pt;}
._29{width:25.050667pt;}
._67{width:25.993453pt;}
._18{width:27.349333pt;}
._6c{width:32.003388pt;}
._54{width:34.723999pt;}
._66{width:41.422844pt;}
._6b{width:47.314657pt;}
._2a{width:49.045333pt;}
._28{width:52.154667pt;}
._4e{width:54.188773pt;}
._38{width:63.799656pt;}
._69{width:66.741965pt;}
._63{width:71.410520pt;}
._51{width:73.867706pt;}
._8b{width:75.096808pt;}
._39{width:76.704313pt;}
._3e{width:77.745117pt;}
._55{width:79.721573pt;}
._88{width:91.084018pt;}
._8e{width:94.150141pt;}
._53{width:95.433043pt;}
._4b{width:97.678023pt;}
._3c{width:100.717647pt;}
._89{width:103.650639pt;}
._3b{width:107.131922pt;}
._68{width:112.121590pt;}
._65{width:118.393255pt;}
._8c{width:123.233351pt;}
._1f{width:128.832000pt;}
._8a{width:132.274230pt;}
._14{width:143.130667pt;}
._4d{width:147.138399pt;}
._70{width:149.746108pt;}
._7e{width:161.787094pt;}
._77{width:162.889751pt;}
._64{width:164.255990pt;}
._92{width:165.221504pt;}
._4f{width:168.339332pt;}
._99{width:178.270774pt;}
._1c{width:192.309333pt;}
._a5{width:194.504838pt;}
._86{width:196.430068pt;}
._8f{width:197.915504pt;}
._5b{width:200.153700pt;}
._1d{width:206.512000pt;}
._6a{width:209.929453pt;}
._48{width:218.170682pt;}
._8d{width:219.344851pt;}
._3a{width:221.592918pt;}
._4c{width:228.970643pt;}
._27{width:230.144000pt;}
._44{width:234.456621pt;}
._26{width:239.130667pt;}
._82{width:244.928735pt;}
._21{width:247.749333pt;}
._83{width:254.954335pt;}
._a2{width:257.851504pt;}
._3f{width:274.694056pt;}
._62{width:282.342528pt;}
._a1{width:288.350171pt;}
._84{width:293.561268pt;}
._52{width:295.703623pt;}
._a3{width:300.555504pt;}
._5f{width:304.194794pt;}
._7c{width:305.117002pt;}
._9e{width:312.712838pt;}
._50{width:314.882399pt;}
._91{width:323.434848pt;}
._6f{width:329.854279pt;}
._95{width:336.544156pt;}
._9d{width:338.356244pt;}
._3d{width:340.287318pt;}
._74{width:341.841405pt;}
._81{width:343.632285pt;}
._61{width:349.247500pt;}
._98{width:351.565830pt;}
._75{width:355.529343pt;}
._85{width:358.413535pt;}
._97{width:362.123692pt;}
._9b{width:364.528725pt;}
._90{width:368.106476pt;}
._94{width:370.463503pt;}
._a4{width:372.038171pt;}
._9f{width:377.577995pt;}
._9c{width:381.841251pt;}
._6e{width:383.750054pt;}
._5c{width:395.795055pt;}
._73{width:397.554827pt;}
._6d{width:398.643490pt;}
._56{width:402.589188pt;}
._7b{width:408.144735pt;}
._76{width:410.580914pt;}
._79{width:412.448263pt;}
._25{width:417.354667pt;}
._4a{width:422.496218pt;}
._7f{width:424.435388pt;}
._9a{width:427.344838pt;}
._80{width:434.026948pt;}
._40{width:435.742118pt;}
._47{width:438.956024pt;}
._78{width:442.958831pt;}
._7a{width:447.881423pt;}
._5a{width:449.642249pt;}
._1a{width:453.082667pt;}
._43{width:456.854085pt;}
._71{width:459.526068pt;}
._23{width:465.872000pt;}
._96{width:473.118171pt;}
._93{width:483.659504pt;}
._72{width:490.629002pt;}
._49{width:502.643463pt;}
._41{width:516.808037pt;}
._87{width:519.456735pt;}
._42{width:522.135124pt;}
._59{width:534.135704pt;}
._45{width:535.391221pt;}
._46{width:538.421063pt;}
._a6{width:549.520838pt;}
._5e{width:566.877571pt;}
._57{width:572.723266pt;}
._60{width:588.167260pt;}
._58{width:597.339470pt;}
._7d{width:610.047135pt;}
._5d{width:614.637342pt;}
._a0{width:648.744838pt;}
._36{width:831.776000pt;}
._34{width:1297.354667pt;}
._2c{width:1306.976000pt;}
._30{width:1417.856000pt;}
._2e{width:1649.354667pt;}
._32{width:2176.826667pt;}
.fs2{font-size:34.133333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:46.400000pt;}
.fs9{font-size:50.666667pt;}
.fs8{font-size:55.466667pt;}
.fs6{font-size:58.133333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:63.466667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.ycf{bottom:3.066667pt;}
.y157{bottom:6.133333pt;}
.y14f{bottom:6.666667pt;}
.y7b{bottom:13.733333pt;}
.y17b{bottom:20.133333pt;}
.y1a4{bottom:22.266667pt;}
.y156{bottom:24.666667pt;}
.y14e{bottom:26.800000pt;}
.y7c{bottom:27.733333pt;}
.ybc{bottom:29.066667pt;}
.y179{bottom:33.200000pt;}
.y17a{bottom:34.800000pt;}
.y1a2{bottom:36.666667pt;}
.y1a3{bottom:38.533333pt;}
.y155{bottom:43.200000pt;}
.y7d{bottom:44.133333pt;}
.y14d{bottom:46.933333pt;}
.ybd{bottom:48.133333pt;}
.y178{bottom:49.600000pt;}
.y1a1{bottom:54.666667pt;}
.y154{bottom:61.600000pt;}
.y177{bottom:64.266667pt;}
.y14c{bottom:67.066667pt;}
.ybe{bottom:67.200000pt;}
.y1a0{bottom:70.933333pt;}
.y7e{bottom:78.000000pt;}
.y176{bottom:79.066667pt;}
.y28{bottom:79.466667pt;}
.ybf{bottom:86.400000pt;}
.y19f{bottom:87.066667pt;}
.y14b{bottom:87.200000pt;}
.y153{bottom:87.333333pt;}
.y69{bottom:88.666667pt;}
.y118{bottom:91.866667pt;}
.y79{bottom:93.333333pt;}
.y175{bottom:93.733333pt;}
.yba{bottom:95.200000pt;}
.yfb{bottom:95.333333pt;}
.y27{bottom:96.266667pt;}
.y88{bottom:99.333333pt;}
.y145{bottom:102.400000pt;}
.y19e{bottom:103.200000pt;}
.y149{bottom:103.866667pt;}
.y68{bottom:105.466667pt;}
.y14a{bottom:105.866667pt;}
.y148{bottom:107.333333pt;}
.y174{bottom:108.533333pt;}
.y117{bottom:108.800000pt;}
.y78{bottom:110.266667pt;}
.y7f{bottom:111.866667pt;}
.yb9{bottom:112.000000pt;}
.yfa{bottom:112.133333pt;}
.y26{bottom:113.200000pt;}
.y87{bottom:113.333333pt;}
.y19d{bottom:119.466667pt;}
.y67{bottom:122.400000pt;}
.y173{bottom:123.200000pt;}
.y152{bottom:124.266667pt;}
.yc0{bottom:124.533333pt;}
.y116{bottom:126.000000pt;}
.y137{bottom:126.266667pt;}
.y86{bottom:127.333333pt;}
.y147{bottom:127.466667pt;}
.yb8{bottom:128.933333pt;}
.yf9{bottom:129.066667pt;}
.y25{bottom:130.000000pt;}
.y19c{bottom:135.600000pt;}
.y172{bottom:138.000000pt;}
.y6c{bottom:139.200000pt;}
.y151{bottom:142.800000pt;}
.y136{bottom:143.066667pt;}
.y85{bottom:143.466667pt;}
.yc1{bottom:143.600000pt;}
.y77{bottom:144.000000pt;}
.y115{bottom:145.200000pt;}
.y80{bottom:145.600000pt;}
.yf8{bottom:145.866667pt;}
.y24{bottom:146.933333pt;}
.y146{bottom:147.600000pt;}
.y19b{bottom:151.733333pt;}
.y171{bottom:152.666667pt;}
.y66{bottom:156.133333pt;}
.y84{bottom:157.466667pt;}
.y135{bottom:160.133333pt;}
.y76{bottom:160.800000pt;}
.y114{bottom:162.533333pt;}
.yb7{bottom:162.666667pt;}
.yc2{bottom:162.800000pt;}
.y23{bottom:163.733333pt;}
.y16f{bottom:165.733333pt;}
.y52{bottom:165.866667pt;}
.y170{bottom:167.333333pt;}
.y19a{bottom:168.000000pt;}
.y150{bottom:169.600000pt;}
.y65{bottom:172.933333pt;}
.y17e{bottom:175.866667pt;}
.y75{bottom:177.733333pt;}
.y81{bottom:179.466667pt;}
.y22{bottom:180.666667pt;}
.y113{bottom:181.733333pt;}
.yc3{bottom:181.866667pt;}
.y16e{bottom:182.133333pt;}
.y198{bottom:182.266667pt;}
.y51{bottom:182.666667pt;}
.y199{bottom:184.133333pt;}
.y64{bottom:189.866667pt;}
.y74{bottom:194.533333pt;}
.y134{bottom:195.200000pt;}
.yb6{bottom:196.400000pt;}
.yf7{bottom:196.533333pt;}
.y16d{bottom:196.800000pt;}
.y112{bottom:198.666667pt;}
.y50{bottom:199.600000pt;}
.y197{bottom:200.400000pt;}
.yc4{bottom:200.933333pt;}
.y63{bottom:206.666667pt;}
.y17d{bottom:209.600000pt;}
.y73{bottom:211.466667pt;}
.y16c{bottom:211.600000pt;}
.y82{bottom:213.200000pt;}
.yf6{bottom:213.333333pt;}
.y21{bottom:214.400000pt;}
.y4f{bottom:216.400000pt;}
.y196{bottom:216.533333pt;}
.yc5{bottom:220.000000pt;}
.y62{bottom:223.600000pt;}
.y111{bottom:224.533333pt;}
.y16b{bottom:226.266667pt;}
.y17c{bottom:226.533333pt;}
.y133{bottom:230.133333pt;}
.yf5{bottom:230.266667pt;}
.y20{bottom:231.200000pt;}
.y195{bottom:232.666667pt;}
.y4e{bottom:233.333333pt;}
.yc6{bottom:239.200000pt;}
.y169{bottom:239.466667pt;}
.y61{bottom:240.400000pt;}
.y16a{bottom:241.066667pt;}
.y110{bottom:241.866667pt;}
.yb5{bottom:246.933333pt;}
.y83{bottom:247.066667pt;}
.y1f{bottom:248.133333pt;}
.y194{bottom:248.933333pt;}
.y4d{bottom:250.133333pt;}
.ya5{bottom:251.200000pt;}
.y168{bottom:255.733333pt;}
.y60{bottom:257.333333pt;}
.yc7{bottom:258.266667pt;}
.y192{bottom:263.200000pt;}
.yb4{bottom:263.866667pt;}
.yf4{bottom:264.000000pt;}
.y1e{bottom:264.933333pt;}
.y193{bottom:265.066667pt;}
.y4c{bottom:267.066667pt;}
.ya4{bottom:268.000000pt;}
.y10f{bottom:269.066667pt;}
.y167{bottom:270.400000pt;}
.y5f{bottom:274.133333pt;}
.yc8{bottom:277.333333pt;}
.y72{bottom:278.933333pt;}
.yb3{bottom:280.666667pt;}
.yf3{bottom:280.800000pt;}
.y191{bottom:281.333333pt;}
.y132{bottom:281.866667pt;}
.y165{bottom:283.600000pt;}
.ya3{bottom:284.933333pt;}
.y166{bottom:285.200000pt;}
.y10e{bottom:285.866667pt;}
.y5e{bottom:291.066667pt;}
.yd2{bottom:295.866667pt;}
.yc9{bottom:296.400000pt;}
.y190{bottom:297.466667pt;}
.yb2{bottom:297.600000pt;}
.y1d{bottom:298.666667pt;}
.y163{bottom:299.866667pt;}
.ya2{bottom:301.733333pt;}
.y144{bottom:301.866667pt;}
.y10d{bottom:303.200000pt;}
.y5d{bottom:307.866667pt;}
.y7a{bottom:309.600000pt;}
.yd1{bottom:309.866667pt;}
.y18e{bottom:311.733333pt;}
.y18f{bottom:313.600000pt;}
.yb1{bottom:314.400000pt;}
.yca{bottom:315.466667pt;}
.y1c{bottom:315.600000pt;}
.yf2{bottom:316.133333pt;}
.y4b{bottom:316.800000pt;}
.y162{bottom:317.333333pt;}
.y143{bottom:318.666667pt;}
.y10c{bottom:322.400000pt;}
.y5c{bottom:324.800000pt;}
.yd0{bottom:326.000000pt;}
.y18d{bottom:329.866667pt;}
.yb0{bottom:331.333333pt;}
.y161{bottom:332.133333pt;}
.y1b{bottom:332.400000pt;}
.yf1{bottom:332.933333pt;}
.y4a{bottom:333.600000pt;}
.ycb{bottom:334.666667pt;}
.ya1{bottom:335.466667pt;}
.y10b{bottom:339.600000pt;}
.y5b{bottom:341.600000pt;}
.y18c{bottom:346.000000pt;}
.y160{bottom:346.800000pt;}
.y1a{bottom:349.333333pt;}
.yf0{bottom:349.866667pt;}
.y49{bottom:350.533333pt;}
.ya0{bottom:352.400000pt;}
.ycc{bottom:353.733333pt;}
.y5a{bottom:358.533333pt;}
.y10a{bottom:358.800000pt;}
.y15f{bottom:361.600000pt;}
.y18b{bottom:362.266667pt;}
.yaf{bottom:365.066667pt;}
.y19{bottom:366.133333pt;}
.y131{bottom:366.533333pt;}
.yef{bottom:366.666667pt;}
.y48{bottom:367.333333pt;}
.y9f{bottom:369.200000pt;}
.ycd{bottom:372.800000pt;}
.y6b{bottom:375.333333pt;}
.y109{bottom:376.133333pt;}
.y15e{bottom:376.266667pt;}
.y18a{bottom:378.400000pt;}
.yae{bottom:381.866667pt;}
.y18{bottom:383.066667pt;}
.yee{bottom:383.600000pt;}
.y47{bottom:384.266667pt;}
.y9e{bottom:386.133333pt;}
.y15d{bottom:391.066667pt;}
.yce{bottom:392.000000pt;}
.y59{bottom:392.266667pt;}
.y189{bottom:394.533333pt;}
.yad{bottom:398.800000pt;}
.yed{bottom:400.400000pt;}
.y130{bottom:402.666667pt;}
.y9d{bottom:402.933333pt;}
.y108{bottom:403.333333pt;}
.y15c{bottom:405.733333pt;}
.y46{bottom:409.066667pt;}
.y188{bottom:410.800000pt;}
.yac{bottom:415.600000pt;}
.y17{bottom:416.800000pt;}
.yec{bottom:417.333333pt;}
.y12f{bottom:419.466667pt;}
.y9c{bottom:419.866667pt;}
.y15b{bottom:420.400000pt;}
.y107{bottom:420.533333pt;}
.y45{bottom:426.000000pt;}
.y187{bottom:426.933333pt;}
.y16{bottom:433.600000pt;}
.y15a{bottom:435.200000pt;}
.y12e{bottom:436.400000pt;}
.yeb{bottom:442.133333pt;}
.y17f{bottom:442.666667pt;}
.y44{bottom:442.800000pt;}
.y186{bottom:443.200000pt;}
.y183{bottom:444.533333pt;}
.y106{bottom:447.733333pt;}
.yab{bottom:449.333333pt;}
.y159{bottom:449.866667pt;}
.y15{bottom:450.533333pt;}
.y158{bottom:451.200000pt;}
.y164{bottom:452.800000pt;}
.y9b{bottom:453.600000pt;}
.yea{bottom:459.066667pt;}
.y185{bottom:459.333333pt;}
.y43{bottom:459.733333pt;}
.y105{bottom:465.066667pt;}
.yaa{bottom:466.266667pt;}
.y14{bottom:467.333333pt;}
.y9a{bottom:470.800000pt;}
.y184{bottom:473.600000pt;}
.y182{bottom:475.466667pt;}
.ye9{bottom:475.866667pt;}
.y42{bottom:476.533333pt;}
.ya9{bottom:483.066667pt;}
.y13{bottom:484.266667pt;}
.y99{bottom:488.800000pt;}
.y12d{bottom:489.733333pt;}
.y181{bottom:491.733333pt;}
.y104{bottom:492.266667pt;}
.ye8{bottom:492.800000pt;}
.y41{bottom:493.466667pt;}
.ya8{bottom:500.000000pt;}
.y12{bottom:501.066667pt;}
.y98{bottom:505.733333pt;}
.y12c{bottom:506.533333pt;}
.y180{bottom:507.866667pt;}
.y103{bottom:509.066667pt;}
.ye7{bottom:509.600000pt;}
.y40{bottom:510.266667pt;}
.ya7{bottom:516.800000pt;}
.y11{bottom:518.000000pt;}
.y12b{bottom:523.866667pt;}
.y102{bottom:526.400000pt;}
.ye6{bottom:526.533333pt;}
.y3f{bottom:527.200000pt;}
.y10{bottom:534.800000pt;}
.y97{bottom:539.466667pt;}
.ye5{bottom:543.333333pt;}
.y58{bottom:544.000000pt;}
.y101{bottom:553.600000pt;}
.y96{bottom:556.266667pt;}
.ye4{bottom:560.266667pt;}
.y3e{bottom:560.933333pt;}
.y12a{bottom:561.466667pt;}
.yf{bottom:568.533333pt;}
.y100{bottom:570.800000pt;}
.y95{bottom:573.200000pt;}
.ye3{bottom:577.066667pt;}
.y3d{bottom:577.733333pt;}
.y129{bottom:578.266667pt;}
.ya6{bottom:584.266667pt;}
.y94{bottom:590.000000pt;}
.ye2{bottom:594.000000pt;}
.y3c{bottom:594.666667pt;}
.y128{bottom:595.600000pt;}
.yff{bottom:598.000000pt;}
.ye{bottom:602.266667pt;}
.y93{bottom:606.933333pt;}
.ye1{bottom:610.800000pt;}
.y3b{bottom:611.466667pt;}
.ybb{bottom:615.066667pt;}
.yfe{bottom:615.333333pt;}
.y3a{bottom:628.400000pt;}
.y127{bottom:633.200000pt;}
.y71{bottom:634.133333pt;}
.y142{bottom:637.066667pt;}
.y92{bottom:640.666667pt;}
.yfd{bottom:642.533333pt;}
.y57{bottom:645.200000pt;}
.ye0{bottom:646.133333pt;}
.y126{bottom:650.000000pt;}
.y141{bottom:653.866667pt;}
.y91{bottom:657.466667pt;}
.y70{bottom:659.333333pt;}
.yfc{bottom:659.733333pt;}
.y39{bottom:662.133333pt;}
.ydf{bottom:662.933333pt;}
.y125{bottom:667.333333pt;}
.y90{bottom:674.400000pt;}
.y6f{bottom:677.466667pt;}
.y38{bottom:678.933333pt;}
.yde{bottom:679.866667pt;}
.y8f{bottom:691.200000pt;}
.y6e{bottom:694.666667pt;}
.y37{bottom:695.866667pt;}
.ydd{bottom:696.666667pt;}
.y124{bottom:703.333333pt;}
.yd{bottom:703.466667pt;}
.y8e{bottom:708.133333pt;}
.y36{bottom:712.666667pt;}
.ydc{bottom:713.600000pt;}
.yc{bottom:720.400000pt;}
.y8d{bottom:724.933333pt;}
.y6a{bottom:729.600000pt;}
.ydb{bottom:730.400000pt;}
.y140{bottom:738.266667pt;}
.y8c{bottom:741.866667pt;}
.y35{bottom:746.400000pt;}
.yda{bottom:747.333333pt;}
.y123{bottom:754.000000pt;}
.yb{bottom:754.133333pt;}
.y13f{bottom:755.066667pt;}
.y56{bottom:763.333333pt;}
.yd9{bottom:764.133333pt;}
.y122{bottom:770.800000pt;}
.ya{bottom:770.933333pt;}
.y8b{bottom:775.866667pt;}
.y55{bottom:780.133333pt;}
.y9{bottom:787.866667pt;}
.yd8{bottom:789.066667pt;}
.y8a{bottom:794.266667pt;}
.y34{bottom:797.066667pt;}
.y8{bottom:804.666667pt;}
.yd7{bottom:805.866667pt;}
.y89{bottom:812.666667pt;}
.y33{bottom:813.866667pt;}
.y7{bottom:821.600000pt;}
.yd6{bottom:822.800000pt;}
.y32{bottom:830.800000pt;}
.y6{bottom:838.400000pt;}
.y13e{bottom:839.466667pt;}
.yd5{bottom:839.600000pt;}
.y31{bottom:847.600000pt;}
.y13d{bottom:856.266667pt;}
.yd4{bottom:856.533333pt;}
.y54{bottom:864.533333pt;}
.y5{bottom:872.133333pt;}
.yd3{bottom:873.333333pt;}
.y13c{bottom:873.600000pt;}
.y30{bottom:881.333333pt;}
.y121{bottom:888.933333pt;}
.y2f{bottom:898.266667pt;}
.y120{bottom:906.133333pt;}
.y13b{bottom:909.600000pt;}
.y2e{bottom:915.066667pt;}
.y11f{bottom:925.333333pt;}
.y13a{bottom:926.533333pt;}
.y53{bottom:932.000000pt;}
.y11e{bottom:942.400000pt;}
.y139{bottom:943.333333pt;}
.y2d{bottom:948.800000pt;}
.y4{bottom:956.533333pt;}
.y11d{bottom:960.266667pt;}
.y138{bottom:960.666667pt;}
.y2c{bottom:965.733333pt;}
.y11c{bottom:977.466667pt;}
.y2b{bottom:982.533333pt;}
.y11b{bottom:996.666667pt;}
.y2a{bottom:999.466667pt;}
.y3{bottom:1007.866667pt;}
.y11a{bottom:1013.600000pt;}
.y6d{bottom:1016.266667pt;}
.y2{bottom:1029.333333pt;}
.y119{bottom:1030.800000pt;}
.y29{bottom:1033.200000pt;}
.h8{height:31.083333pt;}
.h14{height:33.803125pt;}
.h18{height:36.911458pt;}
.h15{height:40.408333pt;}
.h11{height:42.322656pt;}
.h12{height:42.351042pt;}
.h4{height:42.710938pt;}
.h3{height:42.739583pt;}
.h6{height:43.250000pt;}
.hd{height:46.205469pt;}
.hf{height:46.236458pt;}
.h5{height:47.266667pt;}
.hb{height:54.341146pt;}
.h2{height:54.359375pt;}
.ha{height:59.281250pt;}
.he{height:161.200000pt;}
.hc{height:162.666667pt;}
.h10{height:183.466667pt;}
.h7{height:262.933333pt;}
.h9{height:428.666667pt;}
.h16{height:459.333333pt;}
.h13{height:460.933333pt;}
.h19{height:518.133333pt;}
.h17{height:520.000000pt;}
.h1{height:1122.533333pt;}
.h0{height:1122.666667pt;}
.w8{width:121.200000pt;}
.w7{width:146.533333pt;}
.w4{width:149.733333pt;}
.w9{width:160.933333pt;}
.w1{width:362.933333pt;}
.w2{width:638.533333pt;}
.w3{width:743.866667pt;}
.w5{width:766.800000pt;}
.w6{width:792.933333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x30{left:1.200000pt;}
.x10{left:6.933333pt;}
.x35{left:8.133333pt;}
.x39{left:9.866667pt;}
.x42{left:10.933333pt;}
.x1f{left:12.533333pt;}
.x32{left:13.466667pt;}
.x3a{left:18.266667pt;}
.x44{left:19.200000pt;}
.x43{left:20.133333pt;}
.x2f{left:24.933333pt;}
.xb{left:28.400000pt;}
.x25{left:44.533333pt;}
.x21{left:63.600000pt;}
.x1c{left:65.600000pt;}
.x23{left:67.600000pt;}
.xc{left:68.933333pt;}
.x3{left:75.733333pt;}
.x14{left:77.600000pt;}
.x1a{left:78.533333pt;}
.x24{left:82.533333pt;}
.x33{left:84.133333pt;}
.x1{left:86.666667pt;}
.x1b{left:92.533333pt;}
.x1e{left:94.533333pt;}
.x22{left:97.600000pt;}
.xd{left:102.533333pt;}
.x6{left:104.000000pt;}
.x16{left:105.600000pt;}
.x15{left:106.533333pt;}
.x1d{left:110.533333pt;}
.x17{left:112.533333pt;}
.x27{left:116.533333pt;}
.x26{left:119.600000pt;}
.x8{left:123.733333pt;}
.x19{left:126.533333pt;}
.x20{left:140.533333pt;}
.xe{left:151.066667pt;}
.x18{left:153.600000pt;}
.x37{left:164.666667pt;}
.x2b{left:178.533333pt;}
.x3f{left:180.933333pt;}
.x28{left:184.000000pt;}
.xf{left:185.066667pt;}
.x3b{left:207.466667pt;}
.x3c{left:210.933333pt;}
.xa{left:214.933333pt;}
.x45{left:226.266667pt;}
.x7{left:260.533333pt;}
.x13{left:272.000000pt;}
.x12{left:276.800000pt;}
.x11{left:280.533333pt;}
.x4{left:287.733333pt;}
.x9{left:290.666667pt;}
.x46{left:305.733333pt;}
.x3e{left:309.333333pt;}
.x3d{left:314.666667pt;}
.x2{left:323.866667pt;}
.x5{left:325.866667pt;}
.x2d{left:337.866667pt;}
.x2c{left:344.400000pt;}
.x36{left:348.133333pt;}
.x2e{left:353.066667pt;}
.x2a{left:355.066667pt;}
.x40{left:405.600000pt;}
.x31{left:464.000000pt;}
.x34{left:495.733333pt;}
.x29{left:512.533333pt;}
.x41{left:527.600000pt;}
.x38{left:533.466667pt;}
}




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