
    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_d1c4a7b025838dbbf9b700ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_23b433f8dd1ded5269efb8eb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2fa8b0798efa9c1095b95c52.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_813ecd4e1138328e4b26b092.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_28d1ac352c012695c6f8cc18.woff')format("woff");}.ff6{font-family:ff6;line-height:1.068848;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_560feb1d8dfd3197bbb2d3f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.068848;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_7e32e7c3e29b3e75b47725d2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.949219;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_2a7cc2655d98b47d622bbe43.woff')format("woff");}.ffa{font-family:ffa;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-2.178000px;}
.ls13{letter-spacing:-2.124000px;}
.ls16{letter-spacing:-1.134000px;}
.ls5{letter-spacing:-0.828000px;}
.ls1f{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.178800px;}
.lse{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.109200px;}
.ls17{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.034560px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305280px;}
.lsa{letter-spacing:0.305400px;}
.ls12{letter-spacing:5.778720px;}
.ls1e{letter-spacing:27.378720px;}
.ls1d{letter-spacing:49.985280px;}
.ls1c{letter-spacing:59.321280px;}
.ls19{letter-spacing:59.345280px;}
.ls10{letter-spacing:60.768000px;}
.ls11{letter-spacing:95.328000px;}
.ls1{letter-spacing:845.741280px;}
.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;}
}
.ws15{word-spacing:-66.240000px;}
.ws12{word-spacing:-59.760000px;}
.ws16{word-spacing:-39.744000px;}
.ws1{word-spacing:-26.621280px;}
.ws10{word-spacing:-24.497280px;}
.ws0{word-spacing:-24.443280px;}
.ws18{word-spacing:-21.582720px;}
.ws2{word-spacing:-20.160000px;}
.ws8{word-spacing:-19.215360px;}
.wse{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.523920px;}
.ws3{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.262320px;}
.wsb{word-spacing:-18.152520px;}
.ws5{word-spacing:-18.109320px;}
.ws19{word-spacing:-17.956920px;}
.ws4{word-spacing:-17.586720px;}
.ws14{word-spacing:-16.666560px;}
.ws17{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.506480px;}
.ws13{word-spacing:-15.228000px;}
.wsa{word-spacing:-14.994000px;}
.wsc{word-spacing:-11.430480px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-17.666640px;}
._11{margin-left:-16.033680px;}
._c{margin-left:-14.551920px;}
._e{margin-left:-12.858240px;}
._12{margin-left:-10.911120px;}
._a{margin-left:-9.576000px;}
._d{margin-left:-7.585200px;}
._10{margin-left:-6.006720px;}
._b{margin-left:-4.673280px;}
._2{margin-left:-3.008640px;}
._1{margin-left:-1.492080px;}
._3{width:1.088640px;}
._8{width:2.650320px;}
._19{width:4.102560px;}
._15{width:5.232960px;}
._16{width:6.674160px;}
._1c{width:8.181120px;}
._17{width:9.273600px;}
._18{width:11.002320px;}
._1d{width:12.485040px;}
._6{width:13.565520px;}
._7{width:14.628240px;}
._14{width:16.228800px;}
._1a{width:17.386560px;}
._1b{width:19.878720px;}
._23{width:21.059760px;}
._26{width:22.477440px;}
._27{width:23.976000px;}
._1f{width:25.308240px;}
._1e{width:26.463360px;}
._21{width:30.205440px;}
._20{width:31.300080px;}
._4{width:33.914880px;}
._5{width:35.075760px;}
._25{width:49.841280px;}
._24{width:59.090880px;}
._22{width:63.897120px;}
._9{width:112.227360px;}
._f{width:845.741280px;}
._0{width:1345.944000px;}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(36,122,53);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.420000px;}
.y68{bottom:3.600000px;}
.y7c{bottom:3.960000px;}
.y112{bottom:6.660000px;}
.y186{bottom:7.200000px;}
.yc{bottom:12.420000px;}
.y234{bottom:12.594000px;}
.y1fa{bottom:12.600000px;}
.y200{bottom:12.780000px;}
.y24d{bottom:12.825000px;}
.y1f3{bottom:12.960000px;}
.y1f7{bottom:13.680000px;}
.y129{bottom:15.480000px;}
.yd8{bottom:15.660000px;}
.y19b{bottom:15.690000px;}
.y169{bottom:15.705000px;}
.y21d{bottom:16.194000px;}
.y10{bottom:16.200000px;}
.y1b{bottom:16.230000px;}
.y2e{bottom:16.245000px;}
.y12{bottom:16.380000px;}
.y36{bottom:16.410000px;}
.y213{bottom:16.425000px;}
.y18{bottom:16.560000px;}
.y259{bottom:17.100000px;}
.y17{bottom:17.280000px;}
.y7f{bottom:18.180000px;}
.y227{bottom:19.125000px;}
.y6f{bottom:22.320000px;}
.y67{bottom:22.500000px;}
.y20{bottom:28.080000px;}
.y111{bottom:28.260000px;}
.y1fe{bottom:28.440000px;}
.y185{bottom:30.060000px;}
.y27c{bottom:30.780000px;}
.y205{bottom:36.180000px;}
.y14b{bottom:36.360000px;}
.y168{bottom:36.405000px;}
.yf9{bottom:37.260000px;}
.y225{bottom:38.880000px;}
.y21c{bottom:39.054000px;}
.y2c{bottom:39.060000px;}
.y209{bottom:39.090000px;}
.yf{bottom:39.105000px;}
.y258{bottom:39.780000px;}
.y75{bottom:41.580000px;}
.y243{bottom:43.425000px;}
.y1f5{bottom:45.000000px;}
.y143{bottom:45.360000px;}
.y24e{bottom:46.845000px;}
.y99{bottom:47.385000px;}
.y1a{bottom:48.090000px;}
.y255{bottom:48.420000px;}
.y1f{bottom:48.780000px;}
.y110{bottom:50.034000px;}
.y6e{bottom:50.400000px;}
.y1fd{bottom:51.300000px;}
.y207{bottom:52.410000px;}
.y184{bottom:52.920000px;}
.yb{bottom:55.980000px;}
.y174{bottom:57.060000px;}
.y167{bottom:57.105000px;}
.y21f{bottom:57.960000px;}
.y215{bottom:58.314000px;}
.y204{bottom:58.860000px;}
.yf8{bottom:59.040000px;}
.y74{bottom:60.480000px;}
.y21b{bottom:61.734000px;}
.y1f8{bottom:61.740000px;}
.y1b3{bottom:61.785000px;}
.y23e{bottom:61.920000px;}
.y208{bottom:61.950000px;}
.y212{bottom:61.965000px;}
.y257{bottom:62.640000px;}
.y20b{bottom:63.405000px;}
.y23c{bottom:63.540000px;}
.y146{bottom:66.060000px;}
.y1f4{bottom:67.860000px;}
.y3{bottom:68.040000px;}
.y24b{bottom:68.760000px;}
.y1e{bottom:69.480000px;}
.y254{bottom:71.280000px;}
.y10f{bottom:71.634000px;}
.y240{bottom:73.620000px;}
.y1fc{bottom:73.980000px;}
.y142{bottom:75.060000px;}
.y183{bottom:75.780000px;}
.y173{bottom:77.760000px;}
.y166{bottom:77.805000px;}
.y6d{bottom:78.525000px;}
.y128{bottom:80.640000px;}
.y119{bottom:80.670000px;}
.yf7{bottom:80.820000px;}
.y203{bottom:81.720000px;}
.y224{bottom:84.420000px;}
.y21a{bottom:84.594000px;}
.y242{bottom:84.600000px;}
.y23d{bottom:84.630000px;}
.y211{bottom:84.645000px;}
.y14a{bottom:86.760000px;}
.y73{bottom:88.560000px;}
.y1d{bottom:90.180000px;}
.y24a{bottom:91.620000px;}
.y10e{bottom:93.414000px;}
.y253{bottom:93.990000px;}
.y145{bottom:95.760000px;}
.y24{bottom:95.796000px;}
.y1fb{bottom:96.705000px;}
.ya{bottom:97.380000px;}
.y172{bottom:98.460000px;}
.y165{bottom:98.505000px;}
.y182{bottom:98.640000px;}
.y251{bottom:98.820000px;}
.yf6{bottom:102.420000px;}
.y202{bottom:104.400000px;}
.y6c{bottom:106.605000px;}
.y219{bottom:107.274000px;}
.y223{bottom:107.280000px;}
.y72{bottom:107.460000px;}
.y210{bottom:107.505000px;}
.yff{bottom:109.836000px;}
.y27b{bottom:111.996000px;}
.y1ab{bottom:113.256000px;}
.y249{bottom:114.300000px;}
.y10d{bottom:115.194000px;}
.y149{bottom:116.460000px;}
.y171{bottom:119.160000px;}
.y181{bottom:121.500000px;}
.y250{bottom:121.680000px;}
.y127{bottom:124.020000px;}
.yf5{bottom:124.200000px;}
.y9{bottom:124.920000px;}
.y1e8{bottom:126.756000px;}
.y201{bottom:127.260000px;}
.yba{bottom:127.836000px;}
.y267{bottom:129.096000px;}
.y222{bottom:129.960000px;}
.y218{bottom:130.134000px;}
.y241{bottom:130.140000px;}
.y20f{bottom:130.185000px;}
.y1ca{bottom:130.716000px;}
.y6b{bottom:134.505000px;}
.y214{bottom:135.756000px;}
.y1aa{bottom:135.936000px;}
.y10c{bottom:136.794000px;}
.y232{bottom:139.536000px;}
.y170{bottom:139.860000px;}
.y6{bottom:141.840000px;}
.y180{bottom:144.405000px;}
.yf4{bottom:145.800000px;}
.y117{bottom:145.974000px;}
.yd5{bottom:147.096000px;}
.y23{bottom:148.896000px;}
.yb9{bottom:150.690000px;}
.y8{bottom:152.640000px;}
.y217{bottom:152.814000px;}
.y221{bottom:152.820000px;}
.y20e{bottom:152.865000px;}
.y1c9{bottom:154.650000px;}
.y1e7{bottom:157.350000px;}
.y10b{bottom:158.574000px;}
.y1a9{bottom:158.790000px;}
.y188{bottom:159.690000px;}
.y16f{bottom:160.560000px;}
.y116{bottom:166.674000px;}
.y266{bottom:166.710000px;}
.y17f{bottom:167.265000px;}
.yf3{bottom:167.610000px;}
.y126{bottom:167.625000px;}
.y15e{bottom:171.210000px;}
.yb8{bottom:173.370000px;}
.y5{bottom:173.700000px;}
.y220{bottom:175.530000px;}
.y216{bottom:175.674000px;}
.y12d{bottom:175.725000px;}
.y1c8{bottom:177.330000px;}
.yd4{bottom:178.770000px;}
.y10a{bottom:180.174000px;}
.y7{bottom:180.180000px;}
.y16e{bottom:181.260000px;}
.y1e6{bottom:182.550000px;}
.y42{bottom:183.270000px;}
.y22{bottom:184.170000px;}
.y115{bottom:187.374000px;}
.y125{bottom:189.225000px;}
.yf2{bottom:189.390000px;}
.y17e{bottom:190.125000px;}
.y1a8{bottom:190.470000px;}
.y187{bottom:191.370000px;}
.y24f{bottom:191.550000px;}
.y265{bottom:192.090000px;}
.y27a{bottom:194.250000px;}
.yb7{bottom:196.230000px;}
.y12c{bottom:196.425000px;}
.y20d{bottom:198.405000px;}
.yd3{bottom:201.630000px;}
.y109{bottom:201.954000px;}
.y16d{bottom:201.960000px;}
.y15d{bottom:202.890000px;}
.y23a{bottom:207.039000px;}
.y177{bottom:207.570000px;}
.y114{bottom:208.074000px;}
.y231{bottom:209.550000px;}
.y1c7{bottom:210.270000px;}
.yf1{bottom:210.990000px;}
.y124{bottom:211.005000px;}
.y17d{bottom:212.985000px;}
.y1a7{bottom:213.330000px;}
.y279{bottom:217.110000px;}
.y12b{bottom:217.125000px;}
.yb6{bottom:218.910000px;}
.y20c{bottom:221.265000px;}
.y41{bottom:222.150000px;}
.y16c{bottom:222.660000px;}
.y108{bottom:223.734000px;}
.yd2{bottom:224.310000px;}
.y13f{bottom:227.370000px;}
.y113{bottom:228.819000px;}
.y239{bottom:229.719000px;}
.y230{bottom:232.230000px;}
.y123{bottom:232.605000px;}
.yf0{bottom:232.770000px;}
.y1c6{bottom:233.130000px;}
.y15c{bottom:234.570000px;}
.y17c{bottom:235.845000px;}
.y40{bottom:237.630000px;}
.y12a{bottom:237.825000px;}
.y278{bottom:239.790000px;}
.yb5{bottom:241.590000px;}
.y1a6{bottom:241.770000px;}
.y16b{bottom:243.360000px;}
.y247{bottom:244.470000px;}
.y107{bottom:245.379000px;}
.yd1{bottom:247.170000px;}
.y103{bottom:249.519000px;}
.y238{bottom:252.579000px;}
.y122{bottom:254.385000px;}
.yef{bottom:254.550000px;}
.y22f{bottom:255.090000px;}
.y1c5{bottom:255.810000px;}
.y13e{bottom:256.350000px;}
.y15b{bottom:258.330000px;}
.y11e{bottom:258.525000px;}
.y17b{bottom:258.705000px;}
.y277{bottom:262.650000px;}
.y246{bottom:267.150000px;}
.y106{bottom:267.159000px;}
.y102{bottom:270.219000px;}
.yb4{bottom:273.450000px;}
.y3f{bottom:273.810000px;}
.y237{bottom:275.259000px;}
.yee{bottom:276.150000px;}
.y121{bottom:276.165000px;}
.y22e{bottom:277.770000px;}
.y1c4{bottom:278.670000px;}
.yd0{bottom:278.850000px;}
.y11d{bottom:279.225000px;}
.y17a{bottom:281.565000px;}
.y15a{bottom:282.270000px;}
.y276{bottom:285.330000px;}
.y1a5{bottom:285.510000px;}
.y13d{bottom:288.030000px;}
.y105{bottom:288.759000px;}
.y245{bottom:290.010000px;}
.y101{bottom:290.919000px;}
.y233{bottom:293.439000px;}
.yb3{bottom:296.130000px;}
.y120{bottom:297.765000px;}
.yed{bottom:297.930000px;}
.y236{bottom:297.939000px;}
.y9a{bottom:298.650000px;}
.y11c{bottom:299.925000px;}
.y22d{bottom:300.630000px;}
.y179{bottom:304.425000px;}
.y159{bottom:306.390000px;}
.y1c3{bottom:307.110000px;}
.ycf{bottom:309.450000px;}
.y3e{bottom:310.170000px;}
.y104{bottom:310.539000px;}
.y100{bottom:311.619000px;}
.y275{bottom:317.010000px;}
.y1a4{bottom:317.190000px;}
.yb2{bottom:318.990000px;}
.yec{bottom:319.530000px;}
.y11f{bottom:319.545000px;}
.y13c{bottom:319.890000px;}
.y11b{bottom:320.625000px;}
.y235{bottom:320.799000px;}
.y98{bottom:321.870000px;}
.y22c{bottom:323.310000px;}
.y178{bottom:327.285000px;}
.y20a{bottom:327.630000px;}
.y158{bottom:329.070000px;}
.y24c{bottom:329.430000px;}
.y1ef{bottom:332.130000px;}
.yce{bottom:334.830000px;}
.y1a3{bottom:339.915000px;}
.y1de{bottom:340.815000px;}
.y274{bottom:341.175000px;}
.yeb{bottom:341.310000px;}
.yb1{bottom:341.715000px;}
.y229{bottom:345.090000px;}
.y22b{bottom:346.170000px;}
.y3d{bottom:346.395000px;}
.y1c2{bottom:350.895000px;}
.y13b{bottom:351.615000px;}
.y157{bottom:351.975000px;}
.y1ee{bottom:361.155000px;}
.y81{bottom:362.595000px;}
.y1a2{bottom:362.775000px;}
.yea{bottom:363.090000px;}
.y1dd{bottom:363.675000px;}
.yb0{bottom:364.575000px;}
.y22a{bottom:368.850000px;}
.y156{bottom:374.655000px;}
.y1c1{bottom:382.575000px;}
.y3c{bottom:382.755000px;}
.y13a{bottom:383.475000px;}
.ye9{bottom:384.690000px;}
.y1a1{bottom:385.455000px;}
.y1dc{bottom:386.355000px;}
.yaf{bottom:387.255000px;}
.y273{bottom:387.795000px;}
.y248{bottom:392.475000px;}
.y1ed{bottom:392.835000px;}
.y80{bottom:394.455000px;}
.y155{bottom:397.515000px;}
.y1c0{bottom:405.435000px;}
.ye8{bottom:406.470000px;}
.y1db{bottom:409.215000px;}
.y272{bottom:410.295000px;}
.y7e{bottom:411.375000px;}
.y139{bottom:415.155000px;}
.y1a0{bottom:417.315000px;}
.y3b{bottom:418.935000px;}
.y154{bottom:420.195000px;}
.yae{bottom:421.635000px;}
.y1ec{bottom:424.695000px;}
.ye7{bottom:428.070000px;}
.y1bf{bottom:428.115000px;}
.y19f{bottom:433.515000px;}
.y271{bottom:434.235000px;}
.yd9{bottom:436.215000px;}
.y97{bottom:437.115000px;}
.y138{bottom:438.015000px;}
.y1da{bottom:440.895000px;}
.y153{bottom:442.875000px;}
.ye6{bottom:449.895000px;}
.y1be{bottom:450.975000px;}
.y7d{bottom:454.215000px;}
.y21{bottom:454.755000px;}
.y1eb{bottom:455.115000px;}
.y3a{bottom:455.295000px;}
.y270{bottom:458.175000px;}
.yad{bottom:460.515000px;}
.y137{bottom:460.695000px;}
.y152{bottom:465.735000px;}
.y96{bottom:468.795000px;}
.y1d9{bottom:471.495000px;}
.ye5{bottom:471.675000px;}
.y1c{bottom:473.655000px;}
.y228{bottom:476.535000px;}
.yfe{bottom:479.775000px;}
.y1ea{bottom:480.495000px;}
.y26f{bottom:481.935000px;}
.y7b{bottom:482.295000px;}
.y136{bottom:483.555000px;}
.y19e{bottom:484.635000px;}
.y151{bottom:488.415000px;}
.y39{bottom:491.475000px;}
.y95{bottom:491.655000px;}
.yac{bottom:492.195000px;}
.ye4{bottom:493.275000px;}
.y1bd{bottom:496.515000px;}
.y1d8{bottom:496.695000px;}
.yfd{bottom:500.475000px;}
.y135{bottom:506.235000px;}
.y7a{bottom:510.915000px;}
.y150{bottom:511.095000px;}
.y94{bottom:514.335000px;}
.yab{bottom:515.055000px;}
.y1bc{bottom:519.195000px;}
.yfc{bottom:521.175000px;}
.y55{bottom:522.075000px;}
.y244{bottom:522.975000px;}
.y38{bottom:527.655000px;}
.y134{bottom:533.595000px;}
.y14f{bottom:535.035000px;}
.y19d{bottom:535.755000px;}
.ye3{bottom:536.655000px;}
.y93{bottom:537.195000px;}
.yaa{bottom:537.735000px;}
.yfb{bottom:541.875000px;}
.y1bb{bottom:542.055000px;}
.y54{bottom:553.755000px;}
.y79{bottom:557.895000px;}
.ye2{bottom:558.435000px;}
.y92{bottom:559.875000px;}
.ya9{bottom:560.595000px;}
.yfa{bottom:562.575000px;}
.y37{bottom:564.015000px;}
.y286{bottom:564.735000px;}
.y206{bottom:565.095000px;}
.y176{bottom:566.175000px;}
.y19c{bottom:566.355000px;}
.y14e{bottom:567.975000px;}
.y133{bottom:574.275000px;}
.y1ba{bottom:576.435000px;}
.ye1{bottom:579.135000px;}
.y91{bottom:582.735000px;}
.ydd{bottom:583.275000px;}
.y53{bottom:585.615000px;}
.y78{bottom:585.975000px;}
.ya8{bottom:592.275000px;}
.y175{bottom:595.155000px;}
.y14d{bottom:595.335000px;}
.y285{bottom:596.595000px;}
.y19a{bottom:596.775000px;}
.y19{bottom:599.295000px;}
.y35{bottom:600.195000px;}
.ye0{bottom:600.915000px;}
.ydc{bottom:603.975000px;}
.y90{bottom:605.445000px;}
.y132{bottom:606.165000px;}
.y16a{bottom:611.385000px;}
.y77{bottom:614.085000px;}
.ya7{bottom:615.165000px;}
.y52{bottom:617.325000px;}
.y284{bottom:619.305000px;}
.ydf{bottom:622.515000px;}
.ydb{bottom:624.675000px;}
.y199{bottom:627.225000px;}
.y8f{bottom:628.305000px;}
.y131{bottom:628.845000px;}
.y1b9{bottom:631.365000px;}
.y14c{bottom:636.045000px;}
.ya6{bottom:637.845000px;}
.ycd{bottom:639.105000px;}
.y76{bottom:642.165000px;}
.y1ff{bottom:643.245000px;}
.yde{bottom:644.295000px;}
.yda{bottom:645.375000px;}
.y51{bottom:649.185000px;}
.y8e{bottom:650.985000px;}
.y130{bottom:651.705000px;}
.y148{bottom:652.245000px;}
.y264{bottom:653.865000px;}
.y34{bottom:655.485000px;}
.y198{bottom:657.645000px;}
.ya5{bottom:660.705000px;}
.y283{bottom:664.845000px;}
.y16{bottom:667.365000px;}
.y71{bottom:670.065000px;}
.ycc{bottom:670.965000px;}
.y8d{bottom:673.845000px;}
.y12f{bottom:674.385000px;}
.y263{bottom:676.725000px;}
.y50{bottom:680.865000px;}
.y1e5{bottom:682.845000px;}
.y26e{bottom:683.385000px;}
.y1b8{bottom:686.805000px;}
.y282{bottom:687.705000px;}
.y197{bottom:688.065000px;}
.ya4{bottom:692.385000px;}
.ycb{bottom:693.645000px;}
.y33{bottom:694.185000px;}
.y8c{bottom:696.525000px;}
.y262{bottom:699.405000px;}
.y15{bottom:704.625000px;}
.y12e{bottom:706.245000px;}
.y281{bottom:710.385000px;}
.y4f{bottom:712.725000px;}
.y1e4{bottom:714.525000px;}
.ya3{bottom:715.245000px;}
.yca{bottom:716.505000px;}
.y1b7{bottom:719.205000px;}
.y8b{bottom:719.385000px;}
.y11a{bottom:722.445000px;}
.y32{bottom:726.045000px;}
.y26d{bottom:728.925000px;}
.y261{bottom:731.265000px;}
.y280{bottom:733.245000px;}
.y1e3{bottom:737.385000px;}
.ya2{bottom:737.925000px;}
.yc9{bottom:739.185000px;}
.y14{bottom:740.805000px;}
.y31{bottom:742.245000px;}
.y4e{bottom:744.405000px;}
.y1b6{bottom:751.785000px;}
.y8a{bottom:753.765000px;}
.y260{bottom:753.945000px;}
.y27f{bottom:755.925000px;}
.ya1{bottom:760.785000px;}
.yc8{bottom:762.045000px;}
.y1e2{bottom:771.765000px;}
.y63{bottom:773.925000px;}
.y30{bottom:774.825000px;}
.y4d{bottom:776.265000px;}
.y25f{bottom:776.805000px;}
.y13{bottom:777.165000px;}
.y27e{bottom:778.785000px;}
.y196{bottom:780.585000px;}
.y26c{bottom:783.465000px;}
.y1b5{bottom:784.185000px;}
.yc7{bottom:784.725000px;}
.y1f9{bottom:786.705000px;}
.y147{bottom:788.145000px;}
.y89{bottom:792.465000px;}
.y62{bottom:796.605000px;}
.y27d{bottom:801.465000px;}
.y6a{bottom:802.185000px;}
.y25e{bottom:805.245000px;}
.y26b{bottom:806.325000px;}
.y1d7{bottom:806.505000px;}
.y4c{bottom:807.945000px;}
.y1e1{bottom:810.465000px;}
.y195{bottom:811.005000px;}
.yc6{bottom:812.085000px;}
.y11{bottom:813.345000px;}
.ya0{bottom:815.325000px;}
.y1b4{bottom:816.765000px;}
.y61{bottom:819.465000px;}
.y88{bottom:824.325000px;}
.y26a{bottom:829.005000px;}
.y1d6{bottom:829.185000px;}
.y2f{bottom:830.085000px;}
.y9f{bottom:838.005000px;}
.y4b{bottom:839.805000px;}
.y1e0{bottom:841.065000px;}
.y194{bottom:841.605000px;}
.y60{bottom:842.145000px;}
.y87{bottom:847.005000px;}
.y25d{bottom:848.985000px;}
.y1b2{bottom:849.345000px;}
.ye{bottom:849.705000px;}
.y1d5{bottom:851.865000px;}
.yc5{bottom:852.765000px;}
.y9e{bottom:860.865000px;}
.y226{bottom:861.585000px;}
.y2d{bottom:862.665000px;}
.y5f{bottom:865.005000px;}
.y1df{bottom:866.445000px;}
.y164{bottom:869.505000px;}
.y86{bottom:869.865000px;}
.y4a{bottom:871.530000px;}
.y193{bottom:872.070000px;}
.yc4{bottom:875.670000px;}
.y1d4{bottom:875.850000px;}
.y25c{bottom:880.710000px;}
.y144{bottom:882.510000px;}
.y9d{bottom:883.590000px;}
.y5e{bottom:887.730000px;}
.y85{bottom:892.590000px;}
.y2b{bottom:895.110000px;}
.yc3{bottom:898.350000px;}
.y1d3{bottom:899.610000px;}
.y1f6{bottom:899.790000px;}
.y49{bottom:903.390000px;}
.y9c{bottom:906.450000px;}
.y23f{bottom:907.170000px;}
.y25b{bottom:909.330000px;}
.y5d{bottom:910.590000px;}
.y84{bottom:915.450000px;}
.y192{bottom:917.430000px;}
.yc2{bottom:921.210000px;}
.y1d2{bottom:923.730000px;}
.yd{bottom:924.990000px;}
.y1b1{bottom:927.330000px;}
.y9b{bottom:929.130000px;}
.y191{bottom:933.090000px;}
.y48{bottom:935.070000px;}
.y83{bottom:938.130000px;}
.y4{bottom:943.890000px;}
.y5c{bottom:944.970000px;}
.y1d1{bottom:946.230000px;}
.y25a{bottom:949.110000px;}
.y2a{bottom:950.370000px;}
.y269{bottom:951.990000px;}
.y1b0{bottom:959.910000px;}
.y82{bottom:960.990000px;}
.y69{bottom:961.350000px;}
.y190{bottom:961.890000px;}
.y21e{bottom:962.610000px;}
.y256{bottom:965.310000px;}
.yc1{bottom:966.750000px;}
.y47{bottom:966.930000px;}
.y268{bottom:974.670000px;}
.y1f2{bottom:977.730000px;}
.y1d0{bottom:979.350000px;}
.y163{bottom:982.770000px;}
.y29{bottom:982.950000px;}
.y5b{bottom:983.670000px;}
.y18f{bottom:984.750000px;}
.y1af{bottom:992.490000px;}
.yc0{bottom:995.190000px;}
.y141{bottom:997.530000px;}
.y46{bottom:998.610000px;}
.y5a{bottom:1006.530000px;}
.y18e{bottom:1007.430000px;}
.y1cf{bottom:1007.790000px;}
.y66{bottom:1008.330000px;}
.y28{bottom:1015.530000px;}
.y162{bottom:1028.310000px;}
.y59{bottom:1029.210000px;}
.y18d{bottom:1030.290000px;}
.y45{bottom:1030.470000px;}
.ybf{bottom:1038.930000px;}
.y1ae{bottom:1040.010000px;}
.y252{bottom:1044.150000px;}
.y27{bottom:1047.930000px;}
.y1ce{bottom:1051.530000px;}
.y58{bottom:1052.070000px;}
.y18c{bottom:1052.970000px;}
.y23b{bottom:1053.510000px;}
.y1ad{bottom:1055.490000px;}
.y161{bottom:1057.110000px;}
.y118{bottom:1057.830000px;}
.y65{bottom:1060.350000px;}
.y1e9{bottom:1061.610000px;}
.y1f1{bottom:1061.790000px;}
.y44{bottom:1062.150000px;}
.ybe{bottom:1070.610000px;}
.y57{bottom:1074.750000px;}
.y26{bottom:1080.510000px;}
.y1cd{bottom:1083.210000px;}
.y1ac{bottom:1084.470000px;}
.y18b{bottom:1084.830000px;}
.y64{bottom:1088.430000px;}
.y160{bottom:1088.970000px;}
.y140{bottom:1091.850000px;}
.ybd{bottom:1093.470000px;}
.y1f0{bottom:1094.190000px;}
.y43{bottom:1095.990000px;}
.yd7{bottom:1096.350000px;}
.y56{bottom:1097.610000px;}
.y18a{bottom:1107.510000px;}
.y15f{bottom:1111.650000px;}
.y1cc{bottom:1115.070000px;}
.ybc{bottom:1116.150000px;}
.y25{bottom:1131.990000px;}
.y189{bottom:1136.130000px;}
.y1cb{bottom:1137.780000px;}
.ybb{bottom:1139.040000px;}
.yd6{bottom:1141.920000px;}
.y2{bottom:1169.460000px;}
.y1{bottom:1197.180000px;}
.h1e{height:27.900000px;}
.h1f{height:28.080000px;}
.h20{height:28.116000px;}
.h21{height:28.620000px;}
.h26{height:29.700000px;}
.h35{height:29.736000px;}
.h11{height:31.680000px;}
.h14{height:31.716000px;}
.h12{height:31.860000px;}
.h2c{height:34.200000px;}
.hb{height:36.180000px;}
.h17{height:36.216000px;}
.ha{height:36.360000px;}
.h16{height:36.396000px;}
.h34{height:36.624023px;}
.hd{height:37.260000px;}
.h22{height:42.840000px;}
.h27{height:44.936719px;}
.h25{height:46.353516px;}
.h1b{height:46.980000px;}
.h1a{height:47.160000px;}
.h2{height:48.436523px;}
.h24{height:49.777031px;}
.h9{height:49.809375px;}
.h37{height:50.400000px;}
.h10{height:53.603086px;}
.h7{height:54.140625px;}
.h13{height:54.540000px;}
.h6{height:58.471875px;}
.h8{height:59.076000px;}
.h4{height:59.415469px;}
.h15{height:61.217578px;}
.hc{height:61.998750px;}
.h47{height:62.316000px;}
.h4b{height:65.340000px;}
.he{height:68.076000px;}
.h19{height:71.613281px;}
.h5{height:72.007031px;}
.h3a{height:77.220000px;}
.h38{height:77.256000px;}
.h3d{height:77.436000px;}
.h4a{height:78.120000px;}
.h39{height:83.340000px;}
.h18{height:85.894102px;}
.h36{height:91.800000px;}
.h2d{height:93.600000px;}
.h2f{height:93.636000px;}
.h2a{height:95.796000px;}
.h23{height:98.136000px;}
.h41{height:100.116000px;}
.h49{height:109.476000px;}
.h3b{height:112.176000px;}
.h31{height:112.536000px;}
.h2e{height:114.300000px;}
.hf{height:122.220000px;}
.h46{height:129.780000px;}
.h1d{height:132.120000px;}
.h30{height:135.000000px;}
.h48{height:137.160000px;}
.h3c{height:142.740000px;}
.h44{height:145.620000px;}
.h1c{height:159.150000px;}
.h40{height:191.010000px;}
.h3f{height:191.160000px;}
.h3{height:207.210000px;}
.h3e{height:236.730000px;}
.h32{height:257.400000px;}
.h45{height:305.490000px;}
.h29{height:325.650000px;}
.h2b{height:334.650000px;}
.h43{height:336.270000px;}
.h33{height:342.930000px;}
.h42{height:384.330000px;}
.h28{height:659.415000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:52.920000px;}
.w8{width:75.960000px;}
.w14{width:76.140000px;}
.w11{width:76.500000px;}
.w9{width:112.716000px;}
.w1c{width:123.660000px;}
.w1a{width:124.020000px;}
.w2a{width:124.956000px;}
.w27{width:125.676000px;}
.w15{width:126.936000px;}
.w12{width:127.836000px;}
.wc{width:134.640000px;}
.we{width:170.280000px;}
.w17{width:180.390000px;}
.w5{width:180.750000px;}
.w2b{width:207.390000px;}
.w28{width:207.750000px;}
.wb{width:208.290000px;}
.w24{width:211.530000px;}
.w22{width:211.890000px;}
.w16{width:293.070000px;}
.w13{width:293.790000px;}
.wa{width:301.350000px;}
.w20{width:338.970000px;}
.w21{width:339.195000px;}
.w1e{width:339.330000px;}
.w1f{width:339.555000px;}
.w29{width:345.090000px;}
.w26{width:345.450000px;}
.w4{width:361.515000px;}
.w3{width:372.315000px;}
.w25{width:466.635000px;}
.w23{width:466.995000px;}
.wf{width:509.685000px;}
.w6{width:510.015000px;}
.wd{width:544.965000px;}
.w1d{width:554.505000px;}
.w1b{width:554.865000px;}
.w19{width:625.245000px;}
.w7{width:671.325000px;}
.w10{width:678.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:6.300000px;}
.x3{left:8.100000px;}
.x5{left:16.380000px;}
.x7{left:25.230000px;}
.x6{left:27.750000px;}
.x1a{left:34.740000px;}
.x35{left:48.594000px;}
.x1b{left:61.740000px;}
.x30{left:70.734000px;}
.x2{left:74.340000px;}
.x34{left:90.894000px;}
.x29{left:93.234000px;}
.x32{left:97.734000px;}
.x16{left:99.894000px;}
.x1{left:106.415987px;}
.xd{left:109.836000px;}
.x9{left:112.350000px;}
.x14{left:115.055987px;}
.xb{left:117.036000px;}
.x13{left:122.975987px;}
.xa{left:132.690000px;}
.x8{left:136.830000px;}
.x1c{left:160.770000px;}
.x33{left:167.394000px;}
.x10{left:183.810000px;}
.x1d{left:187.409987px;}
.x26{left:204.869987px;}
.x20{left:214.409987px;}
.x1e{left:231.150000px;}
.x2b{left:232.779000px;}
.x12{left:241.050000px;}
.x31{left:243.939000px;}
.x15{left:276.330000px;}
.x2d{left:278.139000px;}
.x2c{left:280.479000px;}
.x2f{left:296.139000px;}
.xc{left:297.795000px;}
.x2e{left:304.779000px;}
.x18{left:311.475000px;}
.x1f{left:319.035000px;}
.x2a{left:325.839000px;}
.x22{left:332.354987px;}
.x4{left:446.655000px;}
.x27{left:452.595000px;}
.x21{left:511.844987px;}
.x28{left:578.265000px;}
.x11{left:599.505000px;}
.x19{left:605.265000px;}
.x24{left:651.344987px;}
.x23{left:726.989987px;}
.x36{left:732.389987px;}
.x25{left:763.889987px;}
.x17{left:783.689987px;}
.xf{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-1.936000pt;}
.ls13{letter-spacing:-1.888000pt;}
.ls16{letter-spacing:-1.008000pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls1f{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.158933pt;}
.lse{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.030720pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271360pt;}
.lsa{letter-spacing:0.271467pt;}
.ls12{letter-spacing:5.136640pt;}
.ls1e{letter-spacing:24.336640pt;}
.ls1d{letter-spacing:44.431360pt;}
.ls1c{letter-spacing:52.730027pt;}
.ls19{letter-spacing:52.751360pt;}
.ls10{letter-spacing:54.016000pt;}
.ls11{letter-spacing:84.736000pt;}
.ls1{letter-spacing:751.770027pt;}
.ws15{word-spacing:-58.880000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws16{word-spacing:-35.328000pt;}
.ws1{word-spacing:-23.663360pt;}
.ws10{word-spacing:-21.775360pt;}
.ws0{word-spacing:-21.727360pt;}
.ws18{word-spacing:-19.184640pt;}
.ws2{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.080320pt;}
.wse{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.465707pt;}
.ws3{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.233173pt;}
.wsb{word-spacing:-16.135573pt;}
.ws5{word-spacing:-16.097173pt;}
.ws19{word-spacing:-15.961707pt;}
.ws4{word-spacing:-15.632640pt;}
.ws14{word-spacing:-14.814720pt;}
.ws17{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.672427pt;}
.ws13{word-spacing:-13.536000pt;}
.wsa{word-spacing:-13.328000pt;}
.wsc{word-spacing:-10.160427pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-15.703680pt;}
._11{margin-left:-14.252160pt;}
._c{margin-left:-12.935040pt;}
._e{margin-left:-11.429547pt;}
._12{margin-left:-9.698773pt;}
._a{margin-left:-8.512000pt;}
._d{margin-left:-6.742400pt;}
._10{margin-left:-5.339307pt;}
._b{margin-left:-4.154027pt;}
._2{margin-left:-2.674347pt;}
._1{margin-left:-1.326293pt;}
._3{width:0.967680pt;}
._8{width:2.355840pt;}
._19{width:3.646720pt;}
._15{width:4.651520pt;}
._16{width:5.932587pt;}
._1c{width:7.272107pt;}
._17{width:8.243200pt;}
._18{width:9.779840pt;}
._1d{width:11.097813pt;}
._6{width:12.058240pt;}
._7{width:13.002880pt;}
._14{width:14.425600pt;}
._1a{width:15.454720pt;}
._1b{width:17.669973pt;}
._23{width:18.719787pt;}
._26{width:19.979947pt;}
._27{width:21.312000pt;}
._1f{width:22.496213pt;}
._1e{width:23.522987pt;}
._21{width:26.849280pt;}
._20{width:27.822293pt;}
._4{width:30.146560pt;}
._5{width:31.178453pt;}
._25{width:44.303360pt;}
._24{width:52.525227pt;}
._22{width:56.797440pt;}
._9{width:99.757653pt;}
._f{width:751.770027pt;}
._0{width:1196.394667pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:3.040000pt;}
.y68{bottom:3.200000pt;}
.y7c{bottom:3.520000pt;}
.y112{bottom:5.920000pt;}
.y186{bottom:6.400000pt;}
.yc{bottom:11.040000pt;}
.y234{bottom:11.194667pt;}
.y1fa{bottom:11.200000pt;}
.y200{bottom:11.360000pt;}
.y24d{bottom:11.400000pt;}
.y1f3{bottom:11.520000pt;}
.y1f7{bottom:12.160000pt;}
.y129{bottom:13.760000pt;}
.yd8{bottom:13.920000pt;}
.y19b{bottom:13.946667pt;}
.y169{bottom:13.960000pt;}
.y21d{bottom:14.394667pt;}
.y10{bottom:14.400000pt;}
.y1b{bottom:14.426667pt;}
.y2e{bottom:14.440000pt;}
.y12{bottom:14.560000pt;}
.y36{bottom:14.586667pt;}
.y213{bottom:14.600000pt;}
.y18{bottom:14.720000pt;}
.y259{bottom:15.200000pt;}
.y17{bottom:15.360000pt;}
.y7f{bottom:16.160000pt;}
.y227{bottom:17.000000pt;}
.y6f{bottom:19.840000pt;}
.y67{bottom:20.000000pt;}
.y20{bottom:24.960000pt;}
.y111{bottom:25.120000pt;}
.y1fe{bottom:25.280000pt;}
.y185{bottom:26.720000pt;}
.y27c{bottom:27.360000pt;}
.y205{bottom:32.160000pt;}
.y14b{bottom:32.320000pt;}
.y168{bottom:32.360000pt;}
.yf9{bottom:33.120000pt;}
.y225{bottom:34.560000pt;}
.y21c{bottom:34.714667pt;}
.y2c{bottom:34.720000pt;}
.y209{bottom:34.746667pt;}
.yf{bottom:34.760000pt;}
.y258{bottom:35.360000pt;}
.y75{bottom:36.960000pt;}
.y243{bottom:38.600000pt;}
.y1f5{bottom:40.000000pt;}
.y143{bottom:40.320000pt;}
.y24e{bottom:41.640000pt;}
.y99{bottom:42.120000pt;}
.y1a{bottom:42.746667pt;}
.y255{bottom:43.040000pt;}
.y1f{bottom:43.360000pt;}
.y110{bottom:44.474667pt;}
.y6e{bottom:44.800000pt;}
.y1fd{bottom:45.600000pt;}
.y207{bottom:46.586667pt;}
.y184{bottom:47.040000pt;}
.yb{bottom:49.760000pt;}
.y174{bottom:50.720000pt;}
.y167{bottom:50.760000pt;}
.y21f{bottom:51.520000pt;}
.y215{bottom:51.834667pt;}
.y204{bottom:52.320000pt;}
.yf8{bottom:52.480000pt;}
.y74{bottom:53.760000pt;}
.y21b{bottom:54.874667pt;}
.y1f8{bottom:54.880000pt;}
.y1b3{bottom:54.920000pt;}
.y23e{bottom:55.040000pt;}
.y208{bottom:55.066667pt;}
.y212{bottom:55.080000pt;}
.y257{bottom:55.680000pt;}
.y20b{bottom:56.360000pt;}
.y23c{bottom:56.480000pt;}
.y146{bottom:58.720000pt;}
.y1f4{bottom:60.320000pt;}
.y3{bottom:60.480000pt;}
.y24b{bottom:61.120000pt;}
.y1e{bottom:61.760000pt;}
.y254{bottom:63.360000pt;}
.y10f{bottom:63.674667pt;}
.y240{bottom:65.440000pt;}
.y1fc{bottom:65.760000pt;}
.y142{bottom:66.720000pt;}
.y183{bottom:67.360000pt;}
.y173{bottom:69.120000pt;}
.y166{bottom:69.160000pt;}
.y6d{bottom:69.800000pt;}
.y128{bottom:71.680000pt;}
.y119{bottom:71.706667pt;}
.yf7{bottom:71.840000pt;}
.y203{bottom:72.640000pt;}
.y224{bottom:75.040000pt;}
.y21a{bottom:75.194667pt;}
.y242{bottom:75.200000pt;}
.y23d{bottom:75.226667pt;}
.y211{bottom:75.240000pt;}
.y14a{bottom:77.120000pt;}
.y73{bottom:78.720000pt;}
.y1d{bottom:80.160000pt;}
.y24a{bottom:81.440000pt;}
.y10e{bottom:83.034667pt;}
.y253{bottom:83.546667pt;}
.y145{bottom:85.120000pt;}
.y24{bottom:85.152000pt;}
.y1fb{bottom:85.960000pt;}
.ya{bottom:86.560000pt;}
.y172{bottom:87.520000pt;}
.y165{bottom:87.560000pt;}
.y182{bottom:87.680000pt;}
.y251{bottom:87.840000pt;}
.yf6{bottom:91.040000pt;}
.y202{bottom:92.800000pt;}
.y6c{bottom:94.760000pt;}
.y219{bottom:95.354667pt;}
.y223{bottom:95.360000pt;}
.y72{bottom:95.520000pt;}
.y210{bottom:95.560000pt;}
.yff{bottom:97.632000pt;}
.y27b{bottom:99.552000pt;}
.y1ab{bottom:100.672000pt;}
.y249{bottom:101.600000pt;}
.y10d{bottom:102.394667pt;}
.y149{bottom:103.520000pt;}
.y171{bottom:105.920000pt;}
.y181{bottom:108.000000pt;}
.y250{bottom:108.160000pt;}
.y127{bottom:110.240000pt;}
.yf5{bottom:110.400000pt;}
.y9{bottom:111.040000pt;}
.y1e8{bottom:112.672000pt;}
.y201{bottom:113.120000pt;}
.yba{bottom:113.632000pt;}
.y267{bottom:114.752000pt;}
.y222{bottom:115.520000pt;}
.y218{bottom:115.674667pt;}
.y241{bottom:115.680000pt;}
.y20f{bottom:115.720000pt;}
.y1ca{bottom:116.192000pt;}
.y6b{bottom:119.560000pt;}
.y214{bottom:120.672000pt;}
.y1aa{bottom:120.832000pt;}
.y10c{bottom:121.594667pt;}
.y232{bottom:124.032000pt;}
.y170{bottom:124.320000pt;}
.y6{bottom:126.080000pt;}
.y180{bottom:128.360000pt;}
.yf4{bottom:129.600000pt;}
.y117{bottom:129.754667pt;}
.yd5{bottom:130.752000pt;}
.y23{bottom:132.352000pt;}
.yb9{bottom:133.946667pt;}
.y8{bottom:135.680000pt;}
.y217{bottom:135.834667pt;}
.y221{bottom:135.840000pt;}
.y20e{bottom:135.880000pt;}
.y1c9{bottom:137.466667pt;}
.y1e7{bottom:139.866667pt;}
.y10b{bottom:140.954667pt;}
.y1a9{bottom:141.146667pt;}
.y188{bottom:141.946667pt;}
.y16f{bottom:142.720000pt;}
.y116{bottom:148.154667pt;}
.y266{bottom:148.186667pt;}
.y17f{bottom:148.680000pt;}
.yf3{bottom:148.986667pt;}
.y126{bottom:149.000000pt;}
.y15e{bottom:152.186667pt;}
.yb8{bottom:154.106667pt;}
.y5{bottom:154.400000pt;}
.y220{bottom:156.026667pt;}
.y216{bottom:156.154667pt;}
.y12d{bottom:156.200000pt;}
.y1c8{bottom:157.626667pt;}
.yd4{bottom:158.906667pt;}
.y10a{bottom:160.154667pt;}
.y7{bottom:160.160000pt;}
.y16e{bottom:161.120000pt;}
.y1e6{bottom:162.266667pt;}
.y42{bottom:162.906667pt;}
.y22{bottom:163.706667pt;}
.y115{bottom:166.554667pt;}
.y125{bottom:168.200000pt;}
.yf2{bottom:168.346667pt;}
.y17e{bottom:169.000000pt;}
.y1a8{bottom:169.306667pt;}
.y187{bottom:170.106667pt;}
.y24f{bottom:170.266667pt;}
.y265{bottom:170.746667pt;}
.y27a{bottom:172.666667pt;}
.yb7{bottom:174.426667pt;}
.y12c{bottom:174.600000pt;}
.y20d{bottom:176.360000pt;}
.yd3{bottom:179.226667pt;}
.y109{bottom:179.514667pt;}
.y16d{bottom:179.520000pt;}
.y15d{bottom:180.346667pt;}
.y23a{bottom:184.034667pt;}
.y177{bottom:184.506667pt;}
.y114{bottom:184.954667pt;}
.y231{bottom:186.266667pt;}
.y1c7{bottom:186.906667pt;}
.yf1{bottom:187.546667pt;}
.y124{bottom:187.560000pt;}
.y17d{bottom:189.320000pt;}
.y1a7{bottom:189.626667pt;}
.y279{bottom:192.986667pt;}
.y12b{bottom:193.000000pt;}
.yb6{bottom:194.586667pt;}
.y20c{bottom:196.680000pt;}
.y41{bottom:197.466667pt;}
.y16c{bottom:197.920000pt;}
.y108{bottom:198.874667pt;}
.yd2{bottom:199.386667pt;}
.y13f{bottom:202.106667pt;}
.y113{bottom:203.394667pt;}
.y239{bottom:204.194667pt;}
.y230{bottom:206.426667pt;}
.y123{bottom:206.760000pt;}
.yf0{bottom:206.906667pt;}
.y1c6{bottom:207.226667pt;}
.y15c{bottom:208.506667pt;}
.y17c{bottom:209.640000pt;}
.y40{bottom:211.226667pt;}
.y12a{bottom:211.400000pt;}
.y278{bottom:213.146667pt;}
.yb5{bottom:214.746667pt;}
.y1a6{bottom:214.906667pt;}
.y16b{bottom:216.320000pt;}
.y247{bottom:217.306667pt;}
.y107{bottom:218.114667pt;}
.yd1{bottom:219.706667pt;}
.y103{bottom:221.794667pt;}
.y238{bottom:224.514667pt;}
.y122{bottom:226.120000pt;}
.yef{bottom:226.266667pt;}
.y22f{bottom:226.746667pt;}
.y1c5{bottom:227.386667pt;}
.y13e{bottom:227.866667pt;}
.y15b{bottom:229.626667pt;}
.y11e{bottom:229.800000pt;}
.y17b{bottom:229.960000pt;}
.y277{bottom:233.466667pt;}
.y246{bottom:237.466667pt;}
.y106{bottom:237.474667pt;}
.y102{bottom:240.194667pt;}
.yb4{bottom:243.066667pt;}
.y3f{bottom:243.386667pt;}
.y237{bottom:244.674667pt;}
.yee{bottom:245.466667pt;}
.y121{bottom:245.480000pt;}
.y22e{bottom:246.906667pt;}
.y1c4{bottom:247.706667pt;}
.yd0{bottom:247.866667pt;}
.y11d{bottom:248.200000pt;}
.y17a{bottom:250.280000pt;}
.y15a{bottom:250.906667pt;}
.y276{bottom:253.626667pt;}
.y1a5{bottom:253.786667pt;}
.y13d{bottom:256.026667pt;}
.y105{bottom:256.674667pt;}
.y245{bottom:257.786667pt;}
.y101{bottom:258.594667pt;}
.y233{bottom:260.834667pt;}
.yb3{bottom:263.226667pt;}
.y120{bottom:264.680000pt;}
.yed{bottom:264.826667pt;}
.y236{bottom:264.834667pt;}
.y9a{bottom:265.466667pt;}
.y11c{bottom:266.600000pt;}
.y22d{bottom:267.226667pt;}
.y179{bottom:270.600000pt;}
.y159{bottom:272.346667pt;}
.y1c3{bottom:272.986667pt;}
.ycf{bottom:275.066667pt;}
.y3e{bottom:275.706667pt;}
.y104{bottom:276.034667pt;}
.y100{bottom:276.994667pt;}
.y275{bottom:281.786667pt;}
.y1a4{bottom:281.946667pt;}
.yb2{bottom:283.546667pt;}
.yec{bottom:284.026667pt;}
.y11f{bottom:284.040000pt;}
.y13c{bottom:284.346667pt;}
.y11b{bottom:285.000000pt;}
.y235{bottom:285.154667pt;}
.y98{bottom:286.106667pt;}
.y22c{bottom:287.386667pt;}
.y178{bottom:290.920000pt;}
.y20a{bottom:291.226667pt;}
.y158{bottom:292.506667pt;}
.y24c{bottom:292.826667pt;}
.y1ef{bottom:295.226667pt;}
.yce{bottom:297.626667pt;}
.y1a3{bottom:302.146667pt;}
.y1de{bottom:302.946667pt;}
.y274{bottom:303.266667pt;}
.yeb{bottom:303.386667pt;}
.yb1{bottom:303.746667pt;}
.y229{bottom:306.746667pt;}
.y22b{bottom:307.706667pt;}
.y3d{bottom:307.906667pt;}
.y1c2{bottom:311.906667pt;}
.y13b{bottom:312.546667pt;}
.y157{bottom:312.866667pt;}
.y1ee{bottom:321.026667pt;}
.y81{bottom:322.306667pt;}
.y1a2{bottom:322.466667pt;}
.yea{bottom:322.746667pt;}
.y1dd{bottom:323.266667pt;}
.yb0{bottom:324.066667pt;}
.y22a{bottom:327.866667pt;}
.y156{bottom:333.026667pt;}
.y1c1{bottom:340.066667pt;}
.y3c{bottom:340.226667pt;}
.y13a{bottom:340.866667pt;}
.ye9{bottom:341.946667pt;}
.y1a1{bottom:342.626667pt;}
.y1dc{bottom:343.426667pt;}
.yaf{bottom:344.226667pt;}
.y273{bottom:344.706667pt;}
.y248{bottom:348.866667pt;}
.y1ed{bottom:349.186667pt;}
.y80{bottom:350.626667pt;}
.y155{bottom:353.346667pt;}
.y1c0{bottom:360.386667pt;}
.ye8{bottom:361.306667pt;}
.y1db{bottom:363.746667pt;}
.y272{bottom:364.706667pt;}
.y7e{bottom:365.666667pt;}
.y139{bottom:369.026667pt;}
.y1a0{bottom:370.946667pt;}
.y3b{bottom:372.386667pt;}
.y154{bottom:373.506667pt;}
.yae{bottom:374.786667pt;}
.y1ec{bottom:377.506667pt;}
.ye7{bottom:380.506667pt;}
.y1bf{bottom:380.546667pt;}
.y19f{bottom:385.346667pt;}
.y271{bottom:385.986667pt;}
.yd9{bottom:387.746667pt;}
.y97{bottom:388.546667pt;}
.y138{bottom:389.346667pt;}
.y1da{bottom:391.906667pt;}
.y153{bottom:393.666667pt;}
.ye6{bottom:399.906667pt;}
.y1be{bottom:400.866667pt;}
.y7d{bottom:403.746667pt;}
.y21{bottom:404.226667pt;}
.y1eb{bottom:404.546667pt;}
.y3a{bottom:404.706667pt;}
.y270{bottom:407.266667pt;}
.yad{bottom:409.346667pt;}
.y137{bottom:409.506667pt;}
.y152{bottom:413.986667pt;}
.y96{bottom:416.706667pt;}
.y1d9{bottom:419.106667pt;}
.ye5{bottom:419.266667pt;}
.y1c{bottom:421.026667pt;}
.y228{bottom:423.586667pt;}
.yfe{bottom:426.466667pt;}
.y1ea{bottom:427.106667pt;}
.y26f{bottom:428.386667pt;}
.y7b{bottom:428.706667pt;}
.y136{bottom:429.826667pt;}
.y19e{bottom:430.786667pt;}
.y151{bottom:434.146667pt;}
.y39{bottom:436.866667pt;}
.y95{bottom:437.026667pt;}
.yac{bottom:437.506667pt;}
.ye4{bottom:438.466667pt;}
.y1bd{bottom:441.346667pt;}
.y1d8{bottom:441.506667pt;}
.yfd{bottom:444.866667pt;}
.y135{bottom:449.986667pt;}
.y7a{bottom:454.146667pt;}
.y150{bottom:454.306667pt;}
.y94{bottom:457.186667pt;}
.yab{bottom:457.826667pt;}
.y1bc{bottom:461.506667pt;}
.yfc{bottom:463.266667pt;}
.y55{bottom:464.066667pt;}
.y244{bottom:464.866667pt;}
.y38{bottom:469.026667pt;}
.y134{bottom:474.306667pt;}
.y14f{bottom:475.586667pt;}
.y19d{bottom:476.226667pt;}
.ye3{bottom:477.026667pt;}
.y93{bottom:477.506667pt;}
.yaa{bottom:477.986667pt;}
.yfb{bottom:481.666667pt;}
.y1bb{bottom:481.826667pt;}
.y54{bottom:492.226667pt;}
.y79{bottom:495.906667pt;}
.ye2{bottom:496.386667pt;}
.y92{bottom:497.666667pt;}
.ya9{bottom:498.306667pt;}
.yfa{bottom:500.066667pt;}
.y37{bottom:501.346667pt;}
.y286{bottom:501.986667pt;}
.y206{bottom:502.306667pt;}
.y176{bottom:503.266667pt;}
.y19c{bottom:503.426667pt;}
.y14e{bottom:504.866667pt;}
.y133{bottom:510.466667pt;}
.y1ba{bottom:512.386667pt;}
.ye1{bottom:514.786667pt;}
.y91{bottom:517.986667pt;}
.ydd{bottom:518.466667pt;}
.y53{bottom:520.546667pt;}
.y78{bottom:520.866667pt;}
.ya8{bottom:526.466667pt;}
.y175{bottom:529.026667pt;}
.y14d{bottom:529.186667pt;}
.y285{bottom:530.306667pt;}
.y19a{bottom:530.466667pt;}
.y19{bottom:532.706667pt;}
.y35{bottom:533.506667pt;}
.ye0{bottom:534.146667pt;}
.ydc{bottom:536.866667pt;}
.y90{bottom:538.173333pt;}
.y132{bottom:538.813333pt;}
.y16a{bottom:543.453333pt;}
.y77{bottom:545.853333pt;}
.ya7{bottom:546.813333pt;}
.y52{bottom:548.733333pt;}
.y284{bottom:550.493333pt;}
.ydf{bottom:553.346667pt;}
.ydb{bottom:555.266667pt;}
.y199{bottom:557.533333pt;}
.y8f{bottom:558.493333pt;}
.y131{bottom:558.973333pt;}
.y1b9{bottom:561.213333pt;}
.y14c{bottom:565.373333pt;}
.ya6{bottom:566.973333pt;}
.ycd{bottom:568.093333pt;}
.y76{bottom:570.813333pt;}
.y1ff{bottom:571.773333pt;}
.yde{bottom:572.706667pt;}
.yda{bottom:573.666667pt;}
.y51{bottom:577.053333pt;}
.y8e{bottom:578.653333pt;}
.y130{bottom:579.293333pt;}
.y148{bottom:579.773333pt;}
.y264{bottom:581.213333pt;}
.y34{bottom:582.653333pt;}
.y198{bottom:584.573333pt;}
.ya5{bottom:587.293333pt;}
.y283{bottom:590.973333pt;}
.y16{bottom:593.213333pt;}
.y71{bottom:595.613333pt;}
.ycc{bottom:596.413333pt;}
.y8d{bottom:598.973333pt;}
.y12f{bottom:599.453333pt;}
.y263{bottom:601.533333pt;}
.y50{bottom:605.213333pt;}
.y1e5{bottom:606.973333pt;}
.y26e{bottom:607.453333pt;}
.y1b8{bottom:610.493333pt;}
.y282{bottom:611.293333pt;}
.y197{bottom:611.613333pt;}
.ya4{bottom:615.453333pt;}
.ycb{bottom:616.573333pt;}
.y33{bottom:617.053333pt;}
.y8c{bottom:619.133333pt;}
.y262{bottom:621.693333pt;}
.y15{bottom:626.333333pt;}
.y12e{bottom:627.773333pt;}
.y281{bottom:631.453333pt;}
.y4f{bottom:633.533333pt;}
.y1e4{bottom:635.133333pt;}
.ya3{bottom:635.773333pt;}
.yca{bottom:636.893333pt;}
.y1b7{bottom:639.293333pt;}
.y8b{bottom:639.453333pt;}
.y11a{bottom:642.173333pt;}
.y32{bottom:645.373333pt;}
.y26d{bottom:647.933333pt;}
.y261{bottom:650.013333pt;}
.y280{bottom:651.773333pt;}
.y1e3{bottom:655.453333pt;}
.ya2{bottom:655.933333pt;}
.yc9{bottom:657.053333pt;}
.y14{bottom:658.493333pt;}
.y31{bottom:659.773333pt;}
.y4e{bottom:661.693333pt;}
.y1b6{bottom:668.253333pt;}
.y8a{bottom:670.013333pt;}
.y260{bottom:670.173333pt;}
.y27f{bottom:671.933333pt;}
.ya1{bottom:676.253333pt;}
.yc8{bottom:677.373333pt;}
.y1e2{bottom:686.013333pt;}
.y63{bottom:687.933333pt;}
.y30{bottom:688.733333pt;}
.y4d{bottom:690.013333pt;}
.y25f{bottom:690.493333pt;}
.y13{bottom:690.813333pt;}
.y27e{bottom:692.253333pt;}
.y196{bottom:693.853333pt;}
.y26c{bottom:696.413333pt;}
.y1b5{bottom:697.053333pt;}
.yc7{bottom:697.533333pt;}
.y1f9{bottom:699.293333pt;}
.y147{bottom:700.573333pt;}
.y89{bottom:704.413333pt;}
.y62{bottom:708.093333pt;}
.y27d{bottom:712.413333pt;}
.y6a{bottom:713.053333pt;}
.y25e{bottom:715.773333pt;}
.y26b{bottom:716.733333pt;}
.y1d7{bottom:716.893333pt;}
.y4c{bottom:718.173333pt;}
.y1e1{bottom:720.413333pt;}
.y195{bottom:720.893333pt;}
.yc6{bottom:721.853333pt;}
.y11{bottom:722.973333pt;}
.ya0{bottom:724.733333pt;}
.y1b4{bottom:726.013333pt;}
.y61{bottom:728.413333pt;}
.y88{bottom:732.733333pt;}
.y26a{bottom:736.893333pt;}
.y1d6{bottom:737.053333pt;}
.y2f{bottom:737.853333pt;}
.y9f{bottom:744.893333pt;}
.y4b{bottom:746.493333pt;}
.y1e0{bottom:747.613333pt;}
.y194{bottom:748.093333pt;}
.y60{bottom:748.573333pt;}
.y87{bottom:752.893333pt;}
.y25d{bottom:754.653333pt;}
.y1b2{bottom:754.973333pt;}
.ye{bottom:755.293333pt;}
.y1d5{bottom:757.213333pt;}
.yc5{bottom:758.013333pt;}
.y9e{bottom:765.213333pt;}
.y226{bottom:765.853333pt;}
.y2d{bottom:766.813333pt;}
.y5f{bottom:768.893333pt;}
.y1df{bottom:770.173333pt;}
.y164{bottom:772.893333pt;}
.y86{bottom:773.213333pt;}
.y4a{bottom:774.693333pt;}
.y193{bottom:775.173333pt;}
.yc4{bottom:778.373333pt;}
.y1d4{bottom:778.533333pt;}
.y25c{bottom:782.853333pt;}
.y144{bottom:784.453333pt;}
.y9d{bottom:785.413333pt;}
.y5e{bottom:789.093333pt;}
.y85{bottom:793.413333pt;}
.y2b{bottom:795.653333pt;}
.yc3{bottom:798.533333pt;}
.y1d3{bottom:799.653333pt;}
.y1f6{bottom:799.813333pt;}
.y49{bottom:803.013333pt;}
.y9c{bottom:805.733333pt;}
.y23f{bottom:806.373333pt;}
.y25b{bottom:808.293333pt;}
.y5d{bottom:809.413333pt;}
.y84{bottom:813.733333pt;}
.y192{bottom:815.493333pt;}
.yc2{bottom:818.853333pt;}
.y1d2{bottom:821.093333pt;}
.yd{bottom:822.213333pt;}
.y1b1{bottom:824.293333pt;}
.y9b{bottom:825.893333pt;}
.y191{bottom:829.413333pt;}
.y48{bottom:831.173333pt;}
.y83{bottom:833.893333pt;}
.y4{bottom:839.013333pt;}
.y5c{bottom:839.973333pt;}
.y1d1{bottom:841.093333pt;}
.y25a{bottom:843.653333pt;}
.y2a{bottom:844.773333pt;}
.y269{bottom:846.213333pt;}
.y1b0{bottom:853.253333pt;}
.y82{bottom:854.213333pt;}
.y69{bottom:854.533333pt;}
.y190{bottom:855.013333pt;}
.y21e{bottom:855.653333pt;}
.y256{bottom:858.053333pt;}
.yc1{bottom:859.333333pt;}
.y47{bottom:859.493333pt;}
.y268{bottom:866.373333pt;}
.y1f2{bottom:869.093333pt;}
.y1d0{bottom:870.533333pt;}
.y163{bottom:873.573333pt;}
.y29{bottom:873.733333pt;}
.y5b{bottom:874.373333pt;}
.y18f{bottom:875.333333pt;}
.y1af{bottom:882.213333pt;}
.yc0{bottom:884.613333pt;}
.y141{bottom:886.693333pt;}
.y46{bottom:887.653333pt;}
.y5a{bottom:894.693333pt;}
.y18e{bottom:895.493333pt;}
.y1cf{bottom:895.813333pt;}
.y66{bottom:896.293333pt;}
.y28{bottom:902.693333pt;}
.y162{bottom:914.053333pt;}
.y59{bottom:914.853333pt;}
.y18d{bottom:915.813333pt;}
.y45{bottom:915.973333pt;}
.ybf{bottom:923.493333pt;}
.y1ae{bottom:924.453333pt;}
.y252{bottom:928.133333pt;}
.y27{bottom:931.493333pt;}
.y1ce{bottom:934.693333pt;}
.y58{bottom:935.173333pt;}
.y18c{bottom:935.973333pt;}
.y23b{bottom:936.453333pt;}
.y1ad{bottom:938.213333pt;}
.y161{bottom:939.653333pt;}
.y118{bottom:940.293333pt;}
.y65{bottom:942.533333pt;}
.y1e9{bottom:943.653333pt;}
.y1f1{bottom:943.813333pt;}
.y44{bottom:944.133333pt;}
.ybe{bottom:951.653333pt;}
.y57{bottom:955.333333pt;}
.y26{bottom:960.453333pt;}
.y1cd{bottom:962.853333pt;}
.y1ac{bottom:963.973333pt;}
.y18b{bottom:964.293333pt;}
.y64{bottom:967.493333pt;}
.y160{bottom:967.973333pt;}
.y140{bottom:970.533333pt;}
.ybd{bottom:971.973333pt;}
.y1f0{bottom:972.613333pt;}
.y43{bottom:974.213333pt;}
.yd7{bottom:974.533333pt;}
.y56{bottom:975.653333pt;}
.y18a{bottom:984.453333pt;}
.y15f{bottom:988.133333pt;}
.y1cc{bottom:991.173333pt;}
.ybc{bottom:992.133333pt;}
.y25{bottom:1006.213333pt;}
.y189{bottom:1009.893333pt;}
.y1cb{bottom:1011.360000pt;}
.ybb{bottom:1012.480000pt;}
.yd6{bottom:1015.040000pt;}
.y2{bottom:1039.520000pt;}
.y1{bottom:1064.160000pt;}
.h1e{height:24.800000pt;}
.h1f{height:24.960000pt;}
.h20{height:24.992000pt;}
.h21{height:25.440000pt;}
.h26{height:26.400000pt;}
.h35{height:26.432000pt;}
.h11{height:28.160000pt;}
.h14{height:28.192000pt;}
.h12{height:28.320000pt;}
.h2c{height:30.400000pt;}
.hb{height:32.160000pt;}
.h17{height:32.192000pt;}
.ha{height:32.320000pt;}
.h16{height:32.352000pt;}
.h34{height:32.554688pt;}
.hd{height:33.120000pt;}
.h22{height:38.080000pt;}
.h27{height:39.943750pt;}
.h25{height:41.203125pt;}
.h1b{height:41.760000pt;}
.h1a{height:41.920000pt;}
.h2{height:43.054688pt;}
.h24{height:44.246250pt;}
.h9{height:44.275000pt;}
.h37{height:44.800000pt;}
.h10{height:47.647188pt;}
.h7{height:48.125000pt;}
.h13{height:48.480000pt;}
.h6{height:51.975000pt;}
.h8{height:52.512000pt;}
.h4{height:52.813750pt;}
.h15{height:54.415625pt;}
.hc{height:55.110000pt;}
.h47{height:55.392000pt;}
.h4b{height:58.080000pt;}
.he{height:60.512000pt;}
.h19{height:63.656250pt;}
.h5{height:64.006250pt;}
.h3a{height:68.640000pt;}
.h38{height:68.672000pt;}
.h3d{height:68.832000pt;}
.h4a{height:69.440000pt;}
.h39{height:74.080000pt;}
.h18{height:76.350312pt;}
.h36{height:81.600000pt;}
.h2d{height:83.200000pt;}
.h2f{height:83.232000pt;}
.h2a{height:85.152000pt;}
.h23{height:87.232000pt;}
.h41{height:88.992000pt;}
.h49{height:97.312000pt;}
.h3b{height:99.712000pt;}
.h31{height:100.032000pt;}
.h2e{height:101.600000pt;}
.hf{height:108.640000pt;}
.h46{height:115.360000pt;}
.h1d{height:117.440000pt;}
.h30{height:120.000000pt;}
.h48{height:121.920000pt;}
.h3c{height:126.880000pt;}
.h44{height:129.440000pt;}
.h1c{height:141.466667pt;}
.h40{height:169.786667pt;}
.h3f{height:169.920000pt;}
.h3{height:184.186667pt;}
.h3e{height:210.426667pt;}
.h32{height:228.800000pt;}
.h45{height:271.546667pt;}
.h29{height:289.466667pt;}
.h2b{height:297.466667pt;}
.h43{height:298.906667pt;}
.h33{height:304.826667pt;}
.h42{height:341.626667pt;}
.h28{height:586.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:47.040000pt;}
.w8{width:67.520000pt;}
.w14{width:67.680000pt;}
.w11{width:68.000000pt;}
.w9{width:100.192000pt;}
.w1c{width:109.920000pt;}
.w1a{width:110.240000pt;}
.w2a{width:111.072000pt;}
.w27{width:111.712000pt;}
.w15{width:112.832000pt;}
.w12{width:113.632000pt;}
.wc{width:119.680000pt;}
.we{width:151.360000pt;}
.w17{width:160.346667pt;}
.w5{width:160.666667pt;}
.w2b{width:184.346667pt;}
.w28{width:184.666667pt;}
.wb{width:185.146667pt;}
.w24{width:188.026667pt;}
.w22{width:188.346667pt;}
.w16{width:260.506667pt;}
.w13{width:261.146667pt;}
.wa{width:267.866667pt;}
.w20{width:301.306667pt;}
.w21{width:301.506667pt;}
.w1e{width:301.626667pt;}
.w1f{width:301.826667pt;}
.w29{width:306.746667pt;}
.w26{width:307.066667pt;}
.w4{width:321.346667pt;}
.w3{width:330.946667pt;}
.w25{width:414.786667pt;}
.w23{width:415.106667pt;}
.wf{width:453.053333pt;}
.w6{width:453.346667pt;}
.wd{width:484.413333pt;}
.w1d{width:492.893333pt;}
.w1b{width:493.213333pt;}
.w19{width:555.773333pt;}
.w7{width:596.733333pt;}
.w10{width:603.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:5.600000pt;}
.x3{left:7.200000pt;}
.x5{left:14.560000pt;}
.x7{left:22.426667pt;}
.x6{left:24.666667pt;}
.x1a{left:30.880000pt;}
.x35{left:43.194667pt;}
.x1b{left:54.880000pt;}
.x30{left:62.874667pt;}
.x2{left:66.080000pt;}
.x34{left:80.794667pt;}
.x29{left:82.874667pt;}
.x32{left:86.874667pt;}
.x16{left:88.794667pt;}
.x1{left:94.591988pt;}
.xd{left:97.632000pt;}
.x9{left:99.866667pt;}
.x14{left:102.271988pt;}
.xb{left:104.032000pt;}
.x13{left:109.311988pt;}
.xa{left:117.946667pt;}
.x8{left:121.626667pt;}
.x1c{left:142.906667pt;}
.x33{left:148.794667pt;}
.x10{left:163.386667pt;}
.x1d{left:166.586655pt;}
.x26{left:182.106655pt;}
.x20{left:190.586655pt;}
.x1e{left:205.466667pt;}
.x2b{left:206.914667pt;}
.x12{left:214.266667pt;}
.x31{left:216.834667pt;}
.x15{left:245.626667pt;}
.x2d{left:247.234667pt;}
.x2c{left:249.314667pt;}
.x2f{left:263.234667pt;}
.xc{left:264.706667pt;}
.x2e{left:270.914667pt;}
.x18{left:276.866667pt;}
.x1f{left:283.586667pt;}
.x2a{left:289.634667pt;}
.x22{left:295.426655pt;}
.x4{left:397.026667pt;}
.x27{left:402.306667pt;}
.x21{left:454.973322pt;}
.x28{left:514.013333pt;}
.x11{left:532.893333pt;}
.x19{left:538.013333pt;}
.x24{left:578.973322pt;}
.x23{left:646.213322pt;}
.x36{left:651.013322pt;}
.x25{left:679.013322pt;}
.x17{left:696.613322pt;}
.xf{left:699.333322pt;}
}




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