
    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_f00548e5ad783b83fa856133.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5bd303d433b652656798c613.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_08edb5ea07e49db50f8af8d9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d2f84f3faa80fdce88eeab62.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_12dd739e1970c970d02abff5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a7bd03e2fe26f2a934e95895.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_55ee99cc97192c1f6e1acfab.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_ca3e0cef79d5987b80369b1b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_0ac48aa9332a7b6ee764428b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_f46e498dcd6d6bad5698ea56.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.252000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.540000px;}
.ls14{letter-spacing:1.620000px;}
.ls11{letter-spacing:3.060000px;}
.ls15{letter-spacing:4.500000px;}
.ls12{letter-spacing:8.820000px;}
.ls9{letter-spacing:25.308000px;}
.ls17{letter-spacing:52.668000px;}
.ls2{letter-spacing:71.280000px;}
.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;}
}
.ws11{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.824000px;}
.wsa{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.374000px;}
.ws13{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.248000px;}
.wsf{word-spacing:-12.186000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:73.153920px;}
._9{margin-left:-10.673280px;}
._2b{margin-left:-2.175120px;}
._0{margin-left:-1.026000px;}
._1{width:1.308000px;}
._6{width:2.435760px;}
._5{width:4.059120px;}
._c{width:5.940000px;}
._8{width:7.416960px;}
._3{width:8.492640px;}
._4{width:9.681120px;}
._18{width:10.692000px;}
._b{width:11.718000px;}
._10{width:14.580000px;}
._7{width:16.103520px;}
._a{width:17.306400px;}
._2{width:18.764640px;}
._13{width:19.818000px;}
._14{width:21.021360px;}
._12{width:22.248000px;}
._1a{width:23.382000px;}
._11{width:24.408000px;}
._26{width:25.860000px;}
._1f{width:26.892000px;}
._1c{width:28.170000px;}
._1d{width:29.562000px;}
._d{width:31.536000px;}
._e{width:32.550000px;}
._24{width:34.032000px;}
._20{width:35.046000px;}
._15{width:36.126000px;}
._16{width:37.368000px;}
._21{width:38.490000px;}
._31{width:39.606000px;}
._1e{width:41.418000px;}
._22{width:43.092000px;}
._23{width:44.766000px;}
._35{width:45.984000px;}
._19{width:47.952000px;}
._39{width:51.678000px;}
._1b{width:52.704000px;}
._25{width:54.540000px;}
._f{width:55.620000px;}
._3d{width:57.186000px;}
._17{width:58.374000px;}
._34{width:61.455120px;}
._38{width:62.694000px;}
._37{width:68.310000px;}
._32{width:76.410000px;}
._33{width:77.544000px;}
._36{width:94.569120px;}
._3a{width:102.276000px;}
._3b{width:103.356000px;}
._3c{width:116.262000px;}
._3e{width:316.548000px;}
._3f{width:343.062000px;}
._2e{width:467.574000px;}
._2d{width:470.838000px;}
._2f{width:490.068000px;}
._30{width:504.768000px;}
._2c{width:556.314000px;}
._2a{width:631.824000px;}
._27{width:639.264000px;}
._28{width:640.284000px;}
._29{width:683.082000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fca{color:rgb(89,89,89);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y15f{bottom:9.720000px;}
.y14d{bottom:9.885000px;}
.y11d{bottom:9.930000px;}
.y123{bottom:10.065000px;}
.y12a{bottom:10.080000px;}
.y151{bottom:10.110000px;}
.y1f1{bottom:10.125000px;}
.y16d{bottom:10.245000px;}
.y142{bottom:10.260000px;}
.y1e0{bottom:10.425000px;}
.y1f6{bottom:10.440000px;}
.y1cd{bottom:10.620000px;}
.y1d0{bottom:10.980000px;}
.y1d3{bottom:11.160000px;}
.y1e9{bottom:11.340000px;}
.y1d7{bottom:11.865000px;}
.y1bc{bottom:13.110000px;}
.y18e{bottom:13.170000px;}
.y1ab{bottom:13.350000px;}
.y181{bottom:13.395000px;}
.y4{bottom:15.660000px;}
.y159{bottom:16.950000px;}
.y2{bottom:18.900000px;}
.y1e7{bottom:27.720000px;}
.y11c{bottom:27.750000px;}
.y122{bottom:27.885000px;}
.y12e{bottom:27.900000px;}
.y129{bottom:27.930000px;}
.y204{bottom:28.065000px;}
.y130{bottom:28.080000px;}
.y1f5{bottom:28.260000px;}
.y1e5{bottom:28.800000px;}
.y1cf{bottom:28.980000px;}
.y1f9{bottom:29.160000px;}
.y1e3{bottom:29.520000px;}
.y1d6{bottom:29.685000px;}
.y1b2{bottom:30.675000px;}
.y187{bottom:30.750000px;}
.y1a4{bottom:30.930000px;}
.y176{bottom:30.960000px;}
.y5{bottom:39.780000px;}
.y12c{bottom:45.540000px;}
.y121{bottom:45.705000px;}
.y128{bottom:45.750000px;}
.y12d{bottom:45.900000px;}
.y177{bottom:52.350000px;}
.y1b3{bottom:56.625000px;}
.y188{bottom:58.290000px;}
.y1{bottom:60.660000px;}
.y11f{bottom:63.165000px;}
.y126{bottom:63.390000px;}
.y120{bottom:63.525000px;}
.y127{bottom:63.750000px;}
.y41{bottom:69.690000px;}
.y1a5{bottom:69.840000px;}
.y178{bottom:73.695000px;}
.y1b4{bottom:82.590000px;}
.y189{bottom:85.785000px;}
.y184{bottom:86.835000px;}
.y155{bottom:88.275000px;}
.y40{bottom:89.670000px;}
.y1b1{bottom:91.650000px;}
.y179{bottom:95.070000px;}
.y171{bottom:103.140000px;}
.y222{bottom:107.100000px;}
.y1a1{bottom:107.850000px;}
.y22e{bottom:108.180000px;}
.y1b5{bottom:108.540000px;}
.y1a6{bottom:108.795000px;}
.y3f{bottom:109.470000px;}
.y2d{bottom:109.800000px;}
.y7d{bottom:109.980000px;}
.y156{bottom:113.010000px;}
.y18a{bottom:113.325000px;}
.y210{bottom:115.560000px;}
.yb9{bottom:116.100000px;}
.y17a{bottom:116.460000px;}
.y1e2{bottom:116.820000px;}
.y37{bottom:118.800000px;}
.y28f{bottom:123.480000px;}
.y221{bottom:125.100000px;}
.y27a{bottom:125.280000px;}
.y108{bottom:125.640000px;}
.y22d{bottom:126.000000px;}
.y12b{bottom:126.180000px;}
.y7c{bottom:127.980000px;}
.y3e{bottom:129.270000px;}
.y170{bottom:130.680000px;}
.y20e{bottom:133.560000px;}
.yec{bottom:133.920000px;}
.yb8{bottom:134.100000px;}
.y1b6{bottom:134.490000px;}
.y2c{bottom:136.800000px;}
.y17b{bottom:137.850000px;}
.y19f{bottom:140.400000px;}
.y18b{bottom:140.865000px;}
.y220{bottom:142.920000px;}
.y279{bottom:143.100000px;}
.y22c{bottom:144.000000px;}
.y7b{bottom:145.440000px;}
.y36{bottom:145.620000px;}
.y186{bottom:146.850000px;}
.y1a7{bottom:147.705000px;}
.y3d{bottom:149.070000px;}
.y153{bottom:149.940000px;}
.y173{bottom:149.970000px;}
.y28e{bottom:150.480000px;}
.y20d{bottom:151.380000px;}
.yeb{bottom:151.740000px;}
.yb7{bottom:151.920000px;}
.y107{bottom:152.820000px;}
.y19e{bottom:158.220000px;}
.y16f{bottom:158.400000px;}
.y17c{bottom:159.225000px;}
.y1b7{bottom:160.455000px;}
.y21f{bottom:160.740000px;}
.y278{bottom:161.100000px;}
.y22b{bottom:161.820000px;}
.y253{bottom:162.000000px;}
.y7a{bottom:163.260000px;}
.y2b{bottom:163.620000px;}
.y1e1{bottom:163.800000px;}
.y18c{bottom:168.405000px;}
.y3c{bottom:168.870000px;}
.y20c{bottom:169.200000px;}
.yea{bottom:169.560000px;}
.yb6{bottom:169.740000px;}
.y1ae{bottom:170.535000px;}
.y106{bottom:170.640000px;}
.y152{bottom:171.900000px;}
.y35{bottom:172.440000px;}
.y19d{bottom:176.040000px;}
.y185{bottom:176.580000px;}
.y28d{bottom:177.300000px;}
.y21e{bottom:178.560000px;}
.y277{bottom:178.920000px;}
.y22a{bottom:179.640000px;}
.y252{bottom:179.820000px;}
.y17d{bottom:180.615000px;}
.y175{bottom:182.880000px;}
.y1a3{bottom:183.390000px;}
.y79{bottom:183.420000px;}
.y16e{bottom:185.940000px;}
.y1b8{bottom:186.405000px;}
.y158{bottom:186.585000px;}
.y1a8{bottom:186.660000px;}
.y20b{bottom:187.020000px;}
.ye9{bottom:187.380000px;}
.yb5{bottom:187.560000px;}
.y1b0{bottom:187.665000px;}
.y105{bottom:188.460000px;}
.y3b{bottom:188.850000px;}
.y125{bottom:189.540000px;}
.y2a{bottom:190.440000px;}
.y19c{bottom:194.040000px;}
.y18d{bottom:195.915000px;}
.y21d{bottom:196.380000px;}
.y276{bottom:196.740000px;}
.y229{bottom:197.460000px;}
.y251{bottom:197.640000px;}
.y34{bottom:199.260000px;}
.y150{bottom:199.440000px;}
.y17e{bottom:201.990000px;}
.y28c{bottom:204.120000px;}
.y20a{bottom:204.840000px;}
.ye8{bottom:205.200000px;}
.yb4{bottom:205.410000px;}
.y104{bottom:206.310000px;}
.y3a{bottom:208.650000px;}
.y78{bottom:209.370000px;}
.y1df{bottom:209.385000px;}
.y38{bottom:209.520000px;}
.y1b9{bottom:212.370000px;}
.y16c{bottom:213.525000px;}
.y21c{bottom:214.230000px;}
.y275{bottom:214.590000px;}
.y228{bottom:215.310000px;}
.y250{bottom:215.490000px;}
.y29{bottom:217.290000px;}
.y19b{bottom:217.650000px;}
.y157{bottom:217.725000px;}
.y1ad{bottom:220.140000px;}
.y209{bottom:222.690000px;}
.yb3{bottom:223.230000px;}
.y17f{bottom:223.380000px;}
.y18f{bottom:224.130000px;}
.y103{bottom:224.310000px;}
.y1a9{bottom:225.570000px;}
.y33{bottom:226.110000px;}
.y14f{bottom:227.205000px;}
.y43{bottom:230.250000px;}
.y174{bottom:230.370000px;}
.y28b{bottom:230.970000px;}
.y21b{bottom:232.230000px;}
.y274{bottom:232.410000px;}
.y227{bottom:233.310000px;}
.y1a2{bottom:233.610000px;}
.y1ba{bottom:238.320000px;}
.y39{bottom:238.935000px;}
.ye7{bottom:240.690000px;}
.yb2{bottom:241.230000px;}
.y102{bottom:241.770000px;}
.y77{bottom:242.130000px;}
.y1de{bottom:242.490000px;}
.y28{bottom:244.110000px;}
.y180{bottom:244.770000px;}
.y16b{bottom:246.810000px;}
.y1af{bottom:249.450000px;}
.y21a{bottom:250.050000px;}
.y273{bottom:250.230000px;}
.y226{bottom:251.130000px;}
.y24f{bottom:251.310000px;}
.y32{bottom:253.110000px;}
.y14e{bottom:254.745000px;}
.y28a{bottom:257.790000px;}
.y20f{bottom:258.150000px;}
.y208{bottom:258.510000px;}
.yb1{bottom:259.050000px;}
.y42{bottom:259.410000px;}
.y76{bottom:259.950000px;}
.y1dd{bottom:260.490000px;}
.y1bb{bottom:264.270000px;}
.y1aa{bottom:264.525000px;}
.ye6{bottom:267.870000px;}
.y272{bottom:268.230000px;}
.y101{bottom:268.950000px;}
.y24e{bottom:269.130000px;}
.y124{bottom:270.765000px;}
.y27{bottom:271.110000px;}
.y182{bottom:272.955000px;}
.y16a{bottom:273.630000px;}
.yb0{bottom:276.870000px;}
.y75{bottom:277.770000px;}
.y31{bottom:279.930000px;}
.y14c{bottom:282.285000px;}
.y289{bottom:284.610000px;}
.y207{bottom:285.330000px;}
.ye5{bottom:285.690000px;}
.y271{bottom:286.050000px;}
.y100{bottom:286.770000px;}
.y24d{bottom:286.950000px;}
.y1dc{bottom:287.670000px;}
.y169{bottom:291.450000px;}
.y1bd{bottom:292.500000px;}
.y1ac{bottom:292.710000px;}
.yaf{bottom:294.690000px;}
.y74{bottom:295.590000px;}
.y26{bottom:297.930000px;}
.ye4{bottom:303.510000px;}
.y270{bottom:303.870000px;}
.yff{bottom:304.590000px;}
.y24c{bottom:304.770000px;}
.y1db{bottom:305.490000px;}
.y30{bottom:306.750000px;}
.y206{bottom:307.305000px;}
.y168{bottom:309.270000px;}
.y288{bottom:311.610000px;}
.yae{bottom:312.510000px;}
.y73{bottom:313.410000px;}
.y14b{bottom:315.570000px;}
.ye3{bottom:321.510000px;}
.y26f{bottom:321.690000px;}
.yfe{bottom:322.410000px;}
.y24b{bottom:322.590000px;}
.y1da{bottom:323.310000px;}
.y25{bottom:324.750000px;}
.y167{bottom:327.270000px;}
.yad{bottom:330.510000px;}
.y72{bottom:331.410000px;}
.y2f{bottom:333.570000px;}
.y287{bottom:338.430000px;}
.ye2{bottom:339.330000px;}
.y26e{bottom:339.510000px;}
.yfd{bottom:340.410000px;}
.y1d9{bottom:341.130000px;}
.y14a{bottom:342.390000px;}
.y166{bottom:345.090000px;}
.yac{bottom:347.970000px;}
.y219{bottom:348.330000px;}
.y71{bottom:349.230000px;}
.y24{bottom:351.930000px;}
.y11e{bottom:351.945000px;}
.y205{bottom:352.845000px;}
.ye1{bottom:357.150000px;}
.y26d{bottom:357.510000px;}
.yfc{bottom:358.230000px;}
.y24a{bottom:358.410000px;}
.y149{bottom:360.210000px;}
.y2e{bottom:360.390000px;}
.y286{bottom:365.250000px;}
.yab{bottom:365.790000px;}
.y218{bottom:366.150000px;}
.y70{bottom:367.050000px;}
.y1d8{bottom:368.130000px;}
.y165{bottom:368.670000px;}
.y23{bottom:369.750000px;}
.y183{bottom:372.060000px;}
.ye0{bottom:374.970000px;}
.y26c{bottom:375.330000px;}
.yfb{bottom:376.050000px;}
.y249{bottom:376.230000px;}
.y148{bottom:378.030000px;}
.y217{bottom:383.970000px;}
.y6f{bottom:384.870000px;}
.y22{bottom:387.210000px;}
.y1d5{bottom:390.105000px;}
.y285{bottom:392.070000px;}
.ydf{bottom:392.790000px;}
.yaa{bottom:392.970000px;}
.y26b{bottom:393.150000px;}
.yfa{bottom:393.870000px;}
.y248{bottom:394.050000px;}
.y147{bottom:396.030000px;}
.y203{bottom:398.205000px;}
.y216{bottom:401.790000px;}
.yde{bottom:410.610000px;}
.ya9{bottom:410.790000px;}
.y26a{bottom:410.970000px;}
.y6e{bottom:411.690000px;}
.y247{bottom:411.870000px;}
.y146{bottom:413.850000px;}
.y284{bottom:418.890000px;}
.y215{bottom:419.610000px;}
.y21{bottom:423.030000px;}
.ya8{bottom:428.610000px;}
.y269{bottom:428.790000px;}
.yf9{bottom:429.330000px;}
.y6d{bottom:429.690000px;}
.y225{bottom:431.670000px;}
.y11b{bottom:432.945000px;}
.y1d4{bottom:437.445000px;}
.y145{bottom:437.610000px;}
.y154{bottom:439.740000px;}
.y20{bottom:440.895000px;}
.y202{bottom:443.775000px;}
.y283{bottom:445.935000px;}
.ydd{bottom:446.475000px;}
.ya7{bottom:446.655000px;}
.y6c{bottom:447.555000px;}
.y246{bottom:447.735000px;}
.y214{bottom:455.475000px;}
.yf8{bottom:456.555000px;}
.y1f{bottom:460.515000px;}
.ydc{bottom:464.295000px;}
.ya6{bottom:464.475000px;}
.y268{bottom:464.655000px;}
.y1d2{bottom:465.015000px;}
.y6b{bottom:465.375000px;}
.y245{bottom:465.555000px;}
.y282{bottom:472.755000px;}
.y213{bottom:473.295000px;}
.yf7{bottom:474.375000px;}
.ydb{bottom:482.115000px;}
.ya5{bottom:482.295000px;}
.y267{bottom:482.475000px;}
.y6a{bottom:483.195000px;}
.y244{bottom:483.375000px;}
.y11a{bottom:483.735000px;}
.y1e{bottom:484.275000px;}
.y201{bottom:489.135000px;}
.y212{bottom:491.115000px;}
.yf6{bottom:492.195000px;}
.y281{bottom:499.575000px;}
.ya4{bottom:500.115000px;}
.y266{bottom:500.295000px;}
.y69{bottom:501.015000px;}
.y243{bottom:501.195000px;}
.y1d{bottom:508.035000px;}
.yda{bottom:508.935000px;}
.yf5{bottom:510.015000px;}
.y119{bottom:510.915000px;}
.y1d1{bottom:511.455000px;}
.ya3{bottom:517.935000px;}
.y265{bottom:518.115000px;}
.y68{bottom:518.835000px;}
.y242{bottom:519.015000px;}
.y280{bottom:526.395000px;}
.yd9{bottom:526.935000px;}
.yf4{bottom:527.835000px;}
.y118{bottom:528.915000px;}
.y1c{bottom:534.315000px;}
.y200{bottom:534.675000px;}
.ya2{bottom:535.935000px;}
.y67{bottom:536.835000px;}
.y224{bottom:544.395000px;}
.yd8{bottom:544.755000px;}
.yf3{bottom:545.835000px;}
.y117{bottom:546.735000px;}
.y27f{bottom:553.215000px;}
.ya1{bottom:553.755000px;}
.y264{bottom:553.935000px;}
.y66{bottom:554.655000px;}
.y241{bottom:554.835000px;}
.y1ce{bottom:556.995000px;}
.y19a{bottom:558.435000px;}
.yd7{bottom:562.575000px;}
.yf2{bottom:563.655000px;}
.y116{bottom:564.195000px;}
.y1b{bottom:565.095000px;}
.y1ff{bottom:567.435000px;}
.ya0{bottom:571.575000px;}
.y263{bottom:571.755000px;}
.y65{bottom:572.475000px;}
.y240{bottom:572.655000px;}
.y27e{bottom:580.035000px;}
.yd6{bottom:580.395000px;}
.yf1{bottom:581.475000px;}
.y9f{bottom:589.395000px;}
.y262{bottom:589.575000px;}
.y23f{bottom:590.475000px;}
.y115{bottom:591.375000px;}
.y1fe{bottom:594.615000px;}
.yd5{bottom:598.215000px;}
.y64{bottom:599.295000px;}
.y1cc{bottom:603.435000px;}
.y27d{bottom:607.035000px;}
.y9e{bottom:607.215000px;}
.y261{bottom:607.395000px;}
.y199{bottom:608.115000px;}
.y23e{bottom:608.295000px;}
.y114{bottom:609.195000px;}
.y1fd{bottom:612.615000px;}
.y211{bottom:615.675000px;}
.yd4{bottom:616.035000px;}
.y63{bottom:617.115000px;}
.y1a{bottom:621.435000px;}
.y9d{bottom:625.035000px;}
.y260{bottom:625.215000px;}
.y23d{bottom:626.115000px;}
.y113{bottom:627.015000px;}
.y1fc{bottom:630.435000px;}
.y27c{bottom:633.855000px;}
.yd3{bottom:634.035000px;}
.y62{bottom:635.115000px;}
.y198{bottom:635.655000px;}
.y1cb{bottom:636.735000px;}
.y164{bottom:641.955000px;}
.y9c{bottom:643.035000px;}
.y23c{bottom:644.115000px;}
.y112{bottom:645.015000px;}
.y1fb{bottom:648.255000px;}
.yd2{bottom:651.855000px;}
.y19{bottom:652.395000px;}
.y61{bottom:652.935000px;}
.y1ca{bottom:654.555000px;}
.y27b{bottom:660.675000px;}
.y9b{bottom:660.855000px;}
.y25f{bottom:661.035000px;}
.y23b{bottom:661.935000px;}
.y111{bottom:662.835000px;}
.y197{bottom:663.195000px;}
.y163{bottom:664.095000px;}
.yd1{bottom:669.675000px;}
.y60{bottom:670.755000px;}
.y1fa{bottom:675.075000px;}
.y9a{bottom:678.705000px;}
.y25e{bottom:678.885000px;}
.y23a{bottom:679.785000px;}
.y110{bottom:680.685000px;}
.y1c9{bottom:681.945000px;}
.yd0{bottom:687.525000px;}
.y5f{bottom:688.605000px;}
.y196{bottom:690.945000px;}
.y162{bottom:691.665000px;}
.y18{bottom:693.285000px;}
.y99{bottom:696.525000px;}
.y25d{bottom:696.705000px;}
.y1f8{bottom:697.065000px;}
.y239{bottom:697.605000px;}
.y10f{bottom:698.505000px;}
.y1c8{bottom:699.765000px;}
.y5e{bottom:706.425000px;}
.y144{bottom:708.585000px;}
.y98{bottom:713.985000px;}
.ycf{bottom:714.345000px;}
.y25c{bottom:714.525000px;}
.y238{bottom:715.425000px;}
.y10e{bottom:716.325000px;}
.y1c7{bottom:717.585000px;}
.y195{bottom:718.485000px;}
.y161{bottom:719.205000px;}
.y5d{bottom:724.245000px;}
.y143{bottom:730.545000px;}
.yce{bottom:732.165000px;}
.y25b{bottom:732.345000px;}
.y237{bottom:733.245000px;}
.y10d{bottom:734.325000px;}
.y1c6{bottom:735.405000px;}
.y97{bottom:741.165000px;}
.y17{bottom:742.065000px;}
.y5c{bottom:742.245000px;}
.y1f7{bottom:743.865000px;}
.y160{bottom:746.925000px;}
.ycd{bottom:750.165000px;}
.y236{bottom:751.245000px;}
.y10c{bottom:751.785000px;}
.y141{bottom:758.085000px;}
.y96{bottom:759.165000px;}
.y5b{bottom:760.065000px;}
.y1c5{bottom:762.225000px;}
.ycc{bottom:767.985000px;}
.y25a{bottom:768.165000px;}
.y235{bottom:769.065000px;}
.y16{bottom:769.785000px;}
.y10b{bottom:771.945000px;}
.y15e{bottom:774.465000px;}
.y95{bottom:776.985000px;}
.yf0{bottom:777.525000px;}
.y194{bottom:778.605000px;}
.y1c4{bottom:784.185000px;}
.ycb{bottom:785.805000px;}
.y259{bottom:785.985000px;}
.y5a{bottom:786.885000px;}
.y1f4{bottom:789.225000px;}
.y94{bottom:794.805000px;}
.y193{bottom:796.425000px;}
.y10a{bottom:797.685000px;}
.yca{bottom:803.625000px;}
.y258{bottom:803.805000px;}
.y59{bottom:804.705000px;}
.y15d{bottom:807.765000px;}
.y93{bottom:812.625000px;}
.y140{bottom:813.345000px;}
.y192{bottom:814.245000px;}
.yc9{bottom:821.445000px;}
.y257{bottom:821.625000px;}
.y58{bottom:822.525000px;}
.y15{bottom:824.865000px;}
.y1c3{bottom:829.725000px;}
.y92{bottom:830.445000px;}
.y191{bottom:832.065000px;}
.y15c{bottom:834.585000px;}
.y1f3{bottom:834.945000px;}
.yc8{bottom:839.445000px;}
.y57{bottom:840.345000px;}
.y13f{bottom:846.645000px;}
.y14{bottom:847.725000px;}
.y91{bottom:848.445000px;}
.y15b{bottom:852.405000px;}
.y190{bottom:855.825000px;}
.yc7{bottom:857.265000px;}
.y256{bottom:857.445000px;}
.y1a0{bottom:858.060000px;}
.y56{bottom:858.345000px;}
.y90{bottom:866.265000px;}
.y13{bottom:869.505000px;}
.y15a{bottom:870.225000px;}
.y13e{bottom:873.465000px;}
.yc6{bottom:875.085000px;}
.y255{bottom:875.265000px;}
.y55{bottom:876.165000px;}
.y234{bottom:878.145000px;}
.y1f2{bottom:880.485000px;}
.y8f{bottom:884.085000px;}
.y13d{bottom:891.285000px;}
.y12{bottom:891.465000px;}
.yc5{bottom:892.905000px;}
.y254{bottom:893.085000px;}
.y54{bottom:893.985000px;}
.y172{bottom:895.680000px;}
.y8e{bottom:901.905000px;}
.y1f0{bottom:908.205000px;}
.y13c{bottom:909.105000px;}
.y233{bottom:910.950000px;}
.y53{bottom:911.850000px;}
.y11{bottom:914.370000px;}
.y8d{bottom:919.770000px;}
.y1c2{bottom:920.670000px;}
.y13b{bottom:926.610000px;}
.y232{bottom:928.770000px;}
.y52{bottom:929.670000px;}
.y10{bottom:936.510000px;}
.y8c{bottom:937.590000px;}
.y1ef{bottom:941.010000px;}
.y231{bottom:946.590000px;}
.yef{bottom:947.670000px;}
.y13a{bottom:953.970000px;}
.y8b{bottom:955.590000px;}
.y51{bottom:956.670000px;}
.y1ee{bottom:959.010000px;}
.yf{bottom:959.190000px;}
.y230{bottom:964.590000px;}
.yee{bottom:965.130000px;}
.y1c1{bottom:966.210000px;}
.y139{bottom:971.790000px;}
.y8a{bottom:973.050000px;}
.yc4{bottom:973.410000px;}
.y50{bottom:974.490000px;}
.y22f{bottom:982.410000px;}
.yed{bottom:985.290000px;}
.ye{bottom:985.650000px;}
.y1ed{bottom:986.190000px;}
.y138{bottom:989.610000px;}
.yc3{bottom:991.230000px;}
.y4f{bottom:992.310000px;}
.yd{bottom:997.710000px;}
.y89{bottom:1000.230000px;}
.y1ec{bottom:1004.010000px;}
.y137{bottom:1007.430000px;}
.yc2{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y4e{bottom:1010.130000px;}
.y1c0{bottom:1011.570000px;}
.y88{bottom:1018.050000px;}
.yb{bottom:1021.830000px;}
.y136{bottom:1025.250000px;}
.yc1{bottom:1026.870000px;}
.y4d{bottom:1027.950000px;}
.y87{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y1eb{bottom:1039.650000px;}
.y135{bottom:1043.070000px;}
.y109{bottom:1044.510000px;}
.yc0{bottom:1044.870000px;}
.y4c{bottom:1045.770000px;}
.y86{bottom:1053.870000px;}
.y134{bottom:1061.070000px;}
.y9{bottom:1061.970000px;}
.y1bf{bottom:1062.330000px;}
.ybf{bottom:1062.690000px;}
.y4b{bottom:1063.770000px;}
.y1ea{bottom:1066.650000px;}
.y85{bottom:1071.690000px;}
.y133{bottom:1078.890000px;}
.ybe{bottom:1080.510000px;}
.y4a{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.y1e8{bottom:1088.610000px;}
.y84{bottom:1089.510000px;}
.y132{bottom:1096.710000px;}
.ybd{bottom:1098.330000px;}
.y49{bottom:1099.410000px;}
.y83{bottom:1107.330000px;}
.y223{bottom:1115.790000px;}
.ybc{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y48{bottom:1117.230000px;}
.y1e6{bottom:1117.410000px;}
.y131{bottom:1123.530000px;}
.y82{bottom:1125.150000px;}
.ybb{bottom:1133.970000px;}
.y47{bottom:1135.050000px;}
.y81{bottom:1142.970000px;}
.y12f{bottom:1145.520000px;}
.yba{bottom:1151.640000px;}
.y46{bottom:1153.080000px;}
.y80{bottom:1161.000000px;}
.y1e4{bottom:1162.620000px;}
.y6{bottom:1165.860000px;}
.y45{bottom:1170.900000px;}
.y7f{bottom:1178.820000px;}
.y44{bottom:1190.700000px;}
.y1be{bottom:1196.280000px;}
.y7e{bottom:1196.640000px;}
.h21{height:26.805000px;}
.h26{height:26.815500px;}
.h1e{height:26.820000px;}
.h34{height:26.841000px;}
.h24{height:26.850000px;}
.h22{height:26.856000px;}
.h20{height:26.985000px;}
.h25{height:26.995500px;}
.h1f{height:27.000000px;}
.h2b{height:27.030000px;}
.h36{height:27.165000px;}
.h31{height:27.345000px;}
.h3a{height:28.080000px;}
.h2{height:31.135500px;}
.h18{height:37.705078px;}
.h9{height:40.985156px;}
.h39{height:44.482500px;}
.h3d{height:44.625000px;}
.h2d{height:44.640000px;}
.h33{height:44.805000px;}
.h30{height:44.820000px;}
.h19{height:44.841000px;}
.h2f{height:44.856000px;}
.h3b{height:45.000000px;}
.h38{height:45.540000px;}
.h32{height:45.705000px;}
.h3c{height:45.900000px;}
.h37{height:46.255500px;}
.h35{height:46.425000px;}
.h2e{height:52.971680px;}
.h3{height:52.998047px;}
.h28{height:53.709961px;}
.h11{height:54.421875px;}
.h3e{height:55.503491px;}
.h17{height:56.214844px;}
.h14{height:58.621992px;}
.ha{height:58.651172px;}
.hb{height:60.226875px;}
.h1c{height:62.635500px;}
.h1d{height:62.640000px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hf{height:66.757500px;}
.he{height:72.326250px;}
.h10{height:72.562500px;}
.h16{height:78.367500px;}
.h13{height:78.512625px;}
.h1a{height:80.265000px;}
.h1b{height:80.496000px;}
.h15{height:80.949375px;}
.hd{height:82.676953px;}
.h29{height:83.787539px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h23{height:254.340000px;}
.h2a{height:255.600000px;}
.h12{height:266.220000px;}
.h27{height:304.200000px;}
.h2c{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:36.525000px;}
.w5{width:36.562500px;}
.w32{width:50.422500px;}
.w27{width:51.322500px;}
.w2d{width:51.682500px;}
.w34{width:53.265000px;}
.w2a{width:53.301000px;}
.w21{width:54.742500px;}
.w29{width:59.925000px;}
.w24{width:61.581000px;}
.w25{width:61.725000px;}
.w2b{width:66.765000px;}
.w23{width:68.745000px;}
.w3{width:80.310000px;}
.wb{width:84.945000px;}
.w7{width:85.176000px;}
.w8{width:87.660000px;}
.wc{width:87.690000px;}
.w26{width:96.510000px;}
.w2c{width:106.410000px;}
.w2f{width:108.390000px;}
.w31{width:112.890000px;}
.w35{width:119.550000px;}
.wd{width:121.305000px;}
.we{width:121.341000px;}
.wf{width:121.350000px;}
.w10{width:122.385000px;}
.w11{width:122.421000px;}
.w12{width:122.430000px;}
.w6{width:158.211000px;}
.wa{width:158.235000px;}
.w14{width:217.690500px;}
.w1c{width:218.590500px;}
.w1d{width:228.810000px;}
.w17{width:259.090500px;}
.w18{width:259.230000px;}
.w19{width:259.260000px;}
.w15{width:263.910000px;}
.w16{width:300.300000px;}
.w1e{width:330.180000px;}
.w13{width:365.400000px;}
.w22{width:420.735000px;}
.w30{width:436.575000px;}
.w28{width:437.115000px;}
.w33{width:437.655000px;}
.w2e{width:438.735000px;}
.w2{width:722.115000px;}
.w1a{width:751.500000px;}
.w20{width:768.600000px;}
.w1f{width:773.100000px;}
.w1b{width:774.000000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:7.555500px;}
.x5{left:8.640000px;}
.x78{left:9.720000px;}
.x16{left:10.800000px;}
.x23{left:13.500000px;}
.x20{left:14.940000px;}
.x28{left:16.560000px;}
.x6b{left:18.885000px;}
.x6f{left:22.485000px;}
.x27{left:23.580000px;}
.x76{left:24.840000px;}
.x21{left:26.100000px;}
.x24{left:27.720000px;}
.x26{left:29.880000px;}
.x22{left:31.680000px;}
.x29{left:33.300000px;}
.x1d{left:34.920000px;}
.x15{left:39.240000px;}
.x33{left:40.485000px;}
.x2f{left:41.745000px;}
.x1{left:45.364500px;}
.x31{left:46.650000px;}
.x17{left:50.040000px;}
.x1b{left:51.844500px;}
.x7{left:54.000000px;}
.x25{left:56.160000px;}
.x70{left:57.244500px;}
.x53{left:58.320000px;}
.x65{left:60.480000px;}
.x69{left:62.824500px;}
.x44{left:66.811500px;}
.x50{left:69.480000px;}
.x4d{left:73.111500px;}
.xe{left:74.520000px;}
.x42{left:75.631500px;}
.x3f{left:79.051500px;}
.x18{left:81.000000px;}
.x60{left:82.651500px;}
.x37{left:84.810000px;}
.x5e{left:87.871500px;}
.x1c{left:89.136000px;}
.x61{left:91.291500px;}
.x45{left:94.531500px;}
.x4b{left:95.790000px;}
.x5a{left:98.820000px;}
.x5f{left:104.220000px;}
.x19{left:108.036000px;}
.x38{left:109.470000px;}
.x48{left:110.725500px;}
.x4f{left:115.225500px;}
.x3c{left:116.280000px;}
.x3e{left:118.290000px;}
.x4e{left:119.340000px;}
.x43{left:121.680000px;}
.x4c{left:122.760000px;}
.x40{left:125.100000px;}
.x5c{left:128.370000px;}
.x46{left:134.850000px;}
.x41{left:138.270000px;}
.x39{left:142.530000px;}
.x64{left:143.895000px;}
.x36{left:146.340000px;}
.x57{left:149.865000px;}
.x5d{left:153.210000px;}
.x51{left:154.695000px;}
.x62{left:156.630000px;}
.x54{left:158.250000px;}
.x68{left:186.870000px;}
.x35{left:190.230000px;}
.x2{left:222.370500px;}
.x10{left:234.210000px;}
.x1e{left:248.070000px;}
.x11{left:265.215000px;}
.xb{left:268.815000px;}
.x3{left:271.330500px;}
.x3b{left:273.315000px;}
.x59{left:276.375000px;}
.x12{left:281.955000px;}
.x58{left:288.900000px;}
.xc{left:295.995000px;}
.x66{left:301.140000px;}
.x9{left:305.175000px;}
.x13{left:314.355000px;}
.x49{left:316.875000px;}
.x1f{left:333.975000px;}
.xf{left:340.455000px;}
.x8{left:351.615000px;}
.xa{left:364.395000px;}
.xd{left:378.795000px;}
.x55{left:389.910000px;}
.x6{left:446.505000px;}
.x2a{left:471.540000px;}
.x14{left:473.505000px;}
.x1a{left:500.505000px;}
.x5b{left:505.920000px;}
.x2b{left:508.800000px;}
.x2e{left:527.505000px;}
.x3d{left:537.960000px;}
.x6a{left:539.760000px;}
.x72{left:547.320000px;}
.x4a{left:576.840000px;}
.x30{left:595.560000px;}
.x52{left:603.000000px;}
.x73{left:607.980000px;}
.x6c{left:609.240000px;}
.x56{left:621.570000px;}
.x67{left:657.975000px;}
.x74{left:662.010000px;}
.x2c{left:667.770000px;}
.x6d{left:671.550000px;}
.x79{left:716.010000px;}
.x32{left:717.810000px;}
.x77{left:722.850000px;}
.x75{left:729.510000px;}
.x6e{left:734.010000px;}
.x2d{left:753.450000px;}
.x4{left:767.490000px;}
.x3a{left:823.500000px;}
.x63{left:832.500000px;}
.x47{left:834.660000px;}
.x34{left:840.240000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.224000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.720000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls12{letter-spacing:7.840000pt;}
.ls9{letter-spacing:22.496000pt;}
.ls17{letter-spacing:46.816000pt;}
.ls2{letter-spacing:63.360000pt;}
.ws11{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.288000pt;}
.wsa{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.888000pt;}
.ws13{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.776000pt;}
.wsf{word-spacing:-10.832000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:65.025707pt;}
._9{margin-left:-9.487360pt;}
._2b{margin-left:-1.933440pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.162667pt;}
._6{width:2.165120pt;}
._5{width:3.608107pt;}
._c{width:5.280000pt;}
._8{width:6.592853pt;}
._3{width:7.549013pt;}
._4{width:8.605440pt;}
._18{width:9.504000pt;}
._b{width:10.416000pt;}
._10{width:12.960000pt;}
._7{width:14.314240pt;}
._a{width:15.383467pt;}
._2{width:16.679680pt;}
._13{width:17.616000pt;}
._14{width:18.685653pt;}
._12{width:19.776000pt;}
._1a{width:20.784000pt;}
._11{width:21.696000pt;}
._26{width:22.986667pt;}
._1f{width:23.904000pt;}
._1c{width:25.040000pt;}
._1d{width:26.277333pt;}
._d{width:28.032000pt;}
._e{width:28.933333pt;}
._24{width:30.250667pt;}
._20{width:31.152000pt;}
._15{width:32.112000pt;}
._16{width:33.216000pt;}
._21{width:34.213333pt;}
._31{width:35.205333pt;}
._1e{width:36.816000pt;}
._22{width:38.304000pt;}
._23{width:39.792000pt;}
._35{width:40.874667pt;}
._19{width:42.624000pt;}
._39{width:45.936000pt;}
._1b{width:46.848000pt;}
._25{width:48.480000pt;}
._f{width:49.440000pt;}
._3d{width:50.832000pt;}
._17{width:51.888000pt;}
._34{width:54.626773pt;}
._38{width:55.728000pt;}
._37{width:60.720000pt;}
._32{width:67.920000pt;}
._33{width:68.928000pt;}
._36{width:84.061440pt;}
._3a{width:90.912000pt;}
._3b{width:91.872000pt;}
._3c{width:103.344000pt;}
._3e{width:281.376000pt;}
._3f{width:304.944000pt;}
._2e{width:415.621333pt;}
._2d{width:418.522667pt;}
._2f{width:435.616000pt;}
._30{width:448.682667pt;}
._2c{width:494.501333pt;}
._2a{width:561.621333pt;}
._27{width:568.234667pt;}
._28{width:569.141333pt;}
._29{width:607.184000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y15f{bottom:8.640000pt;}
.y14d{bottom:8.786667pt;}
.y11d{bottom:8.826667pt;}
.y123{bottom:8.946667pt;}
.y12a{bottom:8.960000pt;}
.y151{bottom:8.986667pt;}
.y1f1{bottom:9.000000pt;}
.y16d{bottom:9.106667pt;}
.y142{bottom:9.120000pt;}
.y1e0{bottom:9.266667pt;}
.y1f6{bottom:9.280000pt;}
.y1cd{bottom:9.440000pt;}
.y1d0{bottom:9.760000pt;}
.y1d3{bottom:9.920000pt;}
.y1e9{bottom:10.080000pt;}
.y1d7{bottom:10.546667pt;}
.y1bc{bottom:11.653333pt;}
.y18e{bottom:11.706667pt;}
.y1ab{bottom:11.866667pt;}
.y181{bottom:11.906667pt;}
.y4{bottom:13.920000pt;}
.y159{bottom:15.066667pt;}
.y2{bottom:16.800000pt;}
.y1e7{bottom:24.640000pt;}
.y11c{bottom:24.666667pt;}
.y122{bottom:24.786667pt;}
.y12e{bottom:24.800000pt;}
.y129{bottom:24.826667pt;}
.y204{bottom:24.946667pt;}
.y130{bottom:24.960000pt;}
.y1f5{bottom:25.120000pt;}
.y1e5{bottom:25.600000pt;}
.y1cf{bottom:25.760000pt;}
.y1f9{bottom:25.920000pt;}
.y1e3{bottom:26.240000pt;}
.y1d6{bottom:26.386667pt;}
.y1b2{bottom:27.266667pt;}
.y187{bottom:27.333333pt;}
.y1a4{bottom:27.493333pt;}
.y176{bottom:27.520000pt;}
.y5{bottom:35.360000pt;}
.y12c{bottom:40.480000pt;}
.y121{bottom:40.626667pt;}
.y128{bottom:40.666667pt;}
.y12d{bottom:40.800000pt;}
.y177{bottom:46.533333pt;}
.y1b3{bottom:50.333333pt;}
.y188{bottom:51.813333pt;}
.y1{bottom:53.920000pt;}
.y11f{bottom:56.146667pt;}
.y126{bottom:56.346667pt;}
.y120{bottom:56.466667pt;}
.y127{bottom:56.666667pt;}
.y41{bottom:61.946667pt;}
.y1a5{bottom:62.080000pt;}
.y178{bottom:65.506667pt;}
.y1b4{bottom:73.413333pt;}
.y189{bottom:76.253333pt;}
.y184{bottom:77.186667pt;}
.y155{bottom:78.466667pt;}
.y40{bottom:79.706667pt;}
.y1b1{bottom:81.466667pt;}
.y179{bottom:84.506667pt;}
.y171{bottom:91.680000pt;}
.y222{bottom:95.200000pt;}
.y1a1{bottom:95.866667pt;}
.y22e{bottom:96.160000pt;}
.y1b5{bottom:96.480000pt;}
.y1a6{bottom:96.706667pt;}
.y3f{bottom:97.306667pt;}
.y2d{bottom:97.600000pt;}
.y7d{bottom:97.760000pt;}
.y156{bottom:100.453333pt;}
.y18a{bottom:100.733333pt;}
.y210{bottom:102.720000pt;}
.yb9{bottom:103.200000pt;}
.y17a{bottom:103.520000pt;}
.y1e2{bottom:103.840000pt;}
.y37{bottom:105.600000pt;}
.y28f{bottom:109.760000pt;}
.y221{bottom:111.200000pt;}
.y27a{bottom:111.360000pt;}
.y108{bottom:111.680000pt;}
.y22d{bottom:112.000000pt;}
.y12b{bottom:112.160000pt;}
.y7c{bottom:113.760000pt;}
.y3e{bottom:114.906667pt;}
.y170{bottom:116.160000pt;}
.y20e{bottom:118.720000pt;}
.yec{bottom:119.040000pt;}
.yb8{bottom:119.200000pt;}
.y1b6{bottom:119.546667pt;}
.y2c{bottom:121.600000pt;}
.y17b{bottom:122.533333pt;}
.y19f{bottom:124.800000pt;}
.y18b{bottom:125.213333pt;}
.y220{bottom:127.040000pt;}
.y279{bottom:127.200000pt;}
.y22c{bottom:128.000000pt;}
.y7b{bottom:129.280000pt;}
.y36{bottom:129.440000pt;}
.y186{bottom:130.533333pt;}
.y1a7{bottom:131.293333pt;}
.y3d{bottom:132.506667pt;}
.y153{bottom:133.280000pt;}
.y173{bottom:133.306667pt;}
.y28e{bottom:133.760000pt;}
.y20d{bottom:134.560000pt;}
.yeb{bottom:134.880000pt;}
.yb7{bottom:135.040000pt;}
.y107{bottom:135.840000pt;}
.y19e{bottom:140.640000pt;}
.y16f{bottom:140.800000pt;}
.y17c{bottom:141.533333pt;}
.y1b7{bottom:142.626667pt;}
.y21f{bottom:142.880000pt;}
.y278{bottom:143.200000pt;}
.y22b{bottom:143.840000pt;}
.y253{bottom:144.000000pt;}
.y7a{bottom:145.120000pt;}
.y2b{bottom:145.440000pt;}
.y1e1{bottom:145.600000pt;}
.y18c{bottom:149.693333pt;}
.y3c{bottom:150.106667pt;}
.y20c{bottom:150.400000pt;}
.yea{bottom:150.720000pt;}
.yb6{bottom:150.880000pt;}
.y1ae{bottom:151.586667pt;}
.y106{bottom:151.680000pt;}
.y152{bottom:152.800000pt;}
.y35{bottom:153.280000pt;}
.y19d{bottom:156.480000pt;}
.y185{bottom:156.960000pt;}
.y28d{bottom:157.600000pt;}
.y21e{bottom:158.720000pt;}
.y277{bottom:159.040000pt;}
.y22a{bottom:159.680000pt;}
.y252{bottom:159.840000pt;}
.y17d{bottom:160.546667pt;}
.y175{bottom:162.560000pt;}
.y1a3{bottom:163.013333pt;}
.y79{bottom:163.040000pt;}
.y16e{bottom:165.280000pt;}
.y1b8{bottom:165.693333pt;}
.y158{bottom:165.853333pt;}
.y1a8{bottom:165.920000pt;}
.y20b{bottom:166.240000pt;}
.ye9{bottom:166.560000pt;}
.yb5{bottom:166.720000pt;}
.y1b0{bottom:166.813333pt;}
.y105{bottom:167.520000pt;}
.y3b{bottom:167.866667pt;}
.y125{bottom:168.480000pt;}
.y2a{bottom:169.280000pt;}
.y19c{bottom:172.480000pt;}
.y18d{bottom:174.146667pt;}
.y21d{bottom:174.560000pt;}
.y276{bottom:174.880000pt;}
.y229{bottom:175.520000pt;}
.y251{bottom:175.680000pt;}
.y34{bottom:177.120000pt;}
.y150{bottom:177.280000pt;}
.y17e{bottom:179.546667pt;}
.y28c{bottom:181.440000pt;}
.y20a{bottom:182.080000pt;}
.ye8{bottom:182.400000pt;}
.yb4{bottom:182.586667pt;}
.y104{bottom:183.386667pt;}
.y3a{bottom:185.466667pt;}
.y78{bottom:186.106667pt;}
.y1df{bottom:186.120000pt;}
.y38{bottom:186.240000pt;}
.y1b9{bottom:188.773333pt;}
.y16c{bottom:189.800000pt;}
.y21c{bottom:190.426667pt;}
.y275{bottom:190.746667pt;}
.y228{bottom:191.386667pt;}
.y250{bottom:191.546667pt;}
.y29{bottom:193.146667pt;}
.y19b{bottom:193.466667pt;}
.y157{bottom:193.533333pt;}
.y1ad{bottom:195.680000pt;}
.y209{bottom:197.946667pt;}
.yb3{bottom:198.426667pt;}
.y17f{bottom:198.560000pt;}
.y18f{bottom:199.226667pt;}
.y103{bottom:199.386667pt;}
.y1a9{bottom:200.506667pt;}
.y33{bottom:200.986667pt;}
.y14f{bottom:201.960000pt;}
.y43{bottom:204.666667pt;}
.y174{bottom:204.773333pt;}
.y28b{bottom:205.306667pt;}
.y21b{bottom:206.426667pt;}
.y274{bottom:206.586667pt;}
.y227{bottom:207.386667pt;}
.y1a2{bottom:207.653333pt;}
.y1ba{bottom:211.840000pt;}
.y39{bottom:212.386667pt;}
.ye7{bottom:213.946667pt;}
.yb2{bottom:214.426667pt;}
.y102{bottom:214.906667pt;}
.y77{bottom:215.226667pt;}
.y1de{bottom:215.546667pt;}
.y28{bottom:216.986667pt;}
.y180{bottom:217.573333pt;}
.y16b{bottom:219.386667pt;}
.y1af{bottom:221.733333pt;}
.y21a{bottom:222.266667pt;}
.y273{bottom:222.426667pt;}
.y226{bottom:223.226667pt;}
.y24f{bottom:223.386667pt;}
.y32{bottom:224.986667pt;}
.y14e{bottom:226.440000pt;}
.y28a{bottom:229.146667pt;}
.y20f{bottom:229.466667pt;}
.y208{bottom:229.786667pt;}
.yb1{bottom:230.266667pt;}
.y42{bottom:230.586667pt;}
.y76{bottom:231.066667pt;}
.y1dd{bottom:231.546667pt;}
.y1bb{bottom:234.906667pt;}
.y1aa{bottom:235.133333pt;}
.ye6{bottom:238.106667pt;}
.y272{bottom:238.426667pt;}
.y101{bottom:239.066667pt;}
.y24e{bottom:239.226667pt;}
.y124{bottom:240.680000pt;}
.y27{bottom:240.986667pt;}
.y182{bottom:242.626667pt;}
.y16a{bottom:243.226667pt;}
.yb0{bottom:246.106667pt;}
.y75{bottom:246.906667pt;}
.y31{bottom:248.826667pt;}
.y14c{bottom:250.920000pt;}
.y289{bottom:252.986667pt;}
.y207{bottom:253.626667pt;}
.ye5{bottom:253.946667pt;}
.y271{bottom:254.266667pt;}
.y100{bottom:254.906667pt;}
.y24d{bottom:255.066667pt;}
.y1dc{bottom:255.706667pt;}
.y169{bottom:259.066667pt;}
.y1bd{bottom:260.000000pt;}
.y1ac{bottom:260.186667pt;}
.yaf{bottom:261.946667pt;}
.y74{bottom:262.746667pt;}
.y26{bottom:264.826667pt;}
.ye4{bottom:269.786667pt;}
.y270{bottom:270.106667pt;}
.yff{bottom:270.746667pt;}
.y24c{bottom:270.906667pt;}
.y1db{bottom:271.546667pt;}
.y30{bottom:272.666667pt;}
.y206{bottom:273.160000pt;}
.y168{bottom:274.906667pt;}
.y288{bottom:276.986667pt;}
.yae{bottom:277.786667pt;}
.y73{bottom:278.586667pt;}
.y14b{bottom:280.506667pt;}
.ye3{bottom:285.786667pt;}
.y26f{bottom:285.946667pt;}
.yfe{bottom:286.586667pt;}
.y24b{bottom:286.746667pt;}
.y1da{bottom:287.386667pt;}
.y25{bottom:288.666667pt;}
.y167{bottom:290.906667pt;}
.yad{bottom:293.786667pt;}
.y72{bottom:294.586667pt;}
.y2f{bottom:296.506667pt;}
.y287{bottom:300.826667pt;}
.ye2{bottom:301.626667pt;}
.y26e{bottom:301.786667pt;}
.yfd{bottom:302.586667pt;}
.y1d9{bottom:303.226667pt;}
.y14a{bottom:304.346667pt;}
.y166{bottom:306.746667pt;}
.yac{bottom:309.306667pt;}
.y219{bottom:309.626667pt;}
.y71{bottom:310.426667pt;}
.y24{bottom:312.826667pt;}
.y11e{bottom:312.840000pt;}
.y205{bottom:313.640000pt;}
.ye1{bottom:317.466667pt;}
.y26d{bottom:317.786667pt;}
.yfc{bottom:318.426667pt;}
.y24a{bottom:318.586667pt;}
.y149{bottom:320.186667pt;}
.y2e{bottom:320.346667pt;}
.y286{bottom:324.666667pt;}
.yab{bottom:325.146667pt;}
.y218{bottom:325.466667pt;}
.y70{bottom:326.266667pt;}
.y1d8{bottom:327.226667pt;}
.y165{bottom:327.706667pt;}
.y23{bottom:328.666667pt;}
.y183{bottom:330.720000pt;}
.ye0{bottom:333.306667pt;}
.y26c{bottom:333.626667pt;}
.yfb{bottom:334.266667pt;}
.y249{bottom:334.426667pt;}
.y148{bottom:336.026667pt;}
.y217{bottom:341.306667pt;}
.y6f{bottom:342.106667pt;}
.y22{bottom:344.186667pt;}
.y1d5{bottom:346.760000pt;}
.y285{bottom:348.506667pt;}
.ydf{bottom:349.146667pt;}
.yaa{bottom:349.306667pt;}
.y26b{bottom:349.466667pt;}
.yfa{bottom:350.106667pt;}
.y248{bottom:350.266667pt;}
.y147{bottom:352.026667pt;}
.y203{bottom:353.960000pt;}
.y216{bottom:357.146667pt;}
.yde{bottom:364.986667pt;}
.ya9{bottom:365.146667pt;}
.y26a{bottom:365.306667pt;}
.y6e{bottom:365.946667pt;}
.y247{bottom:366.106667pt;}
.y146{bottom:367.866667pt;}
.y284{bottom:372.346667pt;}
.y215{bottom:372.986667pt;}
.y21{bottom:376.026667pt;}
.ya8{bottom:380.986667pt;}
.y269{bottom:381.146667pt;}
.yf9{bottom:381.626667pt;}
.y6d{bottom:381.946667pt;}
.y225{bottom:383.706667pt;}
.y11b{bottom:384.840000pt;}
.y1d4{bottom:388.840000pt;}
.y145{bottom:388.986667pt;}
.y154{bottom:390.880000pt;}
.y20{bottom:391.906667pt;}
.y202{bottom:394.466667pt;}
.y283{bottom:396.386667pt;}
.ydd{bottom:396.866667pt;}
.ya7{bottom:397.026667pt;}
.y6c{bottom:397.826667pt;}
.y246{bottom:397.986667pt;}
.y214{bottom:404.866667pt;}
.yf8{bottom:405.826667pt;}
.y1f{bottom:409.346667pt;}
.ydc{bottom:412.706667pt;}
.ya6{bottom:412.866667pt;}
.y268{bottom:413.026667pt;}
.y1d2{bottom:413.346667pt;}
.y6b{bottom:413.666667pt;}
.y245{bottom:413.826667pt;}
.y282{bottom:420.226667pt;}
.y213{bottom:420.706667pt;}
.yf7{bottom:421.666667pt;}
.ydb{bottom:428.546667pt;}
.ya5{bottom:428.706667pt;}
.y267{bottom:428.866667pt;}
.y6a{bottom:429.506667pt;}
.y244{bottom:429.666667pt;}
.y11a{bottom:429.986667pt;}
.y1e{bottom:430.466667pt;}
.y201{bottom:434.786667pt;}
.y212{bottom:436.546667pt;}
.yf6{bottom:437.506667pt;}
.y281{bottom:444.066667pt;}
.ya4{bottom:444.546667pt;}
.y266{bottom:444.706667pt;}
.y69{bottom:445.346667pt;}
.y243{bottom:445.506667pt;}
.y1d{bottom:451.586667pt;}
.yda{bottom:452.386667pt;}
.yf5{bottom:453.346667pt;}
.y119{bottom:454.146667pt;}
.y1d1{bottom:454.626667pt;}
.ya3{bottom:460.386667pt;}
.y265{bottom:460.546667pt;}
.y68{bottom:461.186667pt;}
.y242{bottom:461.346667pt;}
.y280{bottom:467.906667pt;}
.yd9{bottom:468.386667pt;}
.yf4{bottom:469.186667pt;}
.y118{bottom:470.146667pt;}
.y1c{bottom:474.946667pt;}
.y200{bottom:475.266667pt;}
.ya2{bottom:476.386667pt;}
.y67{bottom:477.186667pt;}
.y224{bottom:483.906667pt;}
.yd8{bottom:484.226667pt;}
.yf3{bottom:485.186667pt;}
.y117{bottom:485.986667pt;}
.y27f{bottom:491.746667pt;}
.ya1{bottom:492.226667pt;}
.y264{bottom:492.386667pt;}
.y66{bottom:493.026667pt;}
.y241{bottom:493.186667pt;}
.y1ce{bottom:495.106667pt;}
.y19a{bottom:496.386667pt;}
.yd7{bottom:500.066667pt;}
.yf2{bottom:501.026667pt;}
.y116{bottom:501.506667pt;}
.y1b{bottom:502.306667pt;}
.y1ff{bottom:504.386667pt;}
.ya0{bottom:508.066667pt;}
.y263{bottom:508.226667pt;}
.y65{bottom:508.866667pt;}
.y240{bottom:509.026667pt;}
.y27e{bottom:515.586667pt;}
.yd6{bottom:515.906667pt;}
.yf1{bottom:516.866667pt;}
.y9f{bottom:523.906667pt;}
.y262{bottom:524.066667pt;}
.y23f{bottom:524.866667pt;}
.y115{bottom:525.666667pt;}
.y1fe{bottom:528.546667pt;}
.yd5{bottom:531.746667pt;}
.y64{bottom:532.706667pt;}
.y1cc{bottom:536.386667pt;}
.y27d{bottom:539.586667pt;}
.y9e{bottom:539.746667pt;}
.y261{bottom:539.906667pt;}
.y199{bottom:540.546667pt;}
.y23e{bottom:540.706667pt;}
.y114{bottom:541.506667pt;}
.y1fd{bottom:544.546667pt;}
.y211{bottom:547.266667pt;}
.yd4{bottom:547.586667pt;}
.y63{bottom:548.546667pt;}
.y1a{bottom:552.386667pt;}
.y9d{bottom:555.586667pt;}
.y260{bottom:555.746667pt;}
.y23d{bottom:556.546667pt;}
.y113{bottom:557.346667pt;}
.y1fc{bottom:560.386667pt;}
.y27c{bottom:563.426667pt;}
.yd3{bottom:563.586667pt;}
.y62{bottom:564.546667pt;}
.y198{bottom:565.026667pt;}
.y1cb{bottom:565.986667pt;}
.y164{bottom:570.626667pt;}
.y9c{bottom:571.586667pt;}
.y23c{bottom:572.546667pt;}
.y112{bottom:573.346667pt;}
.y1fb{bottom:576.226667pt;}
.yd2{bottom:579.426667pt;}
.y19{bottom:579.906667pt;}
.y61{bottom:580.386667pt;}
.y1ca{bottom:581.826667pt;}
.y27b{bottom:587.266667pt;}
.y9b{bottom:587.426667pt;}
.y25f{bottom:587.586667pt;}
.y23b{bottom:588.386667pt;}
.y111{bottom:589.186667pt;}
.y197{bottom:589.506667pt;}
.y163{bottom:590.306667pt;}
.yd1{bottom:595.266667pt;}
.y60{bottom:596.226667pt;}
.y1fa{bottom:600.066667pt;}
.y9a{bottom:603.293333pt;}
.y25e{bottom:603.453333pt;}
.y23a{bottom:604.253333pt;}
.y110{bottom:605.053333pt;}
.y1c9{bottom:606.173333pt;}
.yd0{bottom:611.133333pt;}
.y5f{bottom:612.093333pt;}
.y196{bottom:614.173333pt;}
.y162{bottom:614.813333pt;}
.y18{bottom:616.253333pt;}
.y99{bottom:619.133333pt;}
.y25d{bottom:619.293333pt;}
.y1f8{bottom:619.613333pt;}
.y239{bottom:620.093333pt;}
.y10f{bottom:620.893333pt;}
.y1c8{bottom:622.013333pt;}
.y5e{bottom:627.933333pt;}
.y144{bottom:629.853333pt;}
.y98{bottom:634.653333pt;}
.ycf{bottom:634.973333pt;}
.y25c{bottom:635.133333pt;}
.y238{bottom:635.933333pt;}
.y10e{bottom:636.733333pt;}
.y1c7{bottom:637.853333pt;}
.y195{bottom:638.653333pt;}
.y161{bottom:639.293333pt;}
.y5d{bottom:643.773333pt;}
.y143{bottom:649.373333pt;}
.yce{bottom:650.813333pt;}
.y25b{bottom:650.973333pt;}
.y237{bottom:651.773333pt;}
.y10d{bottom:652.733333pt;}
.y1c6{bottom:653.693333pt;}
.y97{bottom:658.813333pt;}
.y17{bottom:659.613333pt;}
.y5c{bottom:659.773333pt;}
.y1f7{bottom:661.213333pt;}
.y160{bottom:663.933333pt;}
.ycd{bottom:666.813333pt;}
.y236{bottom:667.773333pt;}
.y10c{bottom:668.253333pt;}
.y141{bottom:673.853333pt;}
.y96{bottom:674.813333pt;}
.y5b{bottom:675.613333pt;}
.y1c5{bottom:677.533333pt;}
.ycc{bottom:682.653333pt;}
.y25a{bottom:682.813333pt;}
.y235{bottom:683.613333pt;}
.y16{bottom:684.253333pt;}
.y10b{bottom:686.173333pt;}
.y15e{bottom:688.413333pt;}
.y95{bottom:690.653333pt;}
.yf0{bottom:691.133333pt;}
.y194{bottom:692.093333pt;}
.y1c4{bottom:697.053333pt;}
.ycb{bottom:698.493333pt;}
.y259{bottom:698.653333pt;}
.y5a{bottom:699.453333pt;}
.y1f4{bottom:701.533333pt;}
.y94{bottom:706.493333pt;}
.y193{bottom:707.933333pt;}
.y10a{bottom:709.053333pt;}
.yca{bottom:714.333333pt;}
.y258{bottom:714.493333pt;}
.y59{bottom:715.293333pt;}
.y15d{bottom:718.013333pt;}
.y93{bottom:722.333333pt;}
.y140{bottom:722.973333pt;}
.y192{bottom:723.773333pt;}
.yc9{bottom:730.173333pt;}
.y257{bottom:730.333333pt;}
.y58{bottom:731.133333pt;}
.y15{bottom:733.213333pt;}
.y1c3{bottom:737.533333pt;}
.y92{bottom:738.173333pt;}
.y191{bottom:739.613333pt;}
.y15c{bottom:741.853333pt;}
.y1f3{bottom:742.173333pt;}
.yc8{bottom:746.173333pt;}
.y57{bottom:746.973333pt;}
.y13f{bottom:752.573333pt;}
.y14{bottom:753.533333pt;}
.y91{bottom:754.173333pt;}
.y15b{bottom:757.693333pt;}
.y190{bottom:760.733333pt;}
.yc7{bottom:762.013333pt;}
.y256{bottom:762.173333pt;}
.y1a0{bottom:762.720000pt;}
.y56{bottom:762.973333pt;}
.y90{bottom:770.013333pt;}
.y13{bottom:772.893333pt;}
.y15a{bottom:773.533333pt;}
.y13e{bottom:776.413333pt;}
.yc6{bottom:777.853333pt;}
.y255{bottom:778.013333pt;}
.y55{bottom:778.813333pt;}
.y234{bottom:780.573333pt;}
.y1f2{bottom:782.653333pt;}
.y8f{bottom:785.853333pt;}
.y13d{bottom:792.253333pt;}
.y12{bottom:792.413333pt;}
.yc5{bottom:793.693333pt;}
.y254{bottom:793.853333pt;}
.y54{bottom:794.653333pt;}
.y172{bottom:796.160000pt;}
.y8e{bottom:801.693333pt;}
.y1f0{bottom:807.293333pt;}
.y13c{bottom:808.093333pt;}
.y233{bottom:809.733333pt;}
.y53{bottom:810.533333pt;}
.y11{bottom:812.773333pt;}
.y8d{bottom:817.573333pt;}
.y1c2{bottom:818.373333pt;}
.y13b{bottom:823.653333pt;}
.y232{bottom:825.573333pt;}
.y52{bottom:826.373333pt;}
.y10{bottom:832.453333pt;}
.y8c{bottom:833.413333pt;}
.y1ef{bottom:836.453333pt;}
.y231{bottom:841.413333pt;}
.yef{bottom:842.373333pt;}
.y13a{bottom:847.973333pt;}
.y8b{bottom:849.413333pt;}
.y51{bottom:850.373333pt;}
.y1ee{bottom:852.453333pt;}
.yf{bottom:852.613333pt;}
.y230{bottom:857.413333pt;}
.yee{bottom:857.893333pt;}
.y1c1{bottom:858.853333pt;}
.y139{bottom:863.813333pt;}
.y8a{bottom:864.933333pt;}
.yc4{bottom:865.253333pt;}
.y50{bottom:866.213333pt;}
.y22f{bottom:873.253333pt;}
.yed{bottom:875.813333pt;}
.ye{bottom:876.133333pt;}
.y1ed{bottom:876.613333pt;}
.y138{bottom:879.653333pt;}
.yc3{bottom:881.093333pt;}
.y4f{bottom:882.053333pt;}
.yd{bottom:886.853333pt;}
.y89{bottom:889.093333pt;}
.y1ec{bottom:892.453333pt;}
.y137{bottom:895.493333pt;}
.yc2{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y4e{bottom:897.893333pt;}
.y1c0{bottom:899.173333pt;}
.y88{bottom:904.933333pt;}
.yb{bottom:908.293333pt;}
.y136{bottom:911.333333pt;}
.yc1{bottom:912.773333pt;}
.y4d{bottom:913.733333pt;}
.y87{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y1eb{bottom:924.133333pt;}
.y135{bottom:927.173333pt;}
.y109{bottom:928.453333pt;}
.yc0{bottom:928.773333pt;}
.y4c{bottom:929.573333pt;}
.y86{bottom:936.773333pt;}
.y134{bottom:943.173333pt;}
.y9{bottom:943.973333pt;}
.y1bf{bottom:944.293333pt;}
.ybf{bottom:944.613333pt;}
.y4b{bottom:945.573333pt;}
.y1ea{bottom:948.133333pt;}
.y85{bottom:952.613333pt;}
.y133{bottom:959.013333pt;}
.ybe{bottom:960.453333pt;}
.y4a{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.y1e8{bottom:967.653333pt;}
.y84{bottom:968.453333pt;}
.y132{bottom:974.853333pt;}
.ybd{bottom:976.293333pt;}
.y49{bottom:977.253333pt;}
.y83{bottom:984.293333pt;}
.y223{bottom:991.813333pt;}
.ybc{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y48{bottom:993.093333pt;}
.y1e6{bottom:993.253333pt;}
.y131{bottom:998.693333pt;}
.y82{bottom:1000.133333pt;}
.ybb{bottom:1007.973333pt;}
.y47{bottom:1008.933333pt;}
.y81{bottom:1015.973333pt;}
.y12f{bottom:1018.240000pt;}
.yba{bottom:1023.680000pt;}
.y46{bottom:1024.960000pt;}
.y80{bottom:1032.000000pt;}
.y1e4{bottom:1033.440000pt;}
.y6{bottom:1036.320000pt;}
.y45{bottom:1040.800000pt;}
.y7f{bottom:1047.840000pt;}
.y44{bottom:1058.400000pt;}
.y1be{bottom:1063.360000pt;}
.y7e{bottom:1063.680000pt;}
.h21{height:23.826667pt;}
.h26{height:23.836000pt;}
.h1e{height:23.840000pt;}
.h34{height:23.858667pt;}
.h24{height:23.866667pt;}
.h22{height:23.872000pt;}
.h20{height:23.986667pt;}
.h25{height:23.996000pt;}
.h1f{height:24.000000pt;}
.h2b{height:24.026667pt;}
.h36{height:24.146667pt;}
.h31{height:24.306667pt;}
.h3a{height:24.960000pt;}
.h2{height:27.676000pt;}
.h18{height:33.515625pt;}
.h9{height:36.431250pt;}
.h39{height:39.540000pt;}
.h3d{height:39.666667pt;}
.h2d{height:39.680000pt;}
.h33{height:39.826667pt;}
.h30{height:39.840000pt;}
.h19{height:39.858667pt;}
.h2f{height:39.872000pt;}
.h3b{height:40.000000pt;}
.h38{height:40.480000pt;}
.h32{height:40.626667pt;}
.h3c{height:40.800000pt;}
.h37{height:41.116000pt;}
.h35{height:41.266667pt;}
.h2e{height:47.085938pt;}
.h3{height:47.109375pt;}
.h28{height:47.742188pt;}
.h11{height:48.375000pt;}
.h3e{height:49.336436pt;}
.h17{height:49.968750pt;}
.h14{height:52.108438pt;}
.ha{height:52.134375pt;}
.hb{height:53.535000pt;}
.h1c{height:55.676000pt;}
.h1d{height:55.680000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hf{height:59.340000pt;}
.he{height:64.290000pt;}
.h10{height:64.500000pt;}
.h16{height:69.660000pt;}
.h13{height:69.789000pt;}
.h1a{height:71.346667pt;}
.h1b{height:71.552000pt;}
.h15{height:71.955000pt;}
.hd{height:73.490625pt;}
.h29{height:74.477812pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h23{height:226.080000pt;}
.h2a{height:227.200000pt;}
.h12{height:236.640000pt;}
.h27{height:270.400000pt;}
.h2c{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:32.466667pt;}
.w5{width:32.500000pt;}
.w32{width:44.820000pt;}
.w27{width:45.620000pt;}
.w2d{width:45.940000pt;}
.w34{width:47.346667pt;}
.w2a{width:47.378667pt;}
.w21{width:48.660000pt;}
.w29{width:53.266667pt;}
.w24{width:54.738667pt;}
.w25{width:54.866667pt;}
.w2b{width:59.346667pt;}
.w23{width:61.106667pt;}
.w3{width:71.386667pt;}
.wb{width:75.506667pt;}
.w7{width:75.712000pt;}
.w8{width:77.920000pt;}
.wc{width:77.946667pt;}
.w26{width:85.786667pt;}
.w2c{width:94.586667pt;}
.w2f{width:96.346667pt;}
.w31{width:100.346667pt;}
.w35{width:106.266667pt;}
.wd{width:107.826667pt;}
.we{width:107.858667pt;}
.wf{width:107.866667pt;}
.w10{width:108.786667pt;}
.w11{width:108.818667pt;}
.w12{width:108.826667pt;}
.w6{width:140.632000pt;}
.wa{width:140.653333pt;}
.w14{width:193.502667pt;}
.w1c{width:194.302667pt;}
.w1d{width:203.386667pt;}
.w17{width:230.302667pt;}
.w18{width:230.426667pt;}
.w19{width:230.453333pt;}
.w15{width:234.586667pt;}
.w16{width:266.933333pt;}
.w1e{width:293.493333pt;}
.w13{width:324.800000pt;}
.w22{width:373.986667pt;}
.w30{width:388.066667pt;}
.w28{width:388.546667pt;}
.w33{width:389.026667pt;}
.w2e{width:389.986667pt;}
.w2{width:641.880000pt;}
.w1a{width:668.000000pt;}
.w20{width:683.200000pt;}
.w1f{width:687.200000pt;}
.w1b{width:688.000000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:6.716000pt;}
.x5{left:7.680000pt;}
.x78{left:8.640000pt;}
.x16{left:9.600000pt;}
.x23{left:12.000000pt;}
.x20{left:13.280000pt;}
.x28{left:14.720000pt;}
.x6b{left:16.786667pt;}
.x6f{left:19.986667pt;}
.x27{left:20.960000pt;}
.x76{left:22.080000pt;}
.x21{left:23.200000pt;}
.x24{left:24.640000pt;}
.x26{left:26.560000pt;}
.x22{left:28.160000pt;}
.x29{left:29.600000pt;}
.x1d{left:31.040000pt;}
.x15{left:34.880000pt;}
.x33{left:35.986667pt;}
.x2f{left:37.106667pt;}
.x1{left:40.324000pt;}
.x31{left:41.466667pt;}
.x17{left:44.480000pt;}
.x1b{left:46.084000pt;}
.x7{left:48.000000pt;}
.x25{left:49.920000pt;}
.x70{left:50.884000pt;}
.x53{left:51.840000pt;}
.x65{left:53.760000pt;}
.x69{left:55.844000pt;}
.x44{left:59.388000pt;}
.x50{left:61.760000pt;}
.x4d{left:64.988000pt;}
.xe{left:66.240000pt;}
.x42{left:67.228000pt;}
.x3f{left:70.268000pt;}
.x18{left:72.000000pt;}
.x60{left:73.468000pt;}
.x37{left:75.386667pt;}
.x5e{left:78.108000pt;}
.x1c{left:79.232000pt;}
.x61{left:81.148000pt;}
.x45{left:84.028000pt;}
.x4b{left:85.146667pt;}
.x5a{left:87.840000pt;}
.x5f{left:92.640000pt;}
.x19{left:96.032000pt;}
.x38{left:97.306667pt;}
.x48{left:98.422667pt;}
.x4f{left:102.422667pt;}
.x3c{left:103.360000pt;}
.x3e{left:105.146667pt;}
.x4e{left:106.080000pt;}
.x43{left:108.160000pt;}
.x4c{left:109.120000pt;}
.x40{left:111.200000pt;}
.x5c{left:114.106667pt;}
.x46{left:119.866667pt;}
.x41{left:122.906667pt;}
.x39{left:126.693333pt;}
.x64{left:127.906667pt;}
.x36{left:130.080000pt;}
.x57{left:133.213333pt;}
.x5d{left:136.186667pt;}
.x51{left:137.506667pt;}
.x62{left:139.226667pt;}
.x54{left:140.666667pt;}
.x68{left:166.106667pt;}
.x35{left:169.093333pt;}
.x2{left:197.662667pt;}
.x10{left:208.186667pt;}
.x1e{left:220.506667pt;}
.x11{left:235.746667pt;}
.xb{left:238.946667pt;}
.x3{left:241.182667pt;}
.x3b{left:242.946667pt;}
.x59{left:245.666667pt;}
.x12{left:250.626667pt;}
.x58{left:256.800000pt;}
.xc{left:263.106667pt;}
.x66{left:267.680000pt;}
.x9{left:271.266667pt;}
.x13{left:279.426667pt;}
.x49{left:281.666667pt;}
.x1f{left:296.866667pt;}
.xf{left:302.626667pt;}
.x8{left:312.546667pt;}
.xa{left:323.906667pt;}
.xd{left:336.706667pt;}
.x55{left:346.586667pt;}
.x6{left:396.893333pt;}
.x2a{left:419.146667pt;}
.x14{left:420.893333pt;}
.x1a{left:444.893333pt;}
.x5b{left:449.706667pt;}
.x2b{left:452.266667pt;}
.x2e{left:468.893333pt;}
.x3d{left:478.186667pt;}
.x6a{left:479.786667pt;}
.x72{left:486.506667pt;}
.x4a{left:512.746667pt;}
.x30{left:529.386667pt;}
.x52{left:536.000000pt;}
.x73{left:540.426667pt;}
.x6c{left:541.546667pt;}
.x56{left:552.506667pt;}
.x67{left:584.866667pt;}
.x74{left:588.453333pt;}
.x2c{left:593.573333pt;}
.x6d{left:596.933333pt;}
.x79{left:636.453333pt;}
.x32{left:638.053333pt;}
.x77{left:642.533333pt;}
.x75{left:648.453333pt;}
.x6e{left:652.453333pt;}
.x2d{left:669.733333pt;}
.x4{left:682.213333pt;}
.x3a{left:732.000000pt;}
.x63{left:740.000000pt;}
.x47{left:741.920000pt;}
.x34{left:746.880000pt;}
}




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