
    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_b16fff2ad99c0a9a4a6cec4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e99c1c3f15b7fc66af3f5f0f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc2eeed2d890ba3b0fe276d1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a0107ea21df690e949e52c05.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8cf11e26dcaa0027e6e5511e.woff2')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_d5b23143c6d990879bc5e539.woff2')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_20edff5a10ab81bb54f11201.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_2829770dfe4bf598fda1235a.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8551ab7eed3a5ba305ca758f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7ceb06970e62f39386bdb6a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v1{vertical-align:-87.840000px;}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls19{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.936000px;}
.lse{letter-spacing:3.780000px;}
.ls13{letter-spacing:8.100000px;}
.ls10{letter-spacing:12.240000px;}
.ls11{letter-spacing:17.460000px;}
.lsd{letter-spacing:20.340000px;}
.ls17{letter-spacing:25.308000px;}
.ls9{letter-spacing:46.908000px;}
.ls8{letter-spacing:52.668000px;}
.lsa{letter-spacing:52.812000px;}
.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;}
}
.ws4{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-14.976000px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.436000px;}
.ws6{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.ws11{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.374000px;}
.ws7{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.186000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2.185920px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._6{width:3.645360px;}
._a{width:5.364960px;}
._9{width:6.454080px;}
._7{width:7.748640px;}
._d{width:8.836080px;}
._e{width:9.936000px;}
._c{width:11.580000px;}
._b{width:13.087440px;}
._f{width:14.958000px;}
._8{width:16.104960px;}
._15{width:17.820000px;}
._14{width:19.332000px;}
._4{width:20.600640px;}
._5{width:21.890160px;}
._18{width:23.461920px;}
._12{width:25.380000px;}
._13{width:26.730000px;}
._17{width:28.620000px;}
._22{width:29.862000px;}
._11{width:31.104000px;}
._10{width:32.400000px;}
._16{width:33.450000px;}
._1c{width:34.614000px;}
._1d{width:35.748000px;}
._49{width:36.768000px;}
._19{width:37.854000px;}
._1a{width:38.880000px;}
._1e{width:39.960000px;}
._47{width:40.986000px;}
._1f{width:42.336000px;}
._24{width:43.974000px;}
._1b{width:45.792000px;}
._2d{width:46.818000px;}
._52{width:48.276000px;}
._48{width:49.345920px;}
._33{width:52.866000px;}
._29{width:54.486000px;}
._51{width:55.590000px;}
._50{width:56.646000px;}
._30{width:58.158000px;}
._2f{width:59.724000px;}
._2e{width:63.936000px;}
._3e{width:66.258000px;}
._4d{width:71.766000px;}
._3d{width:76.194000px;}
._20{width:81.000000px;}
._31{width:82.350000px;}
._35{width:88.182000px;}
._27{width:90.666000px;}
._2b{width:99.306000px;}
._39{width:104.328000px;}
._3a{width:105.786000px;}
._44{width:109.350000px;}
._38{width:110.916000px;}
._37{width:112.344000px;}
._4a{width:113.616000px;}
._45{width:115.074000px;}
._23{width:120.798000px;}
._41{width:125.226000px;}
._40{width:126.468000px;}
._2c{width:134.460000px;}
._3c{width:136.836000px;}
._43{width:140.886000px;}
._42{width:142.506000px;}
._4f{width:146.016000px;}
._34{width:152.064000px;}
._36{width:156.276000px;}
._2a{width:163.674000px;}
._3b{width:166.860000px;}
._28{width:170.424000px;}
._32{width:193.968000px;}
._21{width:202.572000px;}
._25{width:204.054720px;}
._46{width:226.854000px;}
._3f{width:234.846000px;}
._26{width:246.024000px;}
._4c{width:360.396000px;}
._4b{width:361.422000px;}
._4e{width:961.902000px;}
._2{width:1169.580000px;}
.fca{color:rgb(238,0,0);}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(192,0,0);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc9{color:rgb(0,176,80);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs9{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y106{bottom:-15.195000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:2.055000px;}
.y4{bottom:3.060000px;}
.y105{bottom:3.705000px;}
.y1a1{bottom:5.580000px;}
.y10f{bottom:7.455000px;}
.y138{bottom:9.720000px;}
.y198{bottom:10.065000px;}
.y13c{bottom:10.080000px;}
.y1e1{bottom:10.110000px;}
.y1e3{bottom:10.245000px;}
.y167{bottom:10.260000px;}
.y1a9{bottom:10.980000px;}
.y1a6{bottom:11.160000px;}
.y1a7{bottom:11.520000px;}
.y1a3{bottom:15.120000px;}
.y5{bottom:15.660000px;}
.y3{bottom:18.900000px;}
.y10c{bottom:21.315000px;}
.y1a0{bottom:23.400000px;}
.y137{bottom:27.720000px;}
.y197{bottom:27.885000px;}
.y13f{bottom:27.900000px;}
.y13b{bottom:28.080000px;}
.y1d9{bottom:37.620000px;}
.y103{bottom:38.265000px;}
.y6{bottom:39.780000px;}
.y1ed{bottom:43.050000px;}
.y236{bottom:45.705000px;}
.y18a{bottom:45.720000px;}
.y19b{bottom:45.885000px;}
.y13a{bottom:45.900000px;}
.y196{bottom:45.930000px;}
.y1df{bottom:48.225000px;}
.y1e8{bottom:52.725000px;}
.y2{bottom:60.660000px;}
.y235{bottom:63.525000px;}
.y19a{bottom:63.705000px;}
.y188{bottom:63.720000px;}
.y191{bottom:63.750000px;}
.y1eb{bottom:65.370000px;}
.y1e7{bottom:70.545000px;}
.y1de{bottom:70.590000px;}
.y108{bottom:72.645000px;}
.y3e{bottom:72.900000px;}
.y19d{bottom:81.525000px;}
.y21b{bottom:81.540000px;}
.y187{bottom:81.570000px;}
.y3d{bottom:92.730000px;}
.y1e5{bottom:92.865000px;}
.y1dc{bottom:93.090000px;}
.y234{bottom:99.345000px;}
.y21a{bottom:99.405000px;}
.y229{bottom:99.540000px;}
.y190{bottom:99.570000px;}
.y240{bottom:103.320000px;}
.y15b{bottom:103.680000px;}
.y23b{bottom:106.380000px;}
.yb7{bottom:107.100000px;}
.y7b{bottom:108.180000px;}
.y266{bottom:108.360000px;}
.y32{bottom:108.720000px;}
.y19f{bottom:111.060000px;}
.y3c{bottom:112.530000px;}
.yfd{bottom:113.940000px;}
.y1f3{bottom:114.120000px;}
.yde{bottom:116.100000px;}
.y233{bottom:117.165000px;}
.y219{bottom:117.225000px;}
.y228{bottom:117.360000px;}
.y185{bottom:120.780000px;}
.y23f{bottom:121.140000px;}
.y15a{bottom:121.500000px;}
.y1f7{bottom:123.120000px;}
.y23a{bottom:124.200000px;}
.y134{bottom:124.920000px;}
.yb6{bottom:125.100000px;}
.y290{bottom:125.280000px;}
.y7a{bottom:126.000000px;}
.y265{bottom:126.180000px;}
.yfc{bottom:131.760000px;}
.y1f2{bottom:131.940000px;}
.y3b{bottom:132.690000px;}
.ydd{bottom:133.920000px;}
.y33{bottom:134.820000px;}
.y232{bottom:134.985000px;}
.y218{bottom:135.045000px;}
.y227{bottom:135.180000px;}
.y31{bottom:135.540000px;}
.y1f6{bottom:140.940000px;}
.y239{bottom:142.020000px;}
.y1fd{bottom:142.560000px;}
.y133{bottom:142.740000px;}
.yb5{bottom:142.920000px;}
.y28f{bottom:143.100000px;}
.y79{bottom:144.000000px;}
.y23e{bottom:147.960000px;}
.y159{bottom:148.320000px;}
.yfb{bottom:149.580000px;}
.y1f1{bottom:149.760000px;}
.y1f0{bottom:149.940000px;}
.ydc{bottom:151.740000px;}
.y19e{bottom:151.920000px;}
.y231{bottom:152.805000px;}
.y226{bottom:153.000000px;}
.y217{bottom:153.045000px;}
.y40{bottom:158.400000px;}
.y1f5{bottom:158.940000px;}
.y238{bottom:159.840000px;}
.y1fc{bottom:160.380000px;}
.y132{bottom:160.560000px;}
.yb4{bottom:160.740000px;}
.y28e{bottom:161.100000px;}
.y78{bottom:161.820000px;}
.y264{bottom:162.000000px;}
.y30{bottom:162.540000px;}
.y23d{bottom:165.780000px;}
.y158{bottom:166.140000px;}
.yfa{bottom:167.400000px;}
.y1ef{bottom:167.760000px;}
.ydb{bottom:169.560000px;}
.y230{bottom:170.625000px;}
.y225{bottom:170.820000px;}
.y216{bottom:170.865000px;}
.y184{bottom:171.900000px;}
.y38{bottom:172.470000px;}
.y1f4{bottom:176.760000px;}
.y1fb{bottom:178.200000px;}
.y131{bottom:178.380000px;}
.y28d{bottom:178.920000px;}
.y237{bottom:179.100000px;}
.y77{bottom:179.640000px;}
.y263{bottom:179.820000px;}
.y23c{bottom:183.240000px;}
.y157{bottom:183.960000px;}
.yf9{bottom:185.400000px;}
.yda{bottom:187.380000px;}
.yb3{bottom:187.560000px;}
.y3f{bottom:187.920000px;}
.y22f{bottom:188.625000px;}
.y224{bottom:188.640000px;}
.y215{bottom:188.685000px;}
.y2f{bottom:189.360000px;}
.y183{bottom:189.720000px;}
.y37{bottom:192.270000px;}
.y130{bottom:196.200000px;}
.y28c{bottom:196.740000px;}
.y76{bottom:197.460000px;}
.y262{bottom:197.640000px;}
.y156{bottom:201.960000px;}
.yf8{bottom:203.220000px;}
.yd9{bottom:205.200000px;}
.yb2{bottom:205.410000px;}
.y22a{bottom:205.785000px;}
.y22e{bottom:206.445000px;}
.y214{bottom:206.505000px;}
.y223{bottom:206.670000px;}
.y36{bottom:212.070000px;}
.y12f{bottom:214.230000px;}
.y28b{bottom:214.590000px;}
.y75{bottom:215.310000px;}
.y19c{bottom:215.325000px;}
.y261{bottom:215.490000px;}
.y2e{bottom:216.210000px;}
.y1ee{bottom:217.305000px;}
.y155{bottom:219.810000px;}
.yf7{bottom:221.070000px;}
.y20b{bottom:223.050000px;}
.yb1{bottom:223.230000px;}
.y22d{bottom:224.265000px;}
.y213{bottom:224.325000px;}
.y222{bottom:224.490000px;}
.y35{bottom:232.050000px;}
.y28a{bottom:232.410000px;}
.y74{bottom:233.310000px;}
.y154{bottom:237.630000px;}
.y20a{bottom:240.870000px;}
.yd8{bottom:241.050000px;}
.yb0{bottom:241.230000px;}
.y22c{bottom:242.130000px;}
.y212{bottom:242.145000px;}
.y221{bottom:242.310000px;}
.y29{bottom:243.030000px;}
.y182{bottom:243.390000px;}
.y1ec{bottom:245.025000px;}
.yf6{bottom:247.890000px;}
.y12e{bottom:249.510000px;}
.y289{bottom:250.230000px;}
.y73{bottom:251.130000px;}
.y260{bottom:251.310000px;}
.y2d{bottom:251.850000px;}
.y153{bottom:255.450000px;}
.yd7{bottom:258.510000px;}
.yaf{bottom:258.690000px;}
.y1fa{bottom:258.870000px;}
.y22b{bottom:259.950000px;}
.y220{bottom:260.130000px;}
.y211{bottom:260.145000px;}
.y181{bottom:261.210000px;}
.yf5{bottom:265.710000px;}
.y3a{bottom:267.510000px;}
.y288{bottom:268.230000px;}
.y72{bottom:268.950000px;}
.y25f{bottom:269.130000px;}
.y28{bottom:269.850000px;}
.y1e4{bottom:272.565000px;}
.y209{bottom:276.510000px;}
.y12d{bottom:276.690000px;}
.y21f{bottom:277.950000px;}
.y210{bottom:277.965000px;}
.y2c{bottom:278.670000px;}
.y180{bottom:279.210000px;}
.y34{bottom:282.090000px;}
.y152{bottom:282.270000px;}
.yf4{bottom:283.530000px;}
.yd6{bottom:285.690000px;}
.yae{bottom:285.870000px;}
.y287{bottom:286.050000px;}
.y71{bottom:286.770000px;}
.y25e{bottom:286.950000px;}
.y39{bottom:287.490000px;}
.y12c{bottom:294.510000px;}
.y20f{bottom:295.785000px;}
.y21e{bottom:295.950000px;}
.y27{bottom:296.670000px;}
.y17f{bottom:297.030000px;}
.y151{bottom:300.090000px;}
.y1ea{bottom:300.105000px;}
.yf3{bottom:301.530000px;}
.yd5{bottom:303.510000px;}
.yad{bottom:303.690000px;}
.y286{bottom:303.870000px;}
.y70{bottom:304.590000px;}
.y25d{bottom:304.770000px;}
.y2b{bottom:305.670000px;}
.y208{bottom:312.330000px;}
.y12b{bottom:312.510000px;}
.y20e{bottom:313.605000px;}
.y21d{bottom:313.770000px;}
.y199{bottom:314.325000px;}
.y17e{bottom:314.850000px;}
.y150{bottom:318.090000px;}
.yf2{bottom:319.350000px;}
.yac{bottom:321.510000px;}
.y285{bottom:321.690000px;}
.y6f{bottom:322.410000px;}
.y25c{bottom:322.590000px;}
.y26{bottom:324.030000px;}
.y1e9{bottom:327.825000px;}
.y207{bottom:330.150000px;}
.y12a{bottom:330.330000px;}
.y2a{bottom:332.490000px;}
.y17d{bottom:332.670000px;}
.y14f{bottom:335.910000px;}
.yf1{bottom:337.170000px;}
.yd4{bottom:339.330000px;}
.yab{bottom:339.510000px;}
.y6e{bottom:340.410000px;}
.y25{bottom:341.850000px;}
.y206{bottom:347.970000px;}
.y129{bottom:348.150000px;}
.y17c{bottom:350.490000px;}
.y14e{bottom:353.730000px;}
.y1e6{bottom:355.365000px;}
.yd3{bottom:357.150000px;}
.yaa{bottom:357.330000px;}
.y284{bottom:357.510000px;}
.y25b{bottom:358.410000px;}
.y24{bottom:359.310000px;}
.yf0{bottom:363.990000px;}
.y128{bottom:365.970000px;}
.y6d{bottom:367.230000px;}
.y17b{bottom:368.490000px;}
.y14d{bottom:371.550000px;}
.y205{bottom:374.790000px;}
.yd2{bottom:374.970000px;}
.ya9{bottom:375.150000px;}
.y283{bottom:375.330000px;}
.y25a{bottom:376.230000px;}
.yef{bottom:381.810000px;}
.y1db{bottom:382.905000px;}
.y127{bottom:383.790000px;}
.y6c{bottom:385.050000px;}
.y17a{bottom:386.310000px;}
.y14c{bottom:389.370000px;}
.y204{bottom:392.610000px;}
.yd1{bottom:392.790000px;}
.ya8{bottom:392.970000px;}
.y282{bottom:393.150000px;}
.y259{bottom:394.050000px;}
.y23{bottom:394.950000px;}
.y195{bottom:395.505000px;}
.yee{bottom:399.810000px;}
.y126{bottom:401.610000px;}
.y6b{bottom:402.870000px;}
.y179{bottom:404.130000px;}
.yd0{bottom:410.610000px;}
.y1e2{bottom:410.625000px;}
.ya7{bottom:410.790000px;}
.y281{bottom:410.970000px;}
.y258{bottom:411.870000px;}
.y22{bottom:412.950000px;}
.y14b{bottom:416.190000px;}
.yed{bottom:417.630000px;}
.y6a{bottom:420.690000px;}
.y178{bottom:421.950000px;}
.y203{bottom:428.430000px;}
.ya6{bottom:428.610000px;}
.y280{bottom:428.790000px;}
.y257{bottom:429.690000px;}
.y21{bottom:432.570000px;}
.y14a{bottom:434.190000px;}
.yec{bottom:435.450000px;}
.y1e0{bottom:438.165000px;}
.y69{bottom:438.690000px;}
.y177{bottom:439.770000px;}
.y202{bottom:446.295000px;}
.y125{bottom:446.475000px;}
.ya5{bottom:446.655000px;}
.y256{bottom:447.735000px;}
.y149{bottom:452.055000px;}
.yeb{bottom:453.315000px;}
.ycf{bottom:455.475000px;}
.y20{bottom:456.375000px;}
.y68{bottom:456.555000px;}
.y176{bottom:457.635000px;}
.y194{bottom:458.895000px;}
.y248{bottom:463.935000px;}
.y201{bottom:464.115000px;}
.y124{bottom:464.295000px;}
.y27f{bottom:464.655000px;}
.y255{bottom:465.555000px;}
.y1dd{bottom:465.735000px;}
.y148{bottom:469.875000px;}
.yea{bottom:470.775000px;}
.yce{bottom:473.295000px;}
.ya4{bottom:473.475000px;}
.y67{bottom:474.375000px;}
.y175{bottom:475.635000px;}
.y1f{bottom:479.955000px;}
.y200{bottom:481.935000px;}
.y123{bottom:482.115000px;}
.y27e{bottom:482.475000px;}
.y21c{bottom:483.195000px;}
.y254{bottom:483.375000px;}
.y147{bottom:487.335000px;}
.ycd{bottom:491.115000px;}
.ya3{bottom:491.295000px;}
.y66{bottom:492.195000px;}
.y174{bottom:493.455000px;}
.ye9{bottom:497.955000px;}
.y122{bottom:499.935000px;}
.y27d{bottom:500.295000px;}
.y253{bottom:501.195000px;}
.y1e{bottom:501.735000px;}
.ycc{bottom:508.935000px;}
.ya2{bottom:509.115000px;}
.y65{bottom:510.015000px;}
.y173{bottom:511.275000px;}
.y146{bottom:514.515000px;}
.ye8{bottom:515.955000px;}
.y121{bottom:517.935000px;}
.y27c{bottom:518.115000px;}
.y252{bottom:519.015000px;}
.y1da{bottom:520.995000px;}
.y193{bottom:522.075000px;}
.y1ff{bottom:526.755000px;}
.ya1{bottom:526.935000px;}
.y1d{bottom:528.195000px;}
.y172{bottom:529.095000px;}
.y145{bottom:532.515000px;}
.ye7{bottom:533.775000px;}
.y120{bottom:535.755000px;}
.y27b{bottom:535.935000px;}
.y64{bottom:536.835000px;}
.ycb{bottom:544.755000px;}
.ya0{bottom:544.935000px;}
.y171{bottom:546.915000px;}
.y1d8{bottom:548.715000px;}
.y144{bottom:550.335000px;}
.ye6{bottom:551.595000px;}
.y1fe{bottom:553.215000px;}
.y11f{bottom:553.575000px;}
.y27a{bottom:553.935000px;}
.y63{bottom:554.835000px;}
.y1c{bottom:558.975000px;}
.yca{bottom:562.575000px;}
.y9f{bottom:562.755000px;}
.y170{bottom:564.915000px;}
.y192{bottom:567.615000px;}
.y143{bottom:568.155000px;}
.ye5{bottom:571.395000px;}
.y279{bottom:571.755000px;}
.y62{bottom:572.655000px;}
.yc9{bottom:580.395000px;}
.y9e{bottom:580.575000px;}
.y1d7{bottom:581.835000px;}
.y16f{bottom:582.375000px;}
.y142{bottom:587.955000px;}
.y278{bottom:589.575000px;}
.y61{bottom:590.475000px;}
.y11e{bottom:598.215000px;}
.y9d{bottom:598.395000px;}
.y16e{bottom:600.195000px;}
.ye4{bottom:601.095000px;}
.y10e{bottom:606.960000px;}
.yc8{bottom:607.215000px;}
.y277{bottom:607.395000px;}
.y1b{bottom:607.755000px;}
.y60{bottom:608.295000px;}
.y18f{bottom:612.975000px;}
.y11d{bottom:616.035000px;}
.y9c{bottom:616.215000px;}
.y16d{bottom:622.515000px;}
.y141{bottom:623.415000px;}
.yc7{bottom:625.035000px;}
.y276{bottom:625.215000px;}
.y5f{bottom:626.115000px;}
.y9b{bottom:634.035000px;}
.y1be{bottom:635.475000px;}
.y1a{bottom:637.095000px;}
.y107{bottom:640.980000px;}
.yc6{bottom:643.035000px;}
.y5e{bottom:644.115000px;}
.y16c{bottom:650.055000px;}
.y11c{bottom:651.855000px;}
.y9a{bottom:652.035000px;}
.y1bd{bottom:653.475000px;}
.y19{bottom:660.495000px;}
.y1d6{bottom:660.675000px;}
.yc5{bottom:660.855000px;}
.y275{bottom:661.035000px;}
.y5d{bottom:661.935000px;}
.y10b{bottom:662.295000px;}
.y11b{bottom:669.675000px;}
.y99{bottom:669.855000px;}
.y1bc{bottom:671.295000px;}
.y16b{bottom:677.805000px;}
.y1d5{bottom:678.525000px;}
.yc4{bottom:678.705000px;}
.y274{bottom:678.885000px;}
.y10a{bottom:679.575000px;}
.y5c{bottom:679.785000px;}
.y11a{bottom:687.525000px;}
.y98{bottom:687.705000px;}
.y1bb{bottom:689.145000px;}
.y18{bottom:689.865000px;}
.y1d4{bottom:696.345000px;}
.yc3{bottom:696.525000px;}
.y109{bottom:696.705000px;}
.y5b{bottom:697.605000px;}
.y140{bottom:701.745000px;}
.y119{bottom:705.345000px;}
.y97{bottom:705.525000px;}
.y1ba{bottom:706.965000px;}
.y1d3{bottom:714.165000px;}
.yc2{bottom:714.345000px;}
.y273{bottom:714.525000px;}
.y5a{bottom:715.425000px;}
.y118{bottom:723.165000px;}
.y96{bottom:723.345000px;}
.y1b9{bottom:724.785000px;}
.y17{bottom:726.225000px;}
.y18e{bottom:730.005000px;}
.yc1{bottom:732.165000px;}
.y272{bottom:732.345000px;}
.y16a{bottom:732.885000px;}
.y59{bottom:733.245000px;}
.y95{bottom:741.165000px;}
.y1b8{bottom:742.605000px;}
.y1d2{bottom:749.985000px;}
.yc0{bottom:750.165000px;}
.y58{bottom:751.245000px;}
.y117{bottom:758.985000px;}
.y94{bottom:759.165000px;}
.y169{bottom:760.605000px;}
.yfe{bottom:765.285000px;}
.y1d1{bottom:767.805000px;}
.ybf{bottom:767.985000px;}
.y271{bottom:768.165000px;}
.y57{bottom:769.065000px;}
.y16{bottom:776.805000px;}
.y93{bottom:776.985000px;}
.y1b7{bottom:778.425000px;}
.y13e{bottom:780.045000px;}
.y1d0{bottom:785.625000px;}
.ybe{bottom:785.805000px;}
.y270{bottom:785.985000px;}
.y56{bottom:786.885000px;}
.y168{bottom:788.145000px;}
.y18d{bottom:793.185000px;}
.y116{bottom:794.625000px;}
.y92{bottom:794.805000px;}
.y1b6{bottom:796.245000px;}
.y1cf{bottom:803.445000px;}
.ybd{bottom:803.625000px;}
.y26f{bottom:803.805000px;}
.y15{bottom:804.705000px;}
.y115{bottom:812.445000px;}
.y91{bottom:812.625000px;}
.y20d{bottom:814.425000px;}
.y166{bottom:815.685000px;}
.ybc{bottom:821.445000px;}
.y26e{bottom:821.625000px;}
.y55{bottom:822.525000px;}
.y1b5{bottom:823.065000px;}
.y90{bottom:830.445000px;}
.y1ce{bottom:839.265000px;}
.ybb{bottom:839.445000px;}
.y54{bottom:840.345000px;}
.y1b4{bottom:840.885000px;}
.y165{bottom:843.405000px;}
.y101{bottom:845.925000px;}
.y114{bottom:848.265000px;}
.y8f{bottom:848.445000px;}
.y102{bottom:850.140000px;}
.y14{bottom:855.285000px;}
.y18c{bottom:856.545000px;}
.y1cd{bottom:857.085000px;}
.y247{bottom:857.265000px;}
.y26d{bottom:857.445000px;}
.y53{bottom:858.345000px;}
.y1b3{bottom:858.885000px;}
.y100{bottom:865.005000px;}
.y8e{bottom:866.265000px;}
.y164{bottom:870.945000px;}
.y104{bottom:871.125000px;}
.y113{bottom:874.725000px;}
.y1cc{bottom:874.905000px;}
.y246{bottom:875.085000px;}
.y26c{bottom:875.265000px;}
.y52{bottom:876.165000px;}
.y1b2{bottom:876.705000px;}
.y13{bottom:878.145000px;}
.yff{bottom:882.285000px;}
.y8d{bottom:884.085000px;}
.y245{bottom:892.905000px;}
.y26b{bottom:893.085000px;}
.y51{bottom:893.985000px;}
.y1b1{bottom:894.525000px;}
.y163{bottom:898.665000px;}
.y12{bottom:899.745000px;}
.y1cb{bottom:901.725000px;}
.y8c{bottom:901.905000px;}
.y244{bottom:910.770000px;}
.y26a{bottom:910.950000px;}
.y251{bottom:911.850000px;}
.y1b0{bottom:912.390000px;}
.y1ca{bottom:919.590000px;}
.y8b{bottom:919.770000px;}
.y18b{bottom:919.950000px;}
.y50{bottom:920.850000px;}
.y11{bottom:921.930000px;}
.y162{bottom:926.250000px;}
.y243{bottom:928.590000px;}
.y269{bottom:928.770000px;}
.y250{bottom:929.670000px;}
.y1af{bottom:930.210000px;}
.y13d{bottom:936.690000px;}
.y8a{bottom:937.590000px;}
.y4f{bottom:938.670000px;}
.y10{bottom:944.790000px;}
.y242{bottom:946.590000px;}
.y24f{bottom:947.670000px;}
.y1ae{bottom:948.030000px;}
.y161{bottom:953.790000px;}
.ye3{bottom:955.050000px;}
.y1c9{bottom:955.410000px;}
.y89{bottom:955.590000px;}
.y4e{bottom:956.670000px;}
.y241{bottom:964.410000px;}
.y268{bottom:964.590000px;}
.y24e{bottom:965.490000px;}
.y1ad{bottom:966.030000px;}
.yf{bottom:966.930000px;}
.y1c8{bottom:973.230000px;}
.y88{bottom:973.410000px;}
.y4d{bottom:974.490000px;}
.y160{bottom:981.510000px;}
.ye2{bottom:982.230000px;}
.y267{bottom:982.410000px;}
.y24d{bottom:983.310000px;}
.y1ac{bottom:983.850000px;}
.y1c7{bottom:991.050000px;}
.y87{bottom:991.230000px;}
.y4c{bottom:992.310000px;}
.y1f9{bottom:1000.230000px;}
.y189{bottom:1001.130000px;}
.y1ab{bottom:1001.670000px;}
.ye1{bottom:1008.690000px;}
.y1c6{bottom:1008.870000px;}
.y86{bottom:1009.050000px;}
.y4b{bottom:1010.130000px;}
.ye{bottom:1011.570000px;}
.y139{bottom:1014.990000px;}
.y1f8{bottom:1018.050000px;}
.y24c{bottom:1018.950000px;}
.y1aa{bottom:1019.490000px;}
.yd{bottom:1023.630000px;}
.y85{bottom:1026.870000px;}
.y4a{bottom:1027.950000px;}
.yc{bottom:1035.690000px;}
.ye0{bottom:1035.870000px;}
.y15f{bottom:1036.590000px;}
.y24b{bottom:1036.770000px;}
.y1a8{bottom:1041.450000px;}
.yba{bottom:1044.510000px;}
.y1c5{bottom:1044.690000px;}
.y84{bottom:1044.870000px;}
.y49{bottom:1045.770000px;}
.yb{bottom:1047.750000px;}
.ydf{bottom:1053.870000px;}
.y24a{bottom:1054.770000px;}
.ya{bottom:1061.970000px;}
.y1c4{bottom:1062.330000px;}
.y1c3{bottom:1062.510000px;}
.y83{bottom:1062.690000px;}
.y48{bottom:1063.770000px;}
.y15e{bottom:1064.310000px;}
.y1a5{bottom:1070.610000px;}
.yb9{bottom:1071.690000px;}
.y249{bottom:1074.570000px;}
.y82{bottom:1080.510000px;}
.y47{bottom:1081.590000px;}
.y9{bottom:1087.170000px;}
.y1c2{bottom:1089.330000px;}
.yb8{bottom:1089.510000px;}
.y15d{bottom:1091.850000px;}
.y136{bottom:1093.290000px;}
.y112{bottom:1098.330000px;}
.y46{bottom:1099.410000px;}
.y1a4{bottom:1099.590000px;}
.y1c1{bottom:1107.150000px;}
.y81{bottom:1107.330000px;}
.y111{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y45{bottom:1117.230000px;}
.y15c{bottom:1124.970000px;}
.y80{bottom:1125.150000px;}
.y110{bottom:1133.610000px;}
.y44{bottom:1135.050000px;}
.y7f{bottom:1142.970000px;}
.y20c{bottom:1145.520000px;}
.y135{bottom:1151.640000px;}
.y43{bottom:1153.080000px;}
.y7e{bottom:1161.000000px;}
.y186{bottom:1163.340000px;}
.y7{bottom:1165.860000px;}
.y1c0{bottom:1169.460000px;}
.y42{bottom:1170.540000px;}
.y7d{bottom:1178.820000px;}
.y1a2{bottom:1180.800000px;}
.y41{bottom:1190.700000px;}
.y1bf{bottom:1196.280000px;}
.y7c{bottom:1196.640000px;}
.y1{bottom:1215.000000px;}
.h1a{height:22.680000px;}
.h23{height:26.805000px;}
.h1f{height:26.820000px;}
.h39{height:26.841000px;}
.h20{height:26.856000px;}
.h38{height:26.985000px;}
.h21{height:27.000000px;}
.h22{height:27.030000px;}
.h30{height:27.360000px;}
.h32{height:28.260000px;}
.h3{height:31.135500px;}
.h14{height:39.049805px;}
.h35{height:39.769805px;}
.h2f{height:40.135500px;}
.h8{height:40.985156px;}
.h29{height:44.625000px;}
.h24{height:44.635500px;}
.h2a{height:44.805000px;}
.h1b{height:44.820000px;}
.h17{height:52.200000px;}
.h16{height:52.971680px;}
.h4{height:52.998047px;}
.h13{height:53.087935px;}
.h34{height:53.709961px;}
.h36{height:54.345000px;}
.hf{height:54.421875px;}
.h33{height:55.291992px;}
.h15{height:55.503491px;}
.h12{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h2b{height:62.445000px;}
.h26{height:62.460000px;}
.h1c{height:62.640000px;}
.h2c{height:62.661000px;}
.h1e{height:62.670000px;}
.h1d{height:62.676000px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.h19{height:66.027445px;}
.hd{height:66.757500px;}
.he{height:72.562500px;}
.h11{height:78.367500px;}
.h2d{height:80.445000px;}
.h27{height:80.460000px;}
.h31{height:80.482500px;}
.h3b{height:82.116000px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h18{height:86.580000px;}
.h2e{height:98.265000px;}
.h25{height:98.302500px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h3a{height:109.605000px;}
.h37{height:109.821000px;}
.h28{height:116.310000px;}
.h3e{height:276.675000px;}
.h10{height:309.420000px;}
.h3c{height:330.330000px;}
.h3d{height:330.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:46.425000px;}
.w10{width:46.440000px;}
.wf{width:46.476000px;}
.w13{width:46.605000px;}
.w11{width:80.280000px;}
.w3{width:80.310000px;}
.w8{width:80.445000px;}
.w9{width:81.741000px;}
.w5{width:84.780000px;}
.w17{width:91.656000px;}
.w1e{width:92.325000px;}
.wd{width:104.940000px;}
.wc{width:105.156000px;}
.w19{width:107.301000px;}
.w18{width:109.065000px;}
.w1d{width:113.076000px;}
.w1f{width:129.441000px;}
.w20{width:133.950000px;}
.w7{width:140.940000px;}
.w6{width:141.480000px;}
.w1c{width:141.696000px;}
.w15{width:144.022500px;}
.w16{width:153.210000px;}
.w1b{width:158.785500px;}
.wb{width:160.045500px;}
.w1a{width:179.130000px;}
.w12{width:196.215000px;}
.we{width:196.405500px;}
.wa{width:212.790000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.185000px;}
.x6{left:8.640000px;}
.x16{left:10.800000px;}
.x25{left:12.570000px;}
.x43{left:14.400000px;}
.x2c{left:15.585000px;}
.x45{left:21.600000px;}
.x34{left:22.860000px;}
.x32{left:23.940000px;}
.x27{left:28.050000px;}
.x54{left:33.285000px;}
.x57{left:35.640000px;}
.x15{left:39.240000px;}
.x37{left:40.680000px;}
.x28{left:42.630000px;}
.x3e{left:43.920000px;}
.x2{left:45.364500px;}
.x40{left:48.960000px;}
.x17{left:50.040000px;}
.x35{left:52.425000px;}
.x1{left:54.000000px;}
.xd{left:57.600000px;}
.x5f{left:60.124500px;}
.x30{left:61.591500px;}
.x56{left:65.520000px;}
.x2b{left:70.845000px;}
.x12{left:72.000000px;}
.x1e{left:75.240000px;}
.x10{left:78.120000px;}
.x3f{left:79.591500px;}
.x3d{left:81.751500px;}
.x3a{left:85.171500px;}
.x3c{left:87.871500px;}
.x4a{left:96.871500px;}
.x4b{left:98.311500px;}
.x1f{left:102.276000px;}
.x1d{left:107.136000px;}
.x3b{left:109.465500px;}
.x36{left:111.805500px;}
.x39{left:115.585500px;}
.x5a{left:118.260000px;}
.x38{left:124.585500px;}
.x2a{left:126.285000px;}
.x5e{left:165.960000px;}
.x4f{left:190.830000px;}
.x50{left:197.310000px;}
.x31{left:211.710000px;}
.x60{left:219.630000px;}
.x3{left:222.370500px;}
.xf{left:225.030000px;}
.x58{left:243.900000px;}
.x41{left:247.890000px;}
.xa{left:268.815000px;}
.x4{left:271.330500px;}
.xb{left:287.175000px;}
.x42{left:295.275000px;}
.x8{left:305.175000px;}
.x13{left:314.355000px;}
.x33{left:317.595000px;}
.x44{left:342.435000px;}
.xe{left:347.115000px;}
.x5d{left:349.095000px;}
.x51{left:351.255000px;}
.x61{left:362.055000px;}
.x9{left:364.395000px;}
.x5b{left:366.480000px;}
.x5c{left:368.715000px;}
.xc{left:378.795000px;}
.x59{left:405.360000px;}
.x11{left:413.535000px;}
.x4e{left:424.875000px;}
.x52{left:443.640000px;}
.x7{left:446.505000px;}
.x2d{left:468.120000px;}
.x46{left:470.460000px;}
.x14{left:473.505000px;}
.x29{left:474.660000px;}
.x62{left:475.860000px;}
.x21{left:484.845000px;}
.x1a{left:494.745000px;}
.x65{left:500.505000px;}
.x22{left:505.365000px;}
.x1b{left:521.745000px;}
.x1c{left:526.605000px;}
.x23{left:548.565000px;}
.x53{left:553.440000px;}
.x63{left:568.920000px;}
.x4d{left:589.605000px;}
.x2f{left:631.770000px;}
.x55{left:661.470000px;}
.x47{left:667.410000px;}
.x19{left:696.390000px;}
.x64{left:699.090000px;}
.x24{left:709.920000px;}
.x48{left:714.750000px;}
.x18{left:727.530000px;}
.x26{left:731.310000px;}
.x4c{left:758.445000px;}
.x49{left:761.910000px;}
.x5{left:767.490000px;}
.x20{left:840.240000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.832000pt;}
.lse{letter-spacing:3.360000pt;}
.ls13{letter-spacing:7.200000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls11{letter-spacing:15.520000pt;}
.lsd{letter-spacing:18.080000pt;}
.ls17{letter-spacing:22.496000pt;}
.ls9{letter-spacing:41.696000pt;}
.ls8{letter-spacing:46.816000pt;}
.lsa{letter-spacing:46.944000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.312000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.832000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.888000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.680000pt;}
.wsa{word-spacing:-10.832000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-1.943040pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._6{width:3.240320pt;}
._a{width:4.768853pt;}
._9{width:5.736960pt;}
._7{width:6.887680pt;}
._d{width:7.854293pt;}
._e{width:8.832000pt;}
._c{width:10.293333pt;}
._b{width:11.633280pt;}
._f{width:13.296000pt;}
._8{width:14.315520pt;}
._15{width:15.840000pt;}
._14{width:17.184000pt;}
._4{width:18.311680pt;}
._5{width:19.457920pt;}
._18{width:20.855040pt;}
._12{width:22.560000pt;}
._13{width:23.760000pt;}
._17{width:25.440000pt;}
._22{width:26.544000pt;}
._11{width:27.648000pt;}
._10{width:28.800000pt;}
._16{width:29.733333pt;}
._1c{width:30.768000pt;}
._1d{width:31.776000pt;}
._49{width:32.682667pt;}
._19{width:33.648000pt;}
._1a{width:34.560000pt;}
._1e{width:35.520000pt;}
._47{width:36.432000pt;}
._1f{width:37.632000pt;}
._24{width:39.088000pt;}
._1b{width:40.704000pt;}
._2d{width:41.616000pt;}
._52{width:42.912000pt;}
._48{width:43.863040pt;}
._33{width:46.992000pt;}
._29{width:48.432000pt;}
._51{width:49.413333pt;}
._50{width:50.352000pt;}
._30{width:51.696000pt;}
._2f{width:53.088000pt;}
._2e{width:56.832000pt;}
._3e{width:58.896000pt;}
._4d{width:63.792000pt;}
._3d{width:67.728000pt;}
._20{width:72.000000pt;}
._31{width:73.200000pt;}
._35{width:78.384000pt;}
._27{width:80.592000pt;}
._2b{width:88.272000pt;}
._39{width:92.736000pt;}
._3a{width:94.032000pt;}
._44{width:97.200000pt;}
._38{width:98.592000pt;}
._37{width:99.861333pt;}
._4a{width:100.992000pt;}
._45{width:102.288000pt;}
._23{width:107.376000pt;}
._41{width:111.312000pt;}
._40{width:112.416000pt;}
._2c{width:119.520000pt;}
._3c{width:121.632000pt;}
._43{width:125.232000pt;}
._42{width:126.672000pt;}
._4f{width:129.792000pt;}
._34{width:135.168000pt;}
._36{width:138.912000pt;}
._2a{width:145.488000pt;}
._3b{width:148.320000pt;}
._28{width:151.488000pt;}
._32{width:172.416000pt;}
._21{width:180.064000pt;}
._25{width:181.381973pt;}
._46{width:201.648000pt;}
._3f{width:208.752000pt;}
._26{width:218.688000pt;}
._4c{width:320.352000pt;}
._4b{width:321.264000pt;}
._4e{width:855.024000pt;}
._2{width:1039.626667pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs9{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y106{bottom:-13.506667pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:1.826667pt;}
.y4{bottom:2.720000pt;}
.y105{bottom:3.293333pt;}
.y1a1{bottom:4.960000pt;}
.y10f{bottom:6.626667pt;}
.y138{bottom:8.640000pt;}
.y198{bottom:8.946667pt;}
.y13c{bottom:8.960000pt;}
.y1e1{bottom:8.986667pt;}
.y1e3{bottom:9.106667pt;}
.y167{bottom:9.120000pt;}
.y1a9{bottom:9.760000pt;}
.y1a6{bottom:9.920000pt;}
.y1a7{bottom:10.240000pt;}
.y1a3{bottom:13.440000pt;}
.y5{bottom:13.920000pt;}
.y3{bottom:16.800000pt;}
.y10c{bottom:18.946667pt;}
.y1a0{bottom:20.800000pt;}
.y137{bottom:24.640000pt;}
.y197{bottom:24.786667pt;}
.y13f{bottom:24.800000pt;}
.y13b{bottom:24.960000pt;}
.y1d9{bottom:33.440000pt;}
.y103{bottom:34.013333pt;}
.y6{bottom:35.360000pt;}
.y1ed{bottom:38.266667pt;}
.y236{bottom:40.626667pt;}
.y18a{bottom:40.640000pt;}
.y19b{bottom:40.786667pt;}
.y13a{bottom:40.800000pt;}
.y196{bottom:40.826667pt;}
.y1df{bottom:42.866667pt;}
.y1e8{bottom:46.866667pt;}
.y2{bottom:53.920000pt;}
.y235{bottom:56.466667pt;}
.y19a{bottom:56.626667pt;}
.y188{bottom:56.640000pt;}
.y191{bottom:56.666667pt;}
.y1eb{bottom:58.106667pt;}
.y1e7{bottom:62.706667pt;}
.y1de{bottom:62.746667pt;}
.y108{bottom:64.573333pt;}
.y3e{bottom:64.800000pt;}
.y19d{bottom:72.466667pt;}
.y21b{bottom:72.480000pt;}
.y187{bottom:72.506667pt;}
.y3d{bottom:82.426667pt;}
.y1e5{bottom:82.546667pt;}
.y1dc{bottom:82.746667pt;}
.y234{bottom:88.306667pt;}
.y21a{bottom:88.360000pt;}
.y229{bottom:88.480000pt;}
.y190{bottom:88.506667pt;}
.y240{bottom:91.840000pt;}
.y15b{bottom:92.160000pt;}
.y23b{bottom:94.560000pt;}
.yb7{bottom:95.200000pt;}
.y7b{bottom:96.160000pt;}
.y266{bottom:96.320000pt;}
.y32{bottom:96.640000pt;}
.y19f{bottom:98.720000pt;}
.y3c{bottom:100.026667pt;}
.yfd{bottom:101.280000pt;}
.y1f3{bottom:101.440000pt;}
.yde{bottom:103.200000pt;}
.y233{bottom:104.146667pt;}
.y219{bottom:104.200000pt;}
.y228{bottom:104.320000pt;}
.y185{bottom:107.360000pt;}
.y23f{bottom:107.680000pt;}
.y15a{bottom:108.000000pt;}
.y1f7{bottom:109.440000pt;}
.y23a{bottom:110.400000pt;}
.y134{bottom:111.040000pt;}
.yb6{bottom:111.200000pt;}
.y290{bottom:111.360000pt;}
.y7a{bottom:112.000000pt;}
.y265{bottom:112.160000pt;}
.yfc{bottom:117.120000pt;}
.y1f2{bottom:117.280000pt;}
.y3b{bottom:117.946667pt;}
.ydd{bottom:119.040000pt;}
.y33{bottom:119.840000pt;}
.y232{bottom:119.986667pt;}
.y218{bottom:120.040000pt;}
.y227{bottom:120.160000pt;}
.y31{bottom:120.480000pt;}
.y1f6{bottom:125.280000pt;}
.y239{bottom:126.240000pt;}
.y1fd{bottom:126.720000pt;}
.y133{bottom:126.880000pt;}
.yb5{bottom:127.040000pt;}
.y28f{bottom:127.200000pt;}
.y79{bottom:128.000000pt;}
.y23e{bottom:131.520000pt;}
.y159{bottom:131.840000pt;}
.yfb{bottom:132.960000pt;}
.y1f1{bottom:133.120000pt;}
.y1f0{bottom:133.280000pt;}
.ydc{bottom:134.880000pt;}
.y19e{bottom:135.040000pt;}
.y231{bottom:135.826667pt;}
.y226{bottom:136.000000pt;}
.y217{bottom:136.040000pt;}
.y40{bottom:140.800000pt;}
.y1f5{bottom:141.280000pt;}
.y238{bottom:142.080000pt;}
.y1fc{bottom:142.560000pt;}
.y132{bottom:142.720000pt;}
.yb4{bottom:142.880000pt;}
.y28e{bottom:143.200000pt;}
.y78{bottom:143.840000pt;}
.y264{bottom:144.000000pt;}
.y30{bottom:144.480000pt;}
.y23d{bottom:147.360000pt;}
.y158{bottom:147.680000pt;}
.yfa{bottom:148.800000pt;}
.y1ef{bottom:149.120000pt;}
.ydb{bottom:150.720000pt;}
.y230{bottom:151.666667pt;}
.y225{bottom:151.840000pt;}
.y216{bottom:151.880000pt;}
.y184{bottom:152.800000pt;}
.y38{bottom:153.306667pt;}
.y1f4{bottom:157.120000pt;}
.y1fb{bottom:158.400000pt;}
.y131{bottom:158.560000pt;}
.y28d{bottom:159.040000pt;}
.y237{bottom:159.200000pt;}
.y77{bottom:159.680000pt;}
.y263{bottom:159.840000pt;}
.y23c{bottom:162.880000pt;}
.y157{bottom:163.520000pt;}
.yf9{bottom:164.800000pt;}
.yda{bottom:166.560000pt;}
.yb3{bottom:166.720000pt;}
.y3f{bottom:167.040000pt;}
.y22f{bottom:167.666667pt;}
.y224{bottom:167.680000pt;}
.y215{bottom:167.720000pt;}
.y2f{bottom:168.320000pt;}
.y183{bottom:168.640000pt;}
.y37{bottom:170.906667pt;}
.y130{bottom:174.400000pt;}
.y28c{bottom:174.880000pt;}
.y76{bottom:175.520000pt;}
.y262{bottom:175.680000pt;}
.y156{bottom:179.520000pt;}
.yf8{bottom:180.640000pt;}
.yd9{bottom:182.400000pt;}
.yb2{bottom:182.586667pt;}
.y22a{bottom:182.920000pt;}
.y22e{bottom:183.506667pt;}
.y214{bottom:183.560000pt;}
.y223{bottom:183.706667pt;}
.y36{bottom:188.506667pt;}
.y12f{bottom:190.426667pt;}
.y28b{bottom:190.746667pt;}
.y75{bottom:191.386667pt;}
.y19c{bottom:191.400000pt;}
.y261{bottom:191.546667pt;}
.y2e{bottom:192.186667pt;}
.y1ee{bottom:193.160000pt;}
.y155{bottom:195.386667pt;}
.yf7{bottom:196.506667pt;}
.y20b{bottom:198.266667pt;}
.yb1{bottom:198.426667pt;}
.y22d{bottom:199.346667pt;}
.y213{bottom:199.400000pt;}
.y222{bottom:199.546667pt;}
.y35{bottom:206.266667pt;}
.y28a{bottom:206.586667pt;}
.y74{bottom:207.386667pt;}
.y154{bottom:211.226667pt;}
.y20a{bottom:214.106667pt;}
.yd8{bottom:214.266667pt;}
.yb0{bottom:214.426667pt;}
.y22c{bottom:215.226667pt;}
.y212{bottom:215.240000pt;}
.y221{bottom:215.386667pt;}
.y29{bottom:216.026667pt;}
.y182{bottom:216.346667pt;}
.y1ec{bottom:217.800000pt;}
.yf6{bottom:220.346667pt;}
.y12e{bottom:221.786667pt;}
.y289{bottom:222.426667pt;}
.y73{bottom:223.226667pt;}
.y260{bottom:223.386667pt;}
.y2d{bottom:223.866667pt;}
.y153{bottom:227.066667pt;}
.yd7{bottom:229.786667pt;}
.yaf{bottom:229.946667pt;}
.y1fa{bottom:230.106667pt;}
.y22b{bottom:231.066667pt;}
.y220{bottom:231.226667pt;}
.y211{bottom:231.240000pt;}
.y181{bottom:232.186667pt;}
.yf5{bottom:236.186667pt;}
.y3a{bottom:237.786667pt;}
.y288{bottom:238.426667pt;}
.y72{bottom:239.066667pt;}
.y25f{bottom:239.226667pt;}
.y28{bottom:239.866667pt;}
.y1e4{bottom:242.280000pt;}
.y209{bottom:245.786667pt;}
.y12d{bottom:245.946667pt;}
.y21f{bottom:247.066667pt;}
.y210{bottom:247.080000pt;}
.y2c{bottom:247.706667pt;}
.y180{bottom:248.186667pt;}
.y34{bottom:250.746667pt;}
.y152{bottom:250.906667pt;}
.yf4{bottom:252.026667pt;}
.yd6{bottom:253.946667pt;}
.yae{bottom:254.106667pt;}
.y287{bottom:254.266667pt;}
.y71{bottom:254.906667pt;}
.y25e{bottom:255.066667pt;}
.y39{bottom:255.546667pt;}
.y12c{bottom:261.786667pt;}
.y20f{bottom:262.920000pt;}
.y21e{bottom:263.066667pt;}
.y27{bottom:263.706667pt;}
.y17f{bottom:264.026667pt;}
.y151{bottom:266.746667pt;}
.y1ea{bottom:266.760000pt;}
.yf3{bottom:268.026667pt;}
.yd5{bottom:269.786667pt;}
.yad{bottom:269.946667pt;}
.y286{bottom:270.106667pt;}
.y70{bottom:270.746667pt;}
.y25d{bottom:270.906667pt;}
.y2b{bottom:271.706667pt;}
.y208{bottom:277.626667pt;}
.y12b{bottom:277.786667pt;}
.y20e{bottom:278.760000pt;}
.y21d{bottom:278.906667pt;}
.y199{bottom:279.400000pt;}
.y17e{bottom:279.866667pt;}
.y150{bottom:282.746667pt;}
.yf2{bottom:283.866667pt;}
.yac{bottom:285.786667pt;}
.y285{bottom:285.946667pt;}
.y6f{bottom:286.586667pt;}
.y25c{bottom:286.746667pt;}
.y26{bottom:288.026667pt;}
.y1e9{bottom:291.400000pt;}
.y207{bottom:293.466667pt;}
.y12a{bottom:293.626667pt;}
.y2a{bottom:295.546667pt;}
.y17d{bottom:295.706667pt;}
.y14f{bottom:298.586667pt;}
.yf1{bottom:299.706667pt;}
.yd4{bottom:301.626667pt;}
.yab{bottom:301.786667pt;}
.y6e{bottom:302.586667pt;}
.y25{bottom:303.866667pt;}
.y206{bottom:309.306667pt;}
.y129{bottom:309.466667pt;}
.y17c{bottom:311.546667pt;}
.y14e{bottom:314.426667pt;}
.y1e6{bottom:315.880000pt;}
.yd3{bottom:317.466667pt;}
.yaa{bottom:317.626667pt;}
.y284{bottom:317.786667pt;}
.y25b{bottom:318.586667pt;}
.y24{bottom:319.386667pt;}
.yf0{bottom:323.546667pt;}
.y128{bottom:325.306667pt;}
.y6d{bottom:326.426667pt;}
.y17b{bottom:327.546667pt;}
.y14d{bottom:330.266667pt;}
.y205{bottom:333.146667pt;}
.yd2{bottom:333.306667pt;}
.ya9{bottom:333.466667pt;}
.y283{bottom:333.626667pt;}
.y25a{bottom:334.426667pt;}
.yef{bottom:339.386667pt;}
.y1db{bottom:340.360000pt;}
.y127{bottom:341.146667pt;}
.y6c{bottom:342.266667pt;}
.y17a{bottom:343.386667pt;}
.y14c{bottom:346.106667pt;}
.y204{bottom:348.986667pt;}
.yd1{bottom:349.146667pt;}
.ya8{bottom:349.306667pt;}
.y282{bottom:349.466667pt;}
.y259{bottom:350.266667pt;}
.y23{bottom:351.066667pt;}
.y195{bottom:351.560000pt;}
.yee{bottom:355.386667pt;}
.y126{bottom:356.986667pt;}
.y6b{bottom:358.106667pt;}
.y179{bottom:359.226667pt;}
.yd0{bottom:364.986667pt;}
.y1e2{bottom:365.000000pt;}
.ya7{bottom:365.146667pt;}
.y281{bottom:365.306667pt;}
.y258{bottom:366.106667pt;}
.y22{bottom:367.066667pt;}
.y14b{bottom:369.946667pt;}
.yed{bottom:371.226667pt;}
.y6a{bottom:373.946667pt;}
.y178{bottom:375.066667pt;}
.y203{bottom:380.826667pt;}
.ya6{bottom:380.986667pt;}
.y280{bottom:381.146667pt;}
.y257{bottom:381.946667pt;}
.y21{bottom:384.506667pt;}
.y14a{bottom:385.946667pt;}
.yec{bottom:387.066667pt;}
.y1e0{bottom:389.480000pt;}
.y69{bottom:389.946667pt;}
.y177{bottom:390.906667pt;}
.y202{bottom:396.706667pt;}
.y125{bottom:396.866667pt;}
.ya5{bottom:397.026667pt;}
.y256{bottom:397.986667pt;}
.y149{bottom:401.826667pt;}
.yeb{bottom:402.946667pt;}
.ycf{bottom:404.866667pt;}
.y20{bottom:405.666667pt;}
.y68{bottom:405.826667pt;}
.y176{bottom:406.786667pt;}
.y194{bottom:407.906667pt;}
.y248{bottom:412.386667pt;}
.y201{bottom:412.546667pt;}
.y124{bottom:412.706667pt;}
.y27f{bottom:413.026667pt;}
.y255{bottom:413.826667pt;}
.y1dd{bottom:413.986667pt;}
.y148{bottom:417.666667pt;}
.yea{bottom:418.466667pt;}
.yce{bottom:420.706667pt;}
.ya4{bottom:420.866667pt;}
.y67{bottom:421.666667pt;}
.y175{bottom:422.786667pt;}
.y1f{bottom:426.626667pt;}
.y200{bottom:428.386667pt;}
.y123{bottom:428.546667pt;}
.y27e{bottom:428.866667pt;}
.y21c{bottom:429.506667pt;}
.y254{bottom:429.666667pt;}
.y147{bottom:433.186667pt;}
.ycd{bottom:436.546667pt;}
.ya3{bottom:436.706667pt;}
.y66{bottom:437.506667pt;}
.y174{bottom:438.626667pt;}
.ye9{bottom:442.626667pt;}
.y122{bottom:444.386667pt;}
.y27d{bottom:444.706667pt;}
.y253{bottom:445.506667pt;}
.y1e{bottom:445.986667pt;}
.ycc{bottom:452.386667pt;}
.ya2{bottom:452.546667pt;}
.y65{bottom:453.346667pt;}
.y173{bottom:454.466667pt;}
.y146{bottom:457.346667pt;}
.ye8{bottom:458.626667pt;}
.y121{bottom:460.386667pt;}
.y27c{bottom:460.546667pt;}
.y252{bottom:461.346667pt;}
.y1da{bottom:463.106667pt;}
.y193{bottom:464.066667pt;}
.y1ff{bottom:468.226667pt;}
.ya1{bottom:468.386667pt;}
.y1d{bottom:469.506667pt;}
.y172{bottom:470.306667pt;}
.y145{bottom:473.346667pt;}
.ye7{bottom:474.466667pt;}
.y120{bottom:476.226667pt;}
.y27b{bottom:476.386667pt;}
.y64{bottom:477.186667pt;}
.ycb{bottom:484.226667pt;}
.ya0{bottom:484.386667pt;}
.y171{bottom:486.146667pt;}
.y1d8{bottom:487.746667pt;}
.y144{bottom:489.186667pt;}
.ye6{bottom:490.306667pt;}
.y1fe{bottom:491.746667pt;}
.y11f{bottom:492.066667pt;}
.y27a{bottom:492.386667pt;}
.y63{bottom:493.186667pt;}
.y1c{bottom:496.866667pt;}
.yca{bottom:500.066667pt;}
.y9f{bottom:500.226667pt;}
.y170{bottom:502.146667pt;}
.y192{bottom:504.546667pt;}
.y143{bottom:505.026667pt;}
.ye5{bottom:507.906667pt;}
.y279{bottom:508.226667pt;}
.y62{bottom:509.026667pt;}
.yc9{bottom:515.906667pt;}
.y9e{bottom:516.066667pt;}
.y1d7{bottom:517.186667pt;}
.y16f{bottom:517.666667pt;}
.y142{bottom:522.626667pt;}
.y278{bottom:524.066667pt;}
.y61{bottom:524.866667pt;}
.y11e{bottom:531.746667pt;}
.y9d{bottom:531.906667pt;}
.y16e{bottom:533.506667pt;}
.ye4{bottom:534.306667pt;}
.y10e{bottom:539.520000pt;}
.yc8{bottom:539.746667pt;}
.y277{bottom:539.906667pt;}
.y1b{bottom:540.226667pt;}
.y60{bottom:540.706667pt;}
.y18f{bottom:544.866667pt;}
.y11d{bottom:547.586667pt;}
.y9c{bottom:547.746667pt;}
.y16d{bottom:553.346667pt;}
.y141{bottom:554.146667pt;}
.yc7{bottom:555.586667pt;}
.y276{bottom:555.746667pt;}
.y5f{bottom:556.546667pt;}
.y9b{bottom:563.586667pt;}
.y1be{bottom:564.866667pt;}
.y1a{bottom:566.306667pt;}
.y107{bottom:569.760000pt;}
.yc6{bottom:571.586667pt;}
.y5e{bottom:572.546667pt;}
.y16c{bottom:577.826667pt;}
.y11c{bottom:579.426667pt;}
.y9a{bottom:579.586667pt;}
.y1bd{bottom:580.866667pt;}
.y19{bottom:587.106667pt;}
.y1d6{bottom:587.266667pt;}
.yc5{bottom:587.426667pt;}
.y275{bottom:587.586667pt;}
.y5d{bottom:588.386667pt;}
.y10b{bottom:588.706667pt;}
.y11b{bottom:595.266667pt;}
.y99{bottom:595.426667pt;}
.y1bc{bottom:596.706667pt;}
.y16b{bottom:602.493333pt;}
.y1d5{bottom:603.133333pt;}
.yc4{bottom:603.293333pt;}
.y274{bottom:603.453333pt;}
.y10a{bottom:604.066667pt;}
.y5c{bottom:604.253333pt;}
.y11a{bottom:611.133333pt;}
.y98{bottom:611.293333pt;}
.y1bb{bottom:612.573333pt;}
.y18{bottom:613.213333pt;}
.y1d4{bottom:618.973333pt;}
.yc3{bottom:619.133333pt;}
.y109{bottom:619.293333pt;}
.y5b{bottom:620.093333pt;}
.y140{bottom:623.773333pt;}
.y119{bottom:626.973333pt;}
.y97{bottom:627.133333pt;}
.y1ba{bottom:628.413333pt;}
.y1d3{bottom:634.813333pt;}
.yc2{bottom:634.973333pt;}
.y273{bottom:635.133333pt;}
.y5a{bottom:635.933333pt;}
.y118{bottom:642.813333pt;}
.y96{bottom:642.973333pt;}
.y1b9{bottom:644.253333pt;}
.y17{bottom:645.533333pt;}
.y18e{bottom:648.893333pt;}
.yc1{bottom:650.813333pt;}
.y272{bottom:650.973333pt;}
.y16a{bottom:651.453333pt;}
.y59{bottom:651.773333pt;}
.y95{bottom:658.813333pt;}
.y1b8{bottom:660.093333pt;}
.y1d2{bottom:666.653333pt;}
.yc0{bottom:666.813333pt;}
.y58{bottom:667.773333pt;}
.y117{bottom:674.653333pt;}
.y94{bottom:674.813333pt;}
.y169{bottom:676.093333pt;}
.yfe{bottom:680.253333pt;}
.y1d1{bottom:682.493333pt;}
.ybf{bottom:682.653333pt;}
.y271{bottom:682.813333pt;}
.y57{bottom:683.613333pt;}
.y16{bottom:690.493333pt;}
.y93{bottom:690.653333pt;}
.y1b7{bottom:691.933333pt;}
.y13e{bottom:693.373333pt;}
.y1d0{bottom:698.333333pt;}
.ybe{bottom:698.493333pt;}
.y270{bottom:698.653333pt;}
.y56{bottom:699.453333pt;}
.y168{bottom:700.573333pt;}
.y18d{bottom:705.053333pt;}
.y116{bottom:706.333333pt;}
.y92{bottom:706.493333pt;}
.y1b6{bottom:707.773333pt;}
.y1cf{bottom:714.173333pt;}
.ybd{bottom:714.333333pt;}
.y26f{bottom:714.493333pt;}
.y15{bottom:715.293333pt;}
.y115{bottom:722.173333pt;}
.y91{bottom:722.333333pt;}
.y20d{bottom:723.933333pt;}
.y166{bottom:725.053333pt;}
.ybc{bottom:730.173333pt;}
.y26e{bottom:730.333333pt;}
.y55{bottom:731.133333pt;}
.y1b5{bottom:731.613333pt;}
.y90{bottom:738.173333pt;}
.y1ce{bottom:746.013333pt;}
.ybb{bottom:746.173333pt;}
.y54{bottom:746.973333pt;}
.y1b4{bottom:747.453333pt;}
.y165{bottom:749.693333pt;}
.y101{bottom:751.933333pt;}
.y114{bottom:754.013333pt;}
.y8f{bottom:754.173333pt;}
.y102{bottom:755.680000pt;}
.y14{bottom:760.253333pt;}
.y18c{bottom:761.373333pt;}
.y1cd{bottom:761.853333pt;}
.y247{bottom:762.013333pt;}
.y26d{bottom:762.173333pt;}
.y53{bottom:762.973333pt;}
.y1b3{bottom:763.453333pt;}
.y100{bottom:768.893333pt;}
.y8e{bottom:770.013333pt;}
.y164{bottom:774.173333pt;}
.y104{bottom:774.333333pt;}
.y113{bottom:777.533333pt;}
.y1cc{bottom:777.693333pt;}
.y246{bottom:777.853333pt;}
.y26c{bottom:778.013333pt;}
.y52{bottom:778.813333pt;}
.y1b2{bottom:779.293333pt;}
.y13{bottom:780.573333pt;}
.yff{bottom:784.253333pt;}
.y8d{bottom:785.853333pt;}
.y245{bottom:793.693333pt;}
.y26b{bottom:793.853333pt;}
.y51{bottom:794.653333pt;}
.y1b1{bottom:795.133333pt;}
.y163{bottom:798.813333pt;}
.y12{bottom:799.773333pt;}
.y1cb{bottom:801.533333pt;}
.y8c{bottom:801.693333pt;}
.y244{bottom:809.573333pt;}
.y26a{bottom:809.733333pt;}
.y251{bottom:810.533333pt;}
.y1b0{bottom:811.013333pt;}
.y1ca{bottom:817.413333pt;}
.y8b{bottom:817.573333pt;}
.y18b{bottom:817.733333pt;}
.y50{bottom:818.533333pt;}
.y11{bottom:819.493333pt;}
.y162{bottom:823.333333pt;}
.y243{bottom:825.413333pt;}
.y269{bottom:825.573333pt;}
.y250{bottom:826.373333pt;}
.y1af{bottom:826.853333pt;}
.y13d{bottom:832.613333pt;}
.y8a{bottom:833.413333pt;}
.y4f{bottom:834.373333pt;}
.y10{bottom:839.813333pt;}
.y242{bottom:841.413333pt;}
.y24f{bottom:842.373333pt;}
.y1ae{bottom:842.693333pt;}
.y161{bottom:847.813333pt;}
.ye3{bottom:848.933333pt;}
.y1c9{bottom:849.253333pt;}
.y89{bottom:849.413333pt;}
.y4e{bottom:850.373333pt;}
.y241{bottom:857.253333pt;}
.y268{bottom:857.413333pt;}
.y24e{bottom:858.213333pt;}
.y1ad{bottom:858.693333pt;}
.yf{bottom:859.493333pt;}
.y1c8{bottom:865.093333pt;}
.y88{bottom:865.253333pt;}
.y4d{bottom:866.213333pt;}
.y160{bottom:872.453333pt;}
.ye2{bottom:873.093333pt;}
.y267{bottom:873.253333pt;}
.y24d{bottom:874.053333pt;}
.y1ac{bottom:874.533333pt;}
.y1c7{bottom:880.933333pt;}
.y87{bottom:881.093333pt;}
.y4c{bottom:882.053333pt;}
.y1f9{bottom:889.093333pt;}
.y189{bottom:889.893333pt;}
.y1ab{bottom:890.373333pt;}
.ye1{bottom:896.613333pt;}
.y1c6{bottom:896.773333pt;}
.y86{bottom:896.933333pt;}
.y4b{bottom:897.893333pt;}
.ye{bottom:899.173333pt;}
.y139{bottom:902.213333pt;}
.y1f8{bottom:904.933333pt;}
.y24c{bottom:905.733333pt;}
.y1aa{bottom:906.213333pt;}
.yd{bottom:909.893333pt;}
.y85{bottom:912.773333pt;}
.y4a{bottom:913.733333pt;}
.yc{bottom:920.613333pt;}
.ye0{bottom:920.773333pt;}
.y15f{bottom:921.413333pt;}
.y24b{bottom:921.573333pt;}
.y1a8{bottom:925.733333pt;}
.yba{bottom:928.453333pt;}
.y1c5{bottom:928.613333pt;}
.y84{bottom:928.773333pt;}
.y49{bottom:929.573333pt;}
.yb{bottom:931.333333pt;}
.ydf{bottom:936.773333pt;}
.y24a{bottom:937.573333pt;}
.ya{bottom:943.973333pt;}
.y1c4{bottom:944.293333pt;}
.y1c3{bottom:944.453333pt;}
.y83{bottom:944.613333pt;}
.y48{bottom:945.573333pt;}
.y15e{bottom:946.053333pt;}
.y1a5{bottom:951.653333pt;}
.yb9{bottom:952.613333pt;}
.y249{bottom:955.173333pt;}
.y82{bottom:960.453333pt;}
.y47{bottom:961.413333pt;}
.y9{bottom:966.373333pt;}
.y1c2{bottom:968.293333pt;}
.yb8{bottom:968.453333pt;}
.y15d{bottom:970.533333pt;}
.y136{bottom:971.813333pt;}
.y112{bottom:976.293333pt;}
.y46{bottom:977.253333pt;}
.y1a4{bottom:977.413333pt;}
.y1c1{bottom:984.133333pt;}
.y81{bottom:984.293333pt;}
.y111{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y45{bottom:993.093333pt;}
.y15c{bottom:999.973333pt;}
.y80{bottom:1000.133333pt;}
.y110{bottom:1007.653333pt;}
.y44{bottom:1008.933333pt;}
.y7f{bottom:1015.973333pt;}
.y20c{bottom:1018.240000pt;}
.y135{bottom:1023.680000pt;}
.y43{bottom:1024.960000pt;}
.y7e{bottom:1032.000000pt;}
.y186{bottom:1034.080000pt;}
.y7{bottom:1036.320000pt;}
.y1c0{bottom:1039.520000pt;}
.y42{bottom:1040.480000pt;}
.y7d{bottom:1047.840000pt;}
.y1a2{bottom:1049.600000pt;}
.y41{bottom:1058.400000pt;}
.y1bf{bottom:1063.360000pt;}
.y7c{bottom:1063.680000pt;}
.y1{bottom:1080.000000pt;}
.h1a{height:20.160000pt;}
.h23{height:23.826667pt;}
.h1f{height:23.840000pt;}
.h39{height:23.858667pt;}
.h20{height:23.872000pt;}
.h38{height:23.986667pt;}
.h21{height:24.000000pt;}
.h22{height:24.026667pt;}
.h30{height:24.320000pt;}
.h32{height:25.120000pt;}
.h3{height:27.676000pt;}
.h14{height:34.710938pt;}
.h35{height:35.350938pt;}
.h2f{height:35.676000pt;}
.h8{height:36.431250pt;}
.h29{height:39.666667pt;}
.h24{height:39.676000pt;}
.h2a{height:39.826667pt;}
.h1b{height:39.840000pt;}
.h17{height:46.400000pt;}
.h16{height:47.085938pt;}
.h4{height:47.109375pt;}
.h13{height:47.189275pt;}
.h34{height:47.742188pt;}
.h36{height:48.306667pt;}
.hf{height:48.375000pt;}
.h33{height:49.148438pt;}
.h15{height:49.336436pt;}
.h12{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h2b{height:55.506667pt;}
.h26{height:55.520000pt;}
.h1c{height:55.680000pt;}
.h2c{height:55.698667pt;}
.h1e{height:55.706667pt;}
.h1d{height:55.712000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.h19{height:58.691063pt;}
.hd{height:59.340000pt;}
.he{height:64.500000pt;}
.h11{height:69.660000pt;}
.h2d{height:71.506667pt;}
.h27{height:71.520000pt;}
.h31{height:71.540000pt;}
.h3b{height:72.992000pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h18{height:76.960000pt;}
.h2e{height:87.346667pt;}
.h25{height:87.380000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h3a{height:97.426667pt;}
.h37{height:97.618667pt;}
.h28{height:103.386667pt;}
.h3e{height:245.933333pt;}
.h10{height:275.040000pt;}
.h3c{height:293.626667pt;}
.h3d{height:293.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:41.266667pt;}
.w10{width:41.280000pt;}
.wf{width:41.312000pt;}
.w13{width:41.426667pt;}
.w11{width:71.360000pt;}
.w3{width:71.386667pt;}
.w8{width:71.506667pt;}
.w9{width:72.658667pt;}
.w5{width:75.360000pt;}
.w17{width:81.472000pt;}
.w1e{width:82.066667pt;}
.wd{width:93.280000pt;}
.wc{width:93.472000pt;}
.w19{width:95.378667pt;}
.w18{width:96.946667pt;}
.w1d{width:100.512000pt;}
.w1f{width:115.058667pt;}
.w20{width:119.066667pt;}
.w7{width:125.280000pt;}
.w6{width:125.760000pt;}
.w1c{width:125.952000pt;}
.w15{width:128.020000pt;}
.w16{width:136.186667pt;}
.w1b{width:141.142667pt;}
.wb{width:142.262667pt;}
.w1a{width:159.226667pt;}
.w12{width:174.413333pt;}
.we{width:174.582667pt;}
.wa{width:189.146667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.386667pt;}
.x6{left:7.680000pt;}
.x16{left:9.600000pt;}
.x25{left:11.173333pt;}
.x43{left:12.800000pt;}
.x2c{left:13.853333pt;}
.x45{left:19.200000pt;}
.x34{left:20.320000pt;}
.x32{left:21.280000pt;}
.x27{left:24.933333pt;}
.x54{left:29.586667pt;}
.x57{left:31.680000pt;}
.x15{left:34.880000pt;}
.x37{left:36.160000pt;}
.x28{left:37.893333pt;}
.x3e{left:39.040000pt;}
.x2{left:40.324000pt;}
.x40{left:43.520000pt;}
.x17{left:44.480000pt;}
.x35{left:46.600000pt;}
.x1{left:48.000000pt;}
.xd{left:51.200000pt;}
.x5f{left:53.444000pt;}
.x30{left:54.748000pt;}
.x56{left:58.240000pt;}
.x2b{left:62.973333pt;}
.x12{left:64.000000pt;}
.x1e{left:66.880000pt;}
.x10{left:69.440000pt;}
.x3f{left:70.748000pt;}
.x3d{left:72.668000pt;}
.x3a{left:75.708000pt;}
.x3c{left:78.108000pt;}
.x4a{left:86.108000pt;}
.x4b{left:87.388000pt;}
.x1f{left:90.912000pt;}
.x1d{left:95.232000pt;}
.x3b{left:97.302667pt;}
.x36{left:99.382667pt;}
.x39{left:102.742667pt;}
.x5a{left:105.120000pt;}
.x38{left:110.742667pt;}
.x2a{left:112.253333pt;}
.x5e{left:147.520000pt;}
.x4f{left:169.626667pt;}
.x50{left:175.386667pt;}
.x31{left:188.186667pt;}
.x60{left:195.226667pt;}
.x3{left:197.662667pt;}
.xf{left:200.026667pt;}
.x58{left:216.800000pt;}
.x41{left:220.346667pt;}
.xa{left:238.946667pt;}
.x4{left:241.182667pt;}
.xb{left:255.266667pt;}
.x42{left:262.466667pt;}
.x8{left:271.266667pt;}
.x13{left:279.426667pt;}
.x33{left:282.306667pt;}
.x44{left:304.386667pt;}
.xe{left:308.546667pt;}
.x5d{left:310.306667pt;}
.x51{left:312.226667pt;}
.x61{left:321.826667pt;}
.x9{left:323.906667pt;}
.x5b{left:325.760000pt;}
.x5c{left:327.746667pt;}
.xc{left:336.706667pt;}
.x59{left:360.320000pt;}
.x11{left:367.586667pt;}
.x4e{left:377.666667pt;}
.x52{left:394.346667pt;}
.x7{left:396.893333pt;}
.x2d{left:416.106667pt;}
.x46{left:418.186667pt;}
.x14{left:420.893333pt;}
.x29{left:421.920000pt;}
.x62{left:422.986667pt;}
.x21{left:430.973333pt;}
.x1a{left:439.773333pt;}
.x65{left:444.893333pt;}
.x22{left:449.213333pt;}
.x1b{left:463.773333pt;}
.x1c{left:468.093333pt;}
.x23{left:487.613333pt;}
.x53{left:491.946667pt;}
.x63{left:505.706667pt;}
.x4d{left:524.093333pt;}
.x2f{left:561.573333pt;}
.x55{left:587.973333pt;}
.x47{left:593.253333pt;}
.x19{left:619.013333pt;}
.x64{left:621.413333pt;}
.x24{left:631.040000pt;}
.x48{left:635.333333pt;}
.x18{left:646.693333pt;}
.x26{left:650.053333pt;}
.x4c{left:674.173333pt;}
.x49{left:677.253333pt;}
.x5{left:682.213333pt;}
.x20{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; }
  