
    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_abc36a85cb98273da235d032.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_eb103a3cb334c1f18d079ac2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9cc4f7b6b604d2d01dc8b517.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_dd643eea2f3352843777e64e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d72a84ee1f9b6f58b9cc1b2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c4a1a6f44cb8bbc93b0ba28b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d005a0cad4f6185683c1c44e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_647220881b9c156731dc9b46.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.879995px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v6{vertical-align:20.879995px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000421px;}
.lse{letter-spacing:0.009320px;}
.ls1{letter-spacing:0.036842px;}
.ls4{letter-spacing:0.202703px;}
.ls0{letter-spacing:0.202842px;}
.ls6{letter-spacing:0.202977px;}
.ls2{letter-spacing:0.208282px;}
.ls3{letter-spacing:0.374366px;}
.ls5{letter-spacing:0.922860px;}
.ls14{letter-spacing:3.637874px;}
.ls15{letter-spacing:3.637941px;}
.ls11{letter-spacing:7.598819px;}
.lsc{letter-spacing:16.597824px;}
.lsd{letter-spacing:16.597896px;}
.ls13{letter-spacing:33.877878px;}
.ls12{letter-spacing:33.877946px;}
.lsb{letter-spacing:46.117815px;}
.ls7{letter-spacing:46.117883px;}
.lsa{letter-spacing:62.677919px;}
.ls9{letter-spacing:64.117883px;}
.ls10{letter-spacing:201.088350px;}
.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;}
}
.ws6{word-spacing:-59.646600px;}
.ws3{word-spacing:-14.911650px;}
.ws7{word-spacing:-13.474884px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws4{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws5{word-spacing:0.000000px;}
._4c{margin-left:-14.098848px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._6{width:4.293229px;}
._4{width:6.034342px;}
._5{width:7.095173px;}
._3{width:8.099661px;}
._a{width:9.301383px;}
._9{width:10.833389px;}
._8{width:12.824485px;}
._11{width:13.842188px;}
._7{width:16.628659px;}
._d{width:17.643117px;}
._e{width:18.799164px;}
._23{width:19.989893px;}
._1c{width:21.410944px;}
._1f{width:22.495859px;}
._1e{width:23.976141px;}
._16{width:25.466840px;}
._19{width:26.975730px;}
._13{width:28.595796px;}
._14{width:30.069664px;}
._1b{width:31.091866px;}
._33{width:32.108960px;}
._2d{width:33.182169px;}
._17{width:34.461200px;}
._3e{width:35.487935px;}
._18{width:36.535173px;}
._b{width:38.370077px;}
._2e{width:39.514314px;}
._22{width:40.529238px;}
._24{width:42.276697px;}
._2a{width:43.361303px;}
._21{width:44.444012px;}
._1a{width:45.501735px;}
._12{width:46.869951px;}
._c{width:48.672092px;}
._38{width:49.772669px;}
._3b{width:50.807559px;}
._2f{width:51.842918px;}
._20{width:52.894258px;}
._35{width:54.273569px;}
._27{width:56.180268px;}
._26{width:57.317659px;}
._4b{width:58.337834px;}
._34{width:59.354802px;}
._2c{width:61.177840px;}
._2b{width:62.676300px;}
._3a{width:63.972541px;}
._32{width:65.339034px;}
._15{width:66.961302px;}
._29{width:68.316254px;}
._28{width:69.398658px;}
._1d{width:70.658066px;}
._40{width:72.289421px;}
._36{width:75.859131px;}
._3f{width:76.963292px;}
._41{width:78.939856px;}
._4e{width:81.003276px;}
._25{width:82.466695px;}
._42{width:85.530967px;}
._48{width:87.828992px;}
._39{width:89.048790px;}
._10{width:90.785836px;}
._58{width:91.865317px;}
._47{width:93.048696px;}
._37{width:94.160618px;}
._4d{width:97.222166px;}
._5a{width:99.011098px;}
._43{width:101.515789px;}
._31{width:104.801799px;}
._f{width:106.139566px;}
._3c{width:109.439234px;}
._52{width:112.135608px;}
._51{width:113.338559px;}
._56{width:120.570925px;}
._3d{width:129.231027px;}
._30{width:130.895162px;}
._50{width:143.149582px;}
._4a{width:151.502364px;}
._4f{width:162.173126px;}
._55{width:182.516338px;}
._44{width:193.194012px;}
._49{width:201.009042px;}
._45{width:280.773000px;}
._46{width:320.115597px;}
._54{width:325.071712px;}
._59{width:467.373965px;}
._57{width:795.893780px;}
._53{width:798.667974px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs8{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y1d1{bottom:2.519989px;}
.y1d3{bottom:2.519990px;}
.y1d8{bottom:2.520057px;}
.y1cf{bottom:2.879998px;}
.y9{bottom:35.640061px;}
.y8{bottom:52.919975px;}
.y7{bottom:66.960022px;}
.y1d9{bottom:86.039977px;}
.y1f2{bottom:88.740006px;}
.y3a{bottom:92.340019px;}
.y52{bottom:93.059967px;}
.y81{bottom:93.240006px;}
.y27f{bottom:96.120002px;}
.y1fc{bottom:98.100013px;}
.y131{bottom:101.879998px;}
.yd9{bottom:102.240006px;}
.yf6{bottom:103.679970px;}
.yca{bottom:103.860008px;}
.y21d{bottom:105.299973px;}
.y1de{bottom:105.840019px;}
.y1f1{bottom:106.019989px;}
.y170{bottom:107.820030px;}
.y39{bottom:109.620002px;}
.y51{bottom:110.340019px;}
.y231{bottom:111.059967px;}
.y29d{bottom:112.679970px;}
.y27e{bottom:113.399986px;}
.y1d7{bottom:114.299973px;}
.y1fb{bottom:115.379998px;}
.y21c{bottom:117.899986px;}
.y130{bottom:119.159981px;}
.yd8{bottom:119.340019px;}
.yf5{bottom:120.960022px;}
.yc9{bottom:121.139992px;}
.y1dd{bottom:121.320030px;}
.y11d{bottom:121.679970px;}
.y209{bottom:123.120002px;}
.y1f0{bottom:123.299973px;}
.y38{bottom:126.899986px;}
.y50{bottom:127.620002px;}
.y230{bottom:128.340019px;}
.y1d6{bottom:128.879998px;}
.y29c{bottom:129.960022px;}
.y27d{bottom:130.679970px;}
.y216{bottom:131.940033px;}
.y1fa{bottom:132.659981px;}
.y141{bottom:133.559967px;}
.y12f{bottom:136.440033px;}
.yd7{bottom:136.620002px;}
.yf4{bottom:138.240006px;}
.yc8{bottom:138.419975px;}
.y11c{bottom:138.960022px;}
.y1ef{bottom:140.399986px;}
.y1dc{bottom:140.759994px;}
.y265{bottom:143.279983px;}
.y1d5{bottom:143.460022px;}
.y1e5{bottom:144.179970px;}
.y4f{bottom:144.899986px;}
.y22f{bottom:145.620002px;}
.y16f{bottom:146.159981px;}
.y29b{bottom:147.240006px;}
.y27c{bottom:147.960022px;}
.y215{bottom:149.220017px;}
.y1f9{bottom:149.759994px;}
.y140{bottom:150.659981px;}
.y37{bottom:153.000000px;}
.y249{bottom:153.179970px;}
.y12e{bottom:153.539977px;}
.yd6{bottom:153.899986px;}
.yf3{bottom:155.340019px;}
.yc7{bottom:155.519989px;}
.y11b{bottom:156.240006px;}
.y1ee{bottom:157.679970px;}
.y1d4{bottom:158.039977px;}
.y264{bottom:160.559967px;}
.y4e{bottom:162.000000px;}
.y80{bottom:162.179970px;}
.y16e{bottom:163.440033px;}
.y29a{bottom:164.340019px;}
.y27b{bottom:165.240006px;}
.y190{bottom:165.600013px;}
.y214{bottom:166.500000px;}
.y1f8{bottom:167.039977px;}
.y13f{bottom:167.940033px;}
.y36{bottom:170.279983px;}
.y248{bottom:170.460022px;}
.y12d{bottom:170.820030px;}
.yd5{bottom:171.179970px;}
.yf2{bottom:172.620002px;}
.yc6{bottom:172.799973px;}
.y11a{bottom:173.340019px;}
.y1ed{bottom:174.960022px;}
.y1e4{bottom:176.940033px;}
.y152{bottom:177.120002px;}
.y22e{bottom:177.840019px;}
.y4d{bottom:179.279983px;}
.y7f{bottom:179.460022px;}
.y16d{bottom:180.539977px;}
.y299{bottom:181.620002px;}
.y27a{bottom:182.340019px;}
.y18f{bottom:182.879998px;}
.y213{bottom:183.779983px;}
.y13e{bottom:185.220017px;}
.y1d2{bottom:187.019989px;}
.y35{bottom:187.559967px;}
.y12c{bottom:188.100013px;}
.yd4{bottom:188.460022px;}
.yf1{bottom:189.899986px;}
.yc5{bottom:190.080025px;}
.y119{bottom:190.620002px;}
.y208{bottom:192.240006px;}
.y1e3{bottom:192.419975px;}
.y263{bottom:192.779983px;}
.y1f7{bottom:193.320030px;}
.y22d{bottom:195.120002px;}
.y4c{bottom:196.559967px;}
.y7e{bottom:196.740006px;}
.y16c{bottom:197.820030px;}
.y298{bottom:198.899986px;}
.y18e{bottom:200.159981px;}
.y212{bottom:201.059967px;}
.y1ec{bottom:201.240006px;}
.y1d0{bottom:201.600013px;}
.y13d{bottom:202.500000px;}
.y279{bottom:202.679970px;}
.y34{bottom:204.840019px;}
.y12b{bottom:205.379998px;}
.yd3{bottom:205.740006px;}
.yf0{bottom:207.179970px;}
.yc4{bottom:207.360008px;}
.y118{bottom:207.899986px;}
.y1b3{bottom:209.159981px;}
.y207{bottom:209.340019px;}
.y262{bottom:210.059967px;}
.y1e2{bottom:211.860008px;}
.y22c{bottom:212.399986px;}
.y4b{bottom:213.840019px;}
.y16b{bottom:215.100013px;}
.y151{bottom:215.279983px;}
.y1ce{bottom:216.179970px;}
.y18d{bottom:217.259994px;}
.y211{bottom:218.340019px;}
.y13c{bottom:219.779983px;}
.y278{bottom:219.960022px;}
.y33{bottom:222.120002px;}
.y12a{bottom:222.659981px;}
.yd2{bottom:222.840019px;}
.yef{bottom:224.460022px;}
.yc3{bottom:224.639992px;}
.y1f6{bottom:225.000000px;}
.y117{bottom:225.179970px;}
.y1b2{bottom:226.440033px;}
.y206{bottom:226.620002px;}
.y261{bottom:227.340019px;}
.y4a{bottom:231.120002px;}
.y16a{bottom:232.379998px;}
.y1eb{bottom:232.919975px;}
.y18c{bottom:234.539977px;}
.y1cd{bottom:234.720017px;}
.y210{bottom:235.440033px;}
.y297{bottom:236.340019px;}
.y13b{bottom:237.059967px;}
.y277{bottom:237.240006px;}
.y32{bottom:239.399986px;}
.y129{bottom:239.759994px;}
.yd1{bottom:240.120002px;}
.y1f5{bottom:240.840019px;}
.yee{bottom:241.740006px;}
.yc2{bottom:241.919975px;}
.y116{bottom:242.460022px;}
.y1b1{bottom:243.720017px;}
.y22b{bottom:244.620002px;}
.y49{bottom:248.399986px;}
.y1ea{bottom:248.580025px;}
.y169{bottom:249.659981px;}
.y1cc{bottom:250.200027px;}
.y18b{bottom:251.820030px;}
.y1f4{bottom:253.440033px;}
.y150{bottom:253.620002px;}
.y13a{bottom:254.159981px;}
.y247{bottom:254.340019px;}
.y31{bottom:256.500000px;}
.y128{bottom:257.039977px;}
.yd0{bottom:257.399986px;}
.yed{bottom:258.840019px;}
.yc1{bottom:259.019989px;}
.y260{bottom:259.559967px;}
.y115{bottom:259.740006px;}
.y1b0{bottom:261.000000px;}
.y1e9{bottom:261.179970px;}
.y22a{bottom:261.899986px;}
.y205{bottom:264.600013px;}
.y7d{bottom:265.679970px;}
.y1cb{bottom:266.399986px;}
.y168{bottom:266.940033px;}
.y20f{bottom:267.659981px;}
.y18a{bottom:269.100013px;}
.y296{bottom:270.899986px;}
.y139{bottom:271.440033px;}
.y246{bottom:271.620002px;}
.y30{bottom:273.779983px;}
.y127{bottom:274.320030px;}
.y48{bottom:274.500000px;}
.ycf{bottom:274.679970px;}
.yc0{bottom:276.299973px;}
.y114{bottom:276.840019px;}
.y1af{bottom:278.279983px;}
.y201{bottom:280.080025px;}
.y7c{bottom:282.960022px;}
.y167{bottom:284.039977px;}
.y189{bottom:286.379998px;}
.y295{bottom:288.179970px;}
.y138{bottom:288.720017px;}
.y2f{bottom:291.059967px;}
.y126{bottom:291.600013px;}
.y47{bottom:291.779983px;}
.yce{bottom:291.960022px;}
.ybf{bottom:293.580025px;}
.y113{bottom:294.120002px;}
.y1ae{bottom:295.379998px;}
.y200{bottom:295.740006px;}
.y1ca{bottom:297.179970px;}
.y20e{bottom:300.059967px;}
.y7b{bottom:300.240006px;}
.y166{bottom:301.320030px;}
.y188{bottom:303.659981px;}
.y245{bottom:303.840019px;}
.y294{bottom:305.460022px;}
.y204{bottom:307.620002px;}
.y2e{bottom:308.340019px;}
.y1ff{bottom:308.519989px;}
.y125{bottom:308.879998px;}
.y46{bottom:309.059967px;}
.ycd{bottom:309.240006px;}
.ybe{bottom:310.860008px;}
.y112{bottom:311.399986px;}
.y1ad{bottom:312.659981px;}
.y1c9{bottom:314.460022px;}
.y7a{bottom:317.340019px;}
.y165{bottom:318.600013px;}
.y187{bottom:320.759994px;}
.y244{bottom:321.120002px;}
.y293{bottom:322.559967px;}
.y14f{bottom:324.000000px;}
.y2d{bottom:325.620002px;}
.y124{bottom:326.159981px;}
.y45{bottom:326.340019px;}
.ybd{bottom:328.139992px;}
.y111{bottom:328.679970px;}
.y1ac{bottom:329.940033px;}
.y1c8{bottom:331.740006px;}
.y79{bottom:334.620002px;}
.y164{bottom:335.879998px;}
.y186{bottom:338.039977px;}
.y243{bottom:338.399986px;}
.y292{bottom:339.840019px;}
.y2c{bottom:342.899986px;}
.y123{bottom:343.259994px;}
.y44{bottom:343.620002px;}
.ybc{bottom:345.419975px;}
.y110{bottom:345.960022px;}
.y1ab{bottom:347.220017px;}
.y20d{bottom:347.399986px;}
.y78{bottom:351.899986px;}
.y163{bottom:353.159981px;}
.y21b{bottom:354.419975px;}
.y185{bottom:355.320030px;}
.y14e{bottom:356.220017px;}
.y1c7{bottom:358.019989px;}
.y2b{bottom:360.000000px;}
.yec{bottom:360.179970px;}
.y122{bottom:360.539977px;}
.y43{bottom:360.899986px;}
.ybb{bottom:362.519989px;}
.y10f{bottom:363.059967px;}
.y1aa{bottom:364.500000px;}
.y242{bottom:364.679970px;}
.y77{bottom:369.179970px;}
.y21a{bottom:369.899986px;}
.y162{bottom:370.259994px;}
.y184{bottom:372.600013px;}
.y20c{bottom:374.940033px;}
.y2a{bottom:377.279983px;}
.yeb{bottom:377.460022px;}
.y121{bottom:377.820030px;}
.y42{bottom:378.000000px;}
.ycc{bottom:378.179970px;}
.yba{bottom:379.799973px;}
.y10e{bottom:380.340019px;}
.y1a9{bottom:381.779983px;}
.y219{bottom:382.679970px;}
.y76{bottom:386.460022px;}
.y161{bottom:387.539977px;}
.y1c6{bottom:389.700027px;}
.y183{bottom:389.879998px;}
.y229{bottom:393.120002px;}
.y29{bottom:394.559967px;}
.y41{bottom:395.279983px;}
.ycb{bottom:395.460022px;}
.y241{bottom:396.899986px;}
.yb9{bottom:397.080025px;}
.y10d{bottom:397.620002px;}
.y1a8{bottom:398.879998px;}
.y14d{bottom:402.480011px;}
.y75{bottom:403.559967px;}
.y120{bottom:404.100013px;}
.y25f{bottom:404.279983px;}
.y160{bottom:404.820030px;}
.y228{bottom:410.399986px;}
.y28{bottom:411.840019px;}
.y40{bottom:412.559967px;}
.y240{bottom:414.179970px;}
.yb8{bottom:414.360008px;}
.y10c{bottom:414.899986px;}
.y276{bottom:415.620002px;}
.y1a7{bottom:416.159981px;}
.y14c{bottom:419.759994px;}
.y74{bottom:420.840019px;}
.y25e{bottom:421.559967px;}
.y15f{bottom:422.100013px;}
.y1e1{bottom:424.980011px;}
.y182{bottom:427.679970px;}
.y27{bottom:429.120002px;}
.y3f{bottom:429.840019px;}
.y11f{bottom:430.019989px;}
.y23f{bottom:431.460022px;}
.yb7{bottom:431.639992px;}
.y10b{bottom:432.179970px;}
.y275{bottom:432.899986px;}
.y1a6{bottom:433.440033px;}
.y14b{bottom:437.039977px;}
.y73{bottom:438.120002px;}
.y15e{bottom:439.379998px;}
.y181{bottom:440.279983px;}
.y11e{bottom:442.620002px;}
.y26{bottom:446.220017px;}
.yea{bottom:446.399986px;}
.y3e{bottom:447.120002px;}
.y23e{bottom:448.559967px;}
.yb6{bottom:448.740006px;}
.y291{bottom:449.279983px;}
.y10a{bottom:449.460022px;}
.y274{bottom:450.179970px;}
.y1a5{bottom:450.720017px;}
.y25d{bottom:453.779983px;}
.y14a{bottom:454.139992px;}
.y99{bottom:455.399986px;}
.y15d{bottom:456.659981px;}
.y227{bottom:459.899986px;}
.y25{bottom:463.500000px;}
.ye9{bottom:463.679970px;}
.y3d{bottom:464.220017px;}
.y72{bottom:464.399986px;}
.y23d{bottom:465.840019px;}
.yb5{bottom:466.019989px;}
.y109{bottom:466.559967px;}
.y273{bottom:467.460022px;}
.y1a4{bottom:468.000000px;}
.y25c{bottom:471.059967px;}
.y98{bottom:472.679970px;}
.y15c{bottom:473.580025px;}
.ye8{bottom:480.960022px;}
.y3c{bottom:481.500000px;}
.y71{bottom:481.679970px;}
.yb4{bottom:483.299973px;}
.y1e8{bottom:483.659981px;}
.y108{bottom:483.840019px;}
.y272{bottom:484.559967px;}
.y1a3{bottom:485.279983px;}
.y1db{bottom:485.639992px;}
.y25b{bottom:488.340019px;}
.y15b{bottom:489.059967px;}
.y24{bottom:489.779983px;}
.y97{bottom:489.960022px;}
.y226{bottom:492.120002px;}
.ye7{bottom:498.059967px;}
.y3b{bottom:498.779983px;}
.y70{bottom:498.960022px;}
.yb3{bottom:500.580025px;}
.y107{bottom:501.120002px;}
.y271{bottom:501.840019px;}
.y1fe{bottom:504.720017px;}
.y15a{bottom:504.899986px;}
.y25a{bottom:505.620002px;}
.y96{bottom:507.059967px;}
.y225{bottom:509.399986px;}
.ye6{bottom:515.340019px;}
.y23{bottom:516.059967px;}
.yb2{bottom:517.860008px;}
.y106{bottom:518.399986px;}
.y270{bottom:519.120002px;}
.y1fd{bottom:521.460022px;}
.y159{bottom:522.179970px;}
.y259{bottom:522.899986px;}
.y1a2{bottom:523.440033px;}
.y95{bottom:524.340019px;}
.y203{bottom:524.519989px;}
.y149{bottom:530.279983px;}
.ye5{bottom:532.620002px;}
.y22{bottom:533.340019px;}
.yb1{bottom:535.139992px;}
.y105{bottom:535.679970px;}
.y290{bottom:538.559967px;}
.y26f{bottom:539.279983px;}
.y158{bottom:539.460022px;}
.y1a1{bottom:540.720017px;}
.y94{bottom:541.620002px;}
.y148{bottom:547.559967px;}
.ye4{bottom:549.899986px;}
.y6f{bottom:550.620002px;}
.yb0{bottom:552.240006px;}
.y104{bottom:552.960022px;}
.y258{bottom:555.120002px;}
.y28f{bottom:555.840019px;}
.y157{bottom:556.559967px;}
.y1a0{bottom:558.000000px;}
.y93{bottom:558.899986px;}
.y21{bottom:559.440033px;}
.y147{bottom:564.840019px;}
.ye3{bottom:567.179970px;}
.y6e{bottom:567.899986px;}
.y180{bottom:569.340019px;}
.yaf{bottom:569.519989px;}
.y103{bottom:570.059967px;}
.y20b{bottom:572.399986px;}
.y28e{bottom:573.120002px;}
.y156{bottom:573.840019px;}
.y19f{bottom:575.279983px;}
.y92{bottom:576.179970px;}
.y20{bottom:576.720017px;}
.y218{bottom:579.600013px;}
.y1c5{bottom:581.940033px;}
.ye2{bottom:584.460022px;}
.y146{bottom:584.820030px;}
.y6d{bottom:585.179970px;}
.y17f{bottom:586.620002px;}
.yae{bottom:586.799973px;}
.y102{bottom:587.340019px;}
.y257{bottom:589.679970px;}
.y28d{bottom:590.399986px;}
.y155{bottom:591.120002px;}
.y19e{bottom:592.379998px;}
.y91{bottom:593.460022px;}
.y1f{bottom:594.000000px;}
.y1c4{bottom:599.220017px;}
.ye1{bottom:601.559967px;}
.y6c{bottom:602.460022px;}
.y17e{bottom:603.720017px;}
.yad{bottom:604.080025px;}
.y101{bottom:604.620002px;}
.y2a6{bottom:607.679970px;}
.y224{bottom:608.399986px;}
.y19d{bottom:609.659981px;}
.y90{bottom:610.559967px;}
.y1e{bottom:611.279983px;}
.y1c3{bottom:616.500000px;}
.ye0{bottom:618.839985px;}
.y6b{bottom:619.560001px;}
.y17d{bottom:621.000000px;}
.yac{bottom:621.360008px;}
.y100{bottom:621.899986px;}
.y2a5{bottom:624.959988px;}
.y223{bottom:625.680004px;}
.y19c{bottom:626.939999px;}
.y8f{bottom:627.839985px;}
.y1d{bottom:628.560001px;}
.y154{bottom:629.279983px;}
.y1c2{bottom:633.779983px;}
.ydf{bottom:636.120002px;}
.y6a{bottom:636.839985px;}
.y17c{bottom:638.279983px;}
.yab{bottom:638.639992px;}
.yff{bottom:639.180004px;}
.y2a4{bottom:642.060001px;}
.y8e{bottom:645.120002px;}
.y1c{bottom:645.839985px;}
.y1c1{bottom:651.060001px;}
.yde{bottom:653.399986px;}
.y69{bottom:654.120002px;}
.y1e0{bottom:654.300007px;}
.y17b{bottom:655.560001px;}
.yaa{bottom:655.740006px;}
.y256{bottom:656.279983px;}
.yfe{bottom:656.459988px;}
.y2a3{bottom:659.339985px;}
.y8d{bottom:662.399986px;}
.y1b{bottom:663.120002px;}
.y222{bottom:663.839985px;}
.y145{bottom:665.100013px;}
.y153{bottom:667.620002px;}
.y1c0{bottom:668.339985px;}
.ydd{bottom:670.680004px;}
.y68{bottom:671.399986px;}
.y17a{bottom:672.839985px;}
.ya9{bottom:673.019989px;}
.yfd{bottom:673.560001px;}
.y2a2{bottom:679.500000px;}
.y8c{bottom:679.680004px;}
.y1a{bottom:680.220017px;}
.y26e{bottom:680.399986px;}
.y221{bottom:681.120002px;}
.y19b{bottom:682.379998px;}
.y1bf{bottom:685.620002px;}
.ydc{bottom:687.779983px;}
.y1da{bottom:688.500000px;}
.y67{bottom:688.680004px;}
.y179{bottom:690.120002px;}
.yfc{bottom:690.839985px;}
.y137{bottom:694.800007px;}
.y8b{bottom:696.779983px;}
.y19{bottom:697.500000px;}
.y26d{bottom:697.680004px;}
.y220{bottom:698.399986px;}
.ya8{bottom:699.300007px;}
.y19a{bottom:699.660015px;}
.y1be{bottom:702.720017px;}
.ydb{bottom:705.060001px;}
.y66{bottom:705.779983px;}
.y178{bottom:707.220017px;}
.yfb{bottom:708.120002px;}
.y136{bottom:712.079990px;}
.y8a{bottom:714.060001px;}
.y18{bottom:714.779983px;}
.y21f{bottom:715.680004px;}
.y199{bottom:716.939999px;}
.y23c{bottom:717.839985px;}
.y1bd{bottom:720.000000px;}
.yda{bottom:722.339985px;}
.y65{bottom:723.060001px;}
.y177{bottom:724.500000px;}
.yfa{bottom:725.399986px;}
.y135{bottom:729.360008px;}
.y89{bottom:731.339985px;}
.y17{bottom:732.060001px;}
.y198{bottom:734.220017px;}
.y28c{bottom:734.399986px;}
.ya7{bottom:734.579990px;}
.y23b{bottom:735.120002px;}
.y1bc{bottom:737.279983px;}
.y1f3{bottom:737.459988px;}
.y255{bottom:738.000000px;}
.y144{bottom:739.620002px;}
.y64{bottom:740.339985px;}
.y176{bottom:741.779983px;}
.yf9{bottom:742.680004px;}
.y134{bottom:746.639992px;}
.y88{bottom:748.620002px;}
.y16{bottom:749.339985px;}
.y197{bottom:751.500000px;}
.y28b{bottom:751.680004px;}
.ya6{bottom:751.860008px;}
.y23a{bottom:752.399986px;}
.y21e{bottom:753.839985px;}
.y1bb{bottom:754.560001px;}
.y254{bottom:755.279983px;}
.y143{bottom:756.899986px;}
.y63{bottom:757.620002px;}
.y175{bottom:759.060001px;}
.yf8{bottom:759.779983px;}
.y1e7{bottom:760.139992px;}
.y133{bottom:763.920010px;}
.y87{bottom:765.899986px;}
.y15{bottom:766.620002px;}
.y196{bottom:768.600013px;}
.y28a{bottom:768.779983px;}
.ya5{bottom:769.139992px;}
.y239{bottom:769.680004px;}
.y1ba{bottom:771.839985px;}
.y253{bottom:772.560001px;}
.y202{bottom:772.740006px;}
.y142{bottom:774.180004px;}
.y62{bottom:774.899986px;}
.y174{bottom:776.339985px;}
.y86{bottom:783.180004px;}
.y14{bottom:783.720017px;}
.y195{bottom:785.879998px;}
.y289{bottom:786.060001px;}
.ya4{bottom:786.240006px;}
.y238{bottom:786.779983px;}
.y1b9{bottom:789.120002px;}
.y252{bottom:789.839985px;}
.yf7{bottom:792.000000px;}
.y61{bottom:792.180004px;}
.y173{bottom:793.620002px;}
.y132{bottom:795.600013px;}
.y85{bottom:800.279983px;}
.y13{bottom:801.000000px;}
.y194{bottom:803.160015px;}
.y288{bottom:803.339985px;}
.y237{bottom:804.060001px;}
.y1b8{bottom:806.220017px;}
.y26c{bottom:807.120002px;}
.y60{bottom:809.279983px;}
.y172{bottom:810.720017px;}
.ya3{bottom:813.600013px;}
.y84{bottom:817.560001px;}
.y12{bottom:818.279983px;}
.y193{bottom:820.439999px;}
.y287{bottom:820.620002px;}
.y251{bottom:822.060001px;}
.y1b7{bottom:823.500000px;}
.y20a{bottom:823.680004px;}
.y26b{bottom:824.399986px;}
.y5f{bottom:826.560001px;}
.y217{bottom:828.180004px;}
.ya2{bottom:830.879998px;}
.y83{bottom:834.839985px;}
.y286{bottom:837.899986px;}
.y250{bottom:839.339985px;}
.y1b6{bottom:840.779983px;}
.y11{bottom:841.500000px;}
.y26a{bottom:841.680004px;}
.y236{bottom:842.399986px;}
.y5e{bottom:843.839985px;}
.ya1{bottom:848.160015px;}
.y171{bottom:848.699993px;}
.y82{bottom:852.120002px;}
.y285{bottom:855.180004px;}
.y24f{bottom:856.620002px;}
.y192{bottom:858.420010px;}
.y235{bottom:859.680004px;}
.y5d{bottom:861.120002px;}
.ya0{bottom:865.439999px;}
.y269{bottom:867.779983px;}
.y191{bottom:871.019989px;}
.y2a1{bottom:872.279983px;}
.y284{bottom:875.339985px;}
.y10{bottom:876.779983px;}
.y234{bottom:876.959988px;}
.y5c{bottom:878.399987px;}
.y1b5{bottom:878.759994px;}
.y24e{bottom:882.899987px;}
.y2a0{bottom:889.560001px;}
.y1b4{bottom:891.360008px;}
.y9f{bottom:892.620002px;}
.yf{bottom:894.060001px;}
.y1df{bottom:895.500000px;}
.y5b{bottom:895.680004px;}
.y268{bottom:900.000000px;}
.y24d{bottom:900.180004px;}
.y29f{bottom:906.840002px;}
.y9e{bottom:909.900003px;}
.y5a{bottom:912.780001px;}
.y233{bottom:915.120002px;}
.y267{bottom:917.280001px;}
.ye{bottom:925.020006px;}
.y29e{bottom:927.000000px;}
.y9d{bottom:927.180004px;}
.y59{bottom:930.060001px;}
.y232{bottom:932.400003px;}
.yd{bottom:943.199993px;}
.y283{bottom:944.280001px;}
.y58{bottom:947.340002px;}
.y266{bottom:949.500000px;}
.y24c{bottom:949.680004px;}
.y9c{bottom:954.539995px;}
.y282{bottom:961.560001px;}
.y57{bottom:964.620002px;}
.y24b{bottom:966.780001px;}
.y9b{bottom:971.819996px;}
.yc{bottom:978.479994px;}
.y281{bottom:978.840002px;}
.y56{bottom:981.900003px;}
.y24a{bottom:984.060001px;}
.y9a{bottom:989.099997px;}
.y280{bottom:996.120002px;}
.yb{bottom:997.740006px;}
.y1e6{bottom:999.000000px;}
.y55{bottom:999.180004px;}
.y54{bottom:1016.280001px;}
.ya{bottom:1025.280001px;}
.y53{bottom:1033.560001px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.h16{height:13.319961px;}
.h11{height:13.319962px;}
.h17{height:13.320029px;}
.h15{height:13.320030px;}
.h13{height:13.500000px;}
.h10{height:14.940033px;}
.h14{height:33.972070px;}
.h9{height:34.789313px;}
.h5{height:35.738832px;}
.hb{height:42.084637px;}
.h2{height:42.164290px;}
.h12{height:43.164512px;}
.hc{height:43.424356px;}
.h4{height:44.378823px;}
.he{height:44.423619px;}
.h3{height:45.778346px;}
.h8{height:48.260474px;}
.h6{height:48.318580px;}
.hf{height:49.161846px;}
.h1{height:53.472245px;}
.ha{height:55.669241px;}
.hd{height:62.284169px;}
.h18{height:64.424639px;}
.h7{height:85.684766px;}
.h0{height:1188.000000px;}
.w8{width:5.939964px;}
.wb{width:5.939965px;}
.w6{width:5.939998px;}
.wd{width:5.939999px;}
.wa{width:5.940033px;}
.w4{width:6.839951px;}
.w2{width:6.840019px;}
.w5{width:17.639992px;}
.w1{width:20.159981px;}
.w3{width:20.160049px;}
.wf{width:23.939999px;}
.wc{width:25.379998px;}
.we{width:26.099980px;}
.w7{width:27.000000px;}
.w9{width:32.939964px;}
.w11{width:37.439999px;}
.w12{width:50.399987px;}
.w10{width:65.159981px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:134.819996px;}
.x7{left:144.360008px;}
.x48{left:147.419992px;}
.xe{left:150.120002px;}
.x11{left:162.000000px;}
.xb{left:174.599997px;}
.x24{left:180.900003px;}
.x16{left:187.379998px;}
.x12{left:189.000000px;}
.x40{left:191.520006px;}
.x49{left:193.860008px;}
.xc{left:204.479994px;}
.x20{left:209.159998px;}
.x4e{left:215.460005px;}
.xa{left:230.400003px;}
.x4a{left:237.060001px;}
.x8{left:239.939999px;}
.x1{left:246.599997px;}
.x1f{left:290.519989px;}
.x2{left:383.579990px;}
.x3{left:399.420010px;}
.x4d{left:419.399987px;}
.x3f{left:421.740006px;}
.xd{left:423.540012px;}
.x46{left:426.240006px;}
.x3e{left:428.579990px;}
.x47{left:433.980011px;}
.x17{left:439.019989px;}
.x45{left:441.899987px;}
.x6{left:443.879998px;}
.x23{left:451.079990px;}
.x9{left:459.000000px;}
.xf{left:471.779983px;}
.x29{left:477.360008px;}
.x43{left:484.199993px;}
.x10{left:486.899987px;}
.x33{left:494.639992px;}
.x51{left:498.779983px;}
.x39{left:501.300007px;}
.x27{left:502.379998px;}
.x28{left:503.639992px;}
.x52{left:512.279983px;}
.x3b{left:514.800007px;}
.x44{left:523.800007px;}
.x13{left:525.779983px;}
.x3c{left:527.759994px;}
.x25{left:534.420010px;}
.x3a{left:542.339985px;}
.x15{left:555.660015px;}
.x22{left:568.800007px;}
.x3d{left:572.220017px;}
.x1c{left:574.199993px;}
.x1b{left:592.200027px;}
.x34{left:602.100014px;}
.x2a{left:630.179970px;}
.x1e{left:633.779983px;}
.x2c{left:637.019989px;}
.x2b{left:638.460023px;}
.x2d{left:657.179970px;}
.x1d{left:660.419975px;}
.x35{left:663.659981px;}
.x1a{left:665.279983px;}
.x2e{left:682.919975px;}
.x36{left:686.700027px;}
.x2f{left:690.120002px;}
.x18{left:703.080025px;}
.x37{left:713.700027px;}
.x19{left:727.200027px;}
.x31{left:741.600014px;}
.x30{left:746.279983px;}
.x42{left:758.340019px;}
.x50{left:763.019989px;}
.x32{left:766.080025px;}
.x38{left:769.500000px;}
.x4c{left:770.759994px;}
.x4b{left:773.100014px;}
.x4f{left:775.259994px;}
.x14{left:776.879998px;}
.x41{left:778.679970px;}
.x4{left:783.000000px;}
.x26{left:786.600014px;}
.x21{left:789.299973px;}
@media print{
.v7{vertical-align:-18.559996pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v6{vertical-align:18.559996pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000374pt;}
.lse{letter-spacing:0.008284pt;}
.ls1{letter-spacing:0.032748pt;}
.ls4{letter-spacing:0.180180pt;}
.ls0{letter-spacing:0.180304pt;}
.ls6{letter-spacing:0.180424pt;}
.ls2{letter-spacing:0.185140pt;}
.ls3{letter-spacing:0.332770pt;}
.ls5{letter-spacing:0.820320pt;}
.ls14{letter-spacing:3.233666pt;}
.ls15{letter-spacing:3.233726pt;}
.ls11{letter-spacing:6.754506pt;}
.lsc{letter-spacing:14.753622pt;}
.lsd{letter-spacing:14.753686pt;}
.ls13{letter-spacing:30.113670pt;}
.ls12{letter-spacing:30.113730pt;}
.lsb{letter-spacing:40.993614pt;}
.ls7{letter-spacing:40.993674pt;}
.lsa{letter-spacing:55.713706pt;}
.ls9{letter-spacing:56.993674pt;}
.ls10{letter-spacing:178.745200pt;}
.ws6{word-spacing:-53.019200pt;}
.ws3{word-spacing:-13.254800pt;}
.ws7{word-spacing:-11.977674pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws4{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws5{word-spacing:0.000000pt;}
._4c{margin-left:-12.532309pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._6{width:3.816204pt;}
._4{width:5.363860pt;}
._5{width:6.306820pt;}
._3{width:7.199699pt;}
._a{width:8.267896pt;}
._9{width:9.629679pt;}
._8{width:11.399542pt;}
._11{width:12.304167pt;}
._7{width:14.781030pt;}
._d{width:15.682771pt;}
._e{width:16.710368pt;}
._23{width:17.768794pt;}
._1c{width:19.031950pt;}
._1f{width:19.996319pt;}
._1e{width:21.312126pt;}
._16{width:22.637191pt;}
._19{width:23.978426pt;}
._13{width:25.418485pt;}
._14{width:26.728590pt;}
._1b{width:27.637215pt;}
._33{width:28.541298pt;}
._2d{width:29.495262pt;}
._17{width:30.632178pt;}
._3e{width:31.544831pt;}
._18{width:32.475710pt;}
._b{width:34.106736pt;}
._2e{width:35.123834pt;}
._22{width:36.025989pt;}
._24{width:37.579286pt;}
._2a{width:38.543380pt;}
._21{width:39.505788pt;}
._1a{width:40.445987pt;}
._12{width:41.662179pt;}
._c{width:43.264081pt;}
._38{width:44.242372pt;}
._3b{width:45.162274pt;}
._2f{width:46.082593pt;}
._20{width:47.017118pt;}
._35{width:48.243172pt;}
._27{width:49.938016pt;}
._26{width:50.949030pt;}
._4b{width:51.855853pt;}
._34{width:52.759824pt;}
._2c{width:54.380302pt;}
._2b{width:55.712267pt;}
._3a{width:56.864481pt;}
._32{width:58.079141pt;}
._15{width:59.521158pt;}
._29{width:60.725560pt;}
._28{width:61.687696pt;}
._1d{width:62.807170pt;}
._40{width:64.257263pt;}
._36{width:67.430338pt;}
._3f{width:68.411815pt;}
._41{width:70.168761pt;}
._4e{width:72.002912pt;}
._25{width:73.303729pt;}
._42{width:76.027526pt;}
._48{width:78.070215pt;}
._39{width:79.154480pt;}
._10{width:80.698521pt;}
._58{width:81.658059pt;}
._47{width:82.709952pt;}
._37{width:83.698327pt;}
._4d{width:86.419703pt;}
._5a{width:88.009865pt;}
._43{width:90.236257pt;}
._31{width:93.157155pt;}
._f{width:94.346281pt;}
._3c{width:97.279319pt;}
._52{width:99.676096pt;}
._51{width:100.745386pt;}
._56{width:107.174156pt;}
._3d{width:114.872024pt;}
._30{width:116.351255pt;}
._50{width:127.244073pt;}
._4a{width:134.668768pt;}
._4f{width:144.153890pt;}
._55{width:162.236745pt;}
._44{width:171.728010pt;}
._49{width:178.674704pt;}
._45{width:249.576000pt;}
._46{width:284.547197pt;}
._54{width:288.952633pt;}
._59{width:415.443525pt;}
._57{width:707.461138pt;}
._53{width:709.927088pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs8{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y1d1{bottom:2.239990pt;}
.y1d3{bottom:2.239991pt;}
.y1d8{bottom:2.240051pt;}
.y1cf{bottom:2.559998pt;}
.y9{bottom:31.680054pt;}
.y8{bottom:47.039978pt;}
.y7{bottom:59.520020pt;}
.y1d9{bottom:76.479980pt;}
.y1f2{bottom:78.880005pt;}
.y3a{bottom:82.080017pt;}
.y52{bottom:82.719971pt;}
.y81{bottom:82.880005pt;}
.y27f{bottom:85.440002pt;}
.y1fc{bottom:87.200012pt;}
.y131{bottom:90.559998pt;}
.yd9{bottom:90.880005pt;}
.yf6{bottom:92.159973pt;}
.yca{bottom:92.320007pt;}
.y21d{bottom:93.599976pt;}
.y1de{bottom:94.080017pt;}
.y1f1{bottom:94.239990pt;}
.y170{bottom:95.840027pt;}
.y39{bottom:97.440002pt;}
.y51{bottom:98.080017pt;}
.y231{bottom:98.719971pt;}
.y29d{bottom:100.159973pt;}
.y27e{bottom:100.799988pt;}
.y1d7{bottom:101.599976pt;}
.y1fb{bottom:102.559998pt;}
.y21c{bottom:104.799988pt;}
.y130{bottom:105.919983pt;}
.yd8{bottom:106.080017pt;}
.yf5{bottom:107.520020pt;}
.yc9{bottom:107.679993pt;}
.y1dd{bottom:107.840027pt;}
.y11d{bottom:108.159973pt;}
.y209{bottom:109.440002pt;}
.y1f0{bottom:109.599976pt;}
.y38{bottom:112.799988pt;}
.y50{bottom:113.440002pt;}
.y230{bottom:114.080017pt;}
.y1d6{bottom:114.559998pt;}
.y29c{bottom:115.520020pt;}
.y27d{bottom:116.159973pt;}
.y216{bottom:117.280029pt;}
.y1fa{bottom:117.919983pt;}
.y141{bottom:118.719971pt;}
.y12f{bottom:121.280029pt;}
.yd7{bottom:121.440002pt;}
.yf4{bottom:122.880005pt;}
.yc8{bottom:123.039978pt;}
.y11c{bottom:123.520020pt;}
.y1ef{bottom:124.799988pt;}
.y1dc{bottom:125.119995pt;}
.y265{bottom:127.359985pt;}
.y1d5{bottom:127.520020pt;}
.y1e5{bottom:128.159973pt;}
.y4f{bottom:128.799988pt;}
.y22f{bottom:129.440002pt;}
.y16f{bottom:129.919983pt;}
.y29b{bottom:130.880005pt;}
.y27c{bottom:131.520020pt;}
.y215{bottom:132.640015pt;}
.y1f9{bottom:133.119995pt;}
.y140{bottom:133.919983pt;}
.y37{bottom:136.000000pt;}
.y249{bottom:136.159973pt;}
.y12e{bottom:136.479980pt;}
.yd6{bottom:136.799988pt;}
.yf3{bottom:138.080017pt;}
.yc7{bottom:138.239990pt;}
.y11b{bottom:138.880005pt;}
.y1ee{bottom:140.159973pt;}
.y1d4{bottom:140.479980pt;}
.y264{bottom:142.719971pt;}
.y4e{bottom:144.000000pt;}
.y80{bottom:144.159973pt;}
.y16e{bottom:145.280029pt;}
.y29a{bottom:146.080017pt;}
.y27b{bottom:146.880005pt;}
.y190{bottom:147.200012pt;}
.y214{bottom:148.000000pt;}
.y1f8{bottom:148.479980pt;}
.y13f{bottom:149.280029pt;}
.y36{bottom:151.359985pt;}
.y248{bottom:151.520020pt;}
.y12d{bottom:151.840027pt;}
.yd5{bottom:152.159973pt;}
.yf2{bottom:153.440002pt;}
.yc6{bottom:153.599976pt;}
.y11a{bottom:154.080017pt;}
.y1ed{bottom:155.520020pt;}
.y1e4{bottom:157.280029pt;}
.y152{bottom:157.440002pt;}
.y22e{bottom:158.080017pt;}
.y4d{bottom:159.359985pt;}
.y7f{bottom:159.520020pt;}
.y16d{bottom:160.479980pt;}
.y299{bottom:161.440002pt;}
.y27a{bottom:162.080017pt;}
.y18f{bottom:162.559998pt;}
.y213{bottom:163.359985pt;}
.y13e{bottom:164.640015pt;}
.y1d2{bottom:166.239990pt;}
.y35{bottom:166.719971pt;}
.y12c{bottom:167.200012pt;}
.yd4{bottom:167.520020pt;}
.yf1{bottom:168.799988pt;}
.yc5{bottom:168.960022pt;}
.y119{bottom:169.440002pt;}
.y208{bottom:170.880005pt;}
.y1e3{bottom:171.039978pt;}
.y263{bottom:171.359985pt;}
.y1f7{bottom:171.840027pt;}
.y22d{bottom:173.440002pt;}
.y4c{bottom:174.719971pt;}
.y7e{bottom:174.880005pt;}
.y16c{bottom:175.840027pt;}
.y298{bottom:176.799988pt;}
.y18e{bottom:177.919983pt;}
.y212{bottom:178.719971pt;}
.y1ec{bottom:178.880005pt;}
.y1d0{bottom:179.200012pt;}
.y13d{bottom:180.000000pt;}
.y279{bottom:180.159973pt;}
.y34{bottom:182.080017pt;}
.y12b{bottom:182.559998pt;}
.yd3{bottom:182.880005pt;}
.yf0{bottom:184.159973pt;}
.yc4{bottom:184.320007pt;}
.y118{bottom:184.799988pt;}
.y1b3{bottom:185.919983pt;}
.y207{bottom:186.080017pt;}
.y262{bottom:186.719971pt;}
.y1e2{bottom:188.320007pt;}
.y22c{bottom:188.799988pt;}
.y4b{bottom:190.080017pt;}
.y16b{bottom:191.200012pt;}
.y151{bottom:191.359985pt;}
.y1ce{bottom:192.159973pt;}
.y18d{bottom:193.119995pt;}
.y211{bottom:194.080017pt;}
.y13c{bottom:195.359985pt;}
.y278{bottom:195.520020pt;}
.y33{bottom:197.440002pt;}
.y12a{bottom:197.919983pt;}
.yd2{bottom:198.080017pt;}
.yef{bottom:199.520020pt;}
.yc3{bottom:199.679993pt;}
.y1f6{bottom:200.000000pt;}
.y117{bottom:200.159973pt;}
.y1b2{bottom:201.280029pt;}
.y206{bottom:201.440002pt;}
.y261{bottom:202.080017pt;}
.y4a{bottom:205.440002pt;}
.y16a{bottom:206.559998pt;}
.y1eb{bottom:207.039978pt;}
.y18c{bottom:208.479980pt;}
.y1cd{bottom:208.640015pt;}
.y210{bottom:209.280029pt;}
.y297{bottom:210.080017pt;}
.y13b{bottom:210.719971pt;}
.y277{bottom:210.880005pt;}
.y32{bottom:212.799988pt;}
.y129{bottom:213.119995pt;}
.yd1{bottom:213.440002pt;}
.y1f5{bottom:214.080017pt;}
.yee{bottom:214.880005pt;}
.yc2{bottom:215.039978pt;}
.y116{bottom:215.520020pt;}
.y1b1{bottom:216.640015pt;}
.y22b{bottom:217.440002pt;}
.y49{bottom:220.799988pt;}
.y1ea{bottom:220.960022pt;}
.y169{bottom:221.919983pt;}
.y1cc{bottom:222.400024pt;}
.y18b{bottom:223.840027pt;}
.y1f4{bottom:225.280029pt;}
.y150{bottom:225.440002pt;}
.y13a{bottom:225.919983pt;}
.y247{bottom:226.080017pt;}
.y31{bottom:228.000000pt;}
.y128{bottom:228.479980pt;}
.yd0{bottom:228.799988pt;}
.yed{bottom:230.080017pt;}
.yc1{bottom:230.239990pt;}
.y260{bottom:230.719971pt;}
.y115{bottom:230.880005pt;}
.y1b0{bottom:232.000000pt;}
.y1e9{bottom:232.159973pt;}
.y22a{bottom:232.799988pt;}
.y205{bottom:235.200012pt;}
.y7d{bottom:236.159973pt;}
.y1cb{bottom:236.799988pt;}
.y168{bottom:237.280029pt;}
.y20f{bottom:237.919983pt;}
.y18a{bottom:239.200012pt;}
.y296{bottom:240.799988pt;}
.y139{bottom:241.280029pt;}
.y246{bottom:241.440002pt;}
.y30{bottom:243.359985pt;}
.y127{bottom:243.840027pt;}
.y48{bottom:244.000000pt;}
.ycf{bottom:244.159973pt;}
.yc0{bottom:245.599976pt;}
.y114{bottom:246.080017pt;}
.y1af{bottom:247.359985pt;}
.y201{bottom:248.960022pt;}
.y7c{bottom:251.520020pt;}
.y167{bottom:252.479980pt;}
.y189{bottom:254.559998pt;}
.y295{bottom:256.159973pt;}
.y138{bottom:256.640015pt;}
.y2f{bottom:258.719971pt;}
.y126{bottom:259.200012pt;}
.y47{bottom:259.359985pt;}
.yce{bottom:259.520020pt;}
.ybf{bottom:260.960022pt;}
.y113{bottom:261.440002pt;}
.y1ae{bottom:262.559998pt;}
.y200{bottom:262.880005pt;}
.y1ca{bottom:264.159973pt;}
.y20e{bottom:266.719971pt;}
.y7b{bottom:266.880005pt;}
.y166{bottom:267.840027pt;}
.y188{bottom:269.919983pt;}
.y245{bottom:270.080017pt;}
.y294{bottom:271.520020pt;}
.y204{bottom:273.440002pt;}
.y2e{bottom:274.080017pt;}
.y1ff{bottom:274.239990pt;}
.y125{bottom:274.559998pt;}
.y46{bottom:274.719971pt;}
.ycd{bottom:274.880005pt;}
.ybe{bottom:276.320007pt;}
.y112{bottom:276.799988pt;}
.y1ad{bottom:277.919983pt;}
.y1c9{bottom:279.520020pt;}
.y7a{bottom:282.080017pt;}
.y165{bottom:283.200012pt;}
.y187{bottom:285.119995pt;}
.y244{bottom:285.440002pt;}
.y293{bottom:286.719971pt;}
.y14f{bottom:288.000000pt;}
.y2d{bottom:289.440002pt;}
.y124{bottom:289.919983pt;}
.y45{bottom:290.080017pt;}
.ybd{bottom:291.679993pt;}
.y111{bottom:292.159973pt;}
.y1ac{bottom:293.280029pt;}
.y1c8{bottom:294.880005pt;}
.y79{bottom:297.440002pt;}
.y164{bottom:298.559998pt;}
.y186{bottom:300.479980pt;}
.y243{bottom:300.799988pt;}
.y292{bottom:302.080017pt;}
.y2c{bottom:304.799988pt;}
.y123{bottom:305.119995pt;}
.y44{bottom:305.440002pt;}
.ybc{bottom:307.039978pt;}
.y110{bottom:307.520020pt;}
.y1ab{bottom:308.640015pt;}
.y20d{bottom:308.799988pt;}
.y78{bottom:312.799988pt;}
.y163{bottom:313.919983pt;}
.y21b{bottom:315.039978pt;}
.y185{bottom:315.840027pt;}
.y14e{bottom:316.640015pt;}
.y1c7{bottom:318.239990pt;}
.y2b{bottom:320.000000pt;}
.yec{bottom:320.159973pt;}
.y122{bottom:320.479980pt;}
.y43{bottom:320.799988pt;}
.ybb{bottom:322.239990pt;}
.y10f{bottom:322.719971pt;}
.y1aa{bottom:324.000000pt;}
.y242{bottom:324.159973pt;}
.y77{bottom:328.159973pt;}
.y21a{bottom:328.799988pt;}
.y162{bottom:329.119995pt;}
.y184{bottom:331.200012pt;}
.y20c{bottom:333.280029pt;}
.y2a{bottom:335.359985pt;}
.yeb{bottom:335.520020pt;}
.y121{bottom:335.840027pt;}
.y42{bottom:336.000000pt;}
.ycc{bottom:336.159973pt;}
.yba{bottom:337.599976pt;}
.y10e{bottom:338.080017pt;}
.y1a9{bottom:339.359985pt;}
.y219{bottom:340.159973pt;}
.y76{bottom:343.520020pt;}
.y161{bottom:344.479980pt;}
.y1c6{bottom:346.400024pt;}
.y183{bottom:346.559998pt;}
.y229{bottom:349.440002pt;}
.y29{bottom:350.719971pt;}
.y41{bottom:351.359985pt;}
.ycb{bottom:351.520020pt;}
.y241{bottom:352.799988pt;}
.yb9{bottom:352.960022pt;}
.y10d{bottom:353.440002pt;}
.y1a8{bottom:354.559998pt;}
.y14d{bottom:357.760010pt;}
.y75{bottom:358.719971pt;}
.y120{bottom:359.200012pt;}
.y25f{bottom:359.359985pt;}
.y160{bottom:359.840027pt;}
.y228{bottom:364.799988pt;}
.y28{bottom:366.080017pt;}
.y40{bottom:366.719971pt;}
.y240{bottom:368.159973pt;}
.yb8{bottom:368.320007pt;}
.y10c{bottom:368.799988pt;}
.y276{bottom:369.440002pt;}
.y1a7{bottom:369.919983pt;}
.y14c{bottom:373.119995pt;}
.y74{bottom:374.080017pt;}
.y25e{bottom:374.719971pt;}
.y15f{bottom:375.200012pt;}
.y1e1{bottom:377.760010pt;}
.y182{bottom:380.159973pt;}
.y27{bottom:381.440002pt;}
.y3f{bottom:382.080017pt;}
.y11f{bottom:382.239990pt;}
.y23f{bottom:383.520020pt;}
.yb7{bottom:383.679993pt;}
.y10b{bottom:384.159973pt;}
.y275{bottom:384.799988pt;}
.y1a6{bottom:385.280029pt;}
.y14b{bottom:388.479980pt;}
.y73{bottom:389.440002pt;}
.y15e{bottom:390.559998pt;}
.y181{bottom:391.359985pt;}
.y11e{bottom:393.440002pt;}
.y26{bottom:396.640015pt;}
.yea{bottom:396.799988pt;}
.y3e{bottom:397.440002pt;}
.y23e{bottom:398.719971pt;}
.yb6{bottom:398.880005pt;}
.y291{bottom:399.359985pt;}
.y10a{bottom:399.520020pt;}
.y274{bottom:400.159973pt;}
.y1a5{bottom:400.640015pt;}
.y25d{bottom:403.359985pt;}
.y14a{bottom:403.679993pt;}
.y99{bottom:404.799988pt;}
.y15d{bottom:405.919983pt;}
.y227{bottom:408.799988pt;}
.y25{bottom:412.000000pt;}
.ye9{bottom:412.159973pt;}
.y3d{bottom:412.640015pt;}
.y72{bottom:412.799988pt;}
.y23d{bottom:414.080017pt;}
.yb5{bottom:414.239990pt;}
.y109{bottom:414.719971pt;}
.y273{bottom:415.520020pt;}
.y1a4{bottom:416.000000pt;}
.y25c{bottom:418.719971pt;}
.y98{bottom:420.159973pt;}
.y15c{bottom:420.960022pt;}
.ye8{bottom:427.520020pt;}
.y3c{bottom:428.000000pt;}
.y71{bottom:428.159973pt;}
.yb4{bottom:429.599976pt;}
.y1e8{bottom:429.919983pt;}
.y108{bottom:430.080017pt;}
.y272{bottom:430.719971pt;}
.y1a3{bottom:431.359985pt;}
.y1db{bottom:431.679993pt;}
.y25b{bottom:434.080017pt;}
.y15b{bottom:434.719971pt;}
.y24{bottom:435.359985pt;}
.y97{bottom:435.520020pt;}
.y226{bottom:437.440002pt;}
.ye7{bottom:442.719971pt;}
.y3b{bottom:443.359985pt;}
.y70{bottom:443.520020pt;}
.yb3{bottom:444.960022pt;}
.y107{bottom:445.440002pt;}
.y271{bottom:446.080017pt;}
.y1fe{bottom:448.640015pt;}
.y15a{bottom:448.799988pt;}
.y25a{bottom:449.440002pt;}
.y96{bottom:450.719971pt;}
.y225{bottom:452.799988pt;}
.ye6{bottom:458.080017pt;}
.y23{bottom:458.719971pt;}
.yb2{bottom:460.320007pt;}
.y106{bottom:460.799988pt;}
.y270{bottom:461.440002pt;}
.y1fd{bottom:463.520020pt;}
.y159{bottom:464.159973pt;}
.y259{bottom:464.799988pt;}
.y1a2{bottom:465.280029pt;}
.y95{bottom:466.080017pt;}
.y203{bottom:466.239990pt;}
.y149{bottom:471.359985pt;}
.ye5{bottom:473.440002pt;}
.y22{bottom:474.080017pt;}
.yb1{bottom:475.679993pt;}
.y105{bottom:476.159973pt;}
.y290{bottom:478.719971pt;}
.y26f{bottom:479.359985pt;}
.y158{bottom:479.520020pt;}
.y1a1{bottom:480.640015pt;}
.y94{bottom:481.440002pt;}
.y148{bottom:486.719971pt;}
.ye4{bottom:488.799988pt;}
.y6f{bottom:489.440002pt;}
.yb0{bottom:490.880005pt;}
.y104{bottom:491.520020pt;}
.y258{bottom:493.440002pt;}
.y28f{bottom:494.080017pt;}
.y157{bottom:494.719971pt;}
.y1a0{bottom:496.000000pt;}
.y93{bottom:496.799988pt;}
.y21{bottom:497.280029pt;}
.y147{bottom:502.080017pt;}
.ye3{bottom:504.159973pt;}
.y6e{bottom:504.799988pt;}
.y180{bottom:506.080017pt;}
.yaf{bottom:506.239990pt;}
.y103{bottom:506.719971pt;}
.y20b{bottom:508.799988pt;}
.y28e{bottom:509.440002pt;}
.y156{bottom:510.080017pt;}
.y19f{bottom:511.359985pt;}
.y92{bottom:512.159973pt;}
.y20{bottom:512.640015pt;}
.y218{bottom:515.200012pt;}
.y1c5{bottom:517.280029pt;}
.ye2{bottom:519.520020pt;}
.y146{bottom:519.840027pt;}
.y6d{bottom:520.159973pt;}
.y17f{bottom:521.440002pt;}
.yae{bottom:521.599976pt;}
.y102{bottom:522.080017pt;}
.y257{bottom:524.159973pt;}
.y28d{bottom:524.799988pt;}
.y155{bottom:525.440002pt;}
.y19e{bottom:526.559998pt;}
.y91{bottom:527.520020pt;}
.y1f{bottom:528.000000pt;}
.y1c4{bottom:532.640015pt;}
.ye1{bottom:534.719971pt;}
.y6c{bottom:535.520020pt;}
.y17e{bottom:536.640015pt;}
.yad{bottom:536.960022pt;}
.y101{bottom:537.440002pt;}
.y2a6{bottom:540.159973pt;}
.y224{bottom:540.799988pt;}
.y19d{bottom:541.919983pt;}
.y90{bottom:542.719971pt;}
.y1e{bottom:543.359985pt;}
.y1c3{bottom:548.000000pt;}
.ye0{bottom:550.079987pt;}
.y6b{bottom:550.720001pt;}
.y17d{bottom:552.000000pt;}
.yac{bottom:552.320007pt;}
.y100{bottom:552.799988pt;}
.y2a5{bottom:555.519989pt;}
.y223{bottom:556.160004pt;}
.y19c{bottom:557.279999pt;}
.y8f{bottom:558.079987pt;}
.y1d{bottom:558.720001pt;}
.y154{bottom:559.359985pt;}
.y1c2{bottom:563.359985pt;}
.ydf{bottom:565.440002pt;}
.y6a{bottom:566.079987pt;}
.y17c{bottom:567.359985pt;}
.yab{bottom:567.679993pt;}
.yff{bottom:568.160004pt;}
.y2a4{bottom:570.720001pt;}
.y8e{bottom:573.440002pt;}
.y1c{bottom:574.079987pt;}
.y1c1{bottom:578.720001pt;}
.yde{bottom:580.799988pt;}
.y69{bottom:581.440002pt;}
.y1e0{bottom:581.600006pt;}
.y17b{bottom:582.720001pt;}
.yaa{bottom:582.880005pt;}
.y256{bottom:583.359985pt;}
.yfe{bottom:583.519989pt;}
.y2a3{bottom:586.079987pt;}
.y8d{bottom:588.799988pt;}
.y1b{bottom:589.440002pt;}
.y222{bottom:590.079987pt;}
.y145{bottom:591.200012pt;}
.y153{bottom:593.440002pt;}
.y1c0{bottom:594.079987pt;}
.ydd{bottom:596.160004pt;}
.y68{bottom:596.799988pt;}
.y17a{bottom:598.079987pt;}
.ya9{bottom:598.239990pt;}
.yfd{bottom:598.720001pt;}
.y2a2{bottom:604.000000pt;}
.y8c{bottom:604.160004pt;}
.y1a{bottom:604.640015pt;}
.y26e{bottom:604.799988pt;}
.y221{bottom:605.440002pt;}
.y19b{bottom:606.559998pt;}
.y1bf{bottom:609.440002pt;}
.ydc{bottom:611.359985pt;}
.y1da{bottom:612.000000pt;}
.y67{bottom:612.160004pt;}
.y179{bottom:613.440002pt;}
.yfc{bottom:614.079987pt;}
.y137{bottom:617.600006pt;}
.y8b{bottom:619.359985pt;}
.y19{bottom:620.000000pt;}
.y26d{bottom:620.160004pt;}
.y220{bottom:620.799988pt;}
.ya8{bottom:621.600006pt;}
.y19a{bottom:621.920013pt;}
.y1be{bottom:624.640015pt;}
.ydb{bottom:626.720001pt;}
.y66{bottom:627.359985pt;}
.y178{bottom:628.640015pt;}
.yfb{bottom:629.440002pt;}
.y136{bottom:632.959991pt;}
.y8a{bottom:634.720001pt;}
.y18{bottom:635.359985pt;}
.y21f{bottom:636.160004pt;}
.y199{bottom:637.279999pt;}
.y23c{bottom:638.079987pt;}
.y1bd{bottom:640.000000pt;}
.yda{bottom:642.079987pt;}
.y65{bottom:642.720001pt;}
.y177{bottom:644.000000pt;}
.yfa{bottom:644.799988pt;}
.y135{bottom:648.320007pt;}
.y89{bottom:650.079987pt;}
.y17{bottom:650.720001pt;}
.y198{bottom:652.640015pt;}
.y28c{bottom:652.799988pt;}
.ya7{bottom:652.959991pt;}
.y23b{bottom:653.440002pt;}
.y1bc{bottom:655.359985pt;}
.y1f3{bottom:655.519989pt;}
.y255{bottom:656.000000pt;}
.y144{bottom:657.440002pt;}
.y64{bottom:658.079987pt;}
.y176{bottom:659.359985pt;}
.yf9{bottom:660.160004pt;}
.y134{bottom:663.679993pt;}
.y88{bottom:665.440002pt;}
.y16{bottom:666.079987pt;}
.y197{bottom:668.000000pt;}
.y28b{bottom:668.160004pt;}
.ya6{bottom:668.320007pt;}
.y23a{bottom:668.799988pt;}
.y21e{bottom:670.079987pt;}
.y1bb{bottom:670.720001pt;}
.y254{bottom:671.359985pt;}
.y143{bottom:672.799988pt;}
.y63{bottom:673.440002pt;}
.y175{bottom:674.720001pt;}
.yf8{bottom:675.359985pt;}
.y1e7{bottom:675.679993pt;}
.y133{bottom:679.040009pt;}
.y87{bottom:680.799988pt;}
.y15{bottom:681.440002pt;}
.y196{bottom:683.200012pt;}
.y28a{bottom:683.359985pt;}
.ya5{bottom:683.679993pt;}
.y239{bottom:684.160004pt;}
.y1ba{bottom:686.079987pt;}
.y253{bottom:686.720001pt;}
.y202{bottom:686.880005pt;}
.y142{bottom:688.160004pt;}
.y62{bottom:688.799988pt;}
.y174{bottom:690.079987pt;}
.y86{bottom:696.160004pt;}
.y14{bottom:696.640015pt;}
.y195{bottom:698.559998pt;}
.y289{bottom:698.720001pt;}
.ya4{bottom:698.880005pt;}
.y238{bottom:699.359985pt;}
.y1b9{bottom:701.440002pt;}
.y252{bottom:702.079987pt;}
.yf7{bottom:704.000000pt;}
.y61{bottom:704.160004pt;}
.y173{bottom:705.440002pt;}
.y132{bottom:707.200012pt;}
.y85{bottom:711.359985pt;}
.y13{bottom:712.000000pt;}
.y194{bottom:713.920013pt;}
.y288{bottom:714.079987pt;}
.y237{bottom:714.720001pt;}
.y1b8{bottom:716.640015pt;}
.y26c{bottom:717.440002pt;}
.y60{bottom:719.359985pt;}
.y172{bottom:720.640015pt;}
.ya3{bottom:723.200012pt;}
.y84{bottom:726.720001pt;}
.y12{bottom:727.359985pt;}
.y193{bottom:729.279999pt;}
.y287{bottom:729.440002pt;}
.y251{bottom:730.720001pt;}
.y1b7{bottom:732.000000pt;}
.y20a{bottom:732.160004pt;}
.y26b{bottom:732.799988pt;}
.y5f{bottom:734.720001pt;}
.y217{bottom:736.160004pt;}
.ya2{bottom:738.559998pt;}
.y83{bottom:742.079987pt;}
.y286{bottom:744.799988pt;}
.y250{bottom:746.079987pt;}
.y1b6{bottom:747.359985pt;}
.y11{bottom:748.000000pt;}
.y26a{bottom:748.160004pt;}
.y236{bottom:748.799988pt;}
.y5e{bottom:750.079987pt;}
.ya1{bottom:753.920013pt;}
.y171{bottom:754.399994pt;}
.y82{bottom:757.440002pt;}
.y285{bottom:760.160004pt;}
.y24f{bottom:761.440002pt;}
.y192{bottom:763.040009pt;}
.y235{bottom:764.160004pt;}
.y5d{bottom:765.440002pt;}
.ya0{bottom:769.279999pt;}
.y269{bottom:771.359985pt;}
.y191{bottom:774.239990pt;}
.y2a1{bottom:775.359985pt;}
.y284{bottom:778.079987pt;}
.y10{bottom:779.359985pt;}
.y234{bottom:779.519989pt;}
.y5c{bottom:780.799988pt;}
.y1b5{bottom:781.119995pt;}
.y24e{bottom:784.799988pt;}
.y2a0{bottom:790.720001pt;}
.y1b4{bottom:792.320007pt;}
.y9f{bottom:793.440002pt;}
.yf{bottom:794.720001pt;}
.y1df{bottom:796.000000pt;}
.y5b{bottom:796.160004pt;}
.y268{bottom:800.000000pt;}
.y24d{bottom:800.160004pt;}
.y29f{bottom:806.080002pt;}
.y9e{bottom:808.800003pt;}
.y5a{bottom:811.360001pt;}
.y233{bottom:813.440002pt;}
.y267{bottom:815.360001pt;}
.ye{bottom:822.240005pt;}
.y29e{bottom:824.000000pt;}
.y9d{bottom:824.160004pt;}
.y59{bottom:826.720001pt;}
.y232{bottom:828.800003pt;}
.yd{bottom:838.399994pt;}
.y283{bottom:839.360001pt;}
.y58{bottom:842.080002pt;}
.y266{bottom:844.000000pt;}
.y24c{bottom:844.160004pt;}
.y9c{bottom:848.479996pt;}
.y282{bottom:854.720001pt;}
.y57{bottom:857.440002pt;}
.y24b{bottom:859.360001pt;}
.y9b{bottom:863.839996pt;}
.yc{bottom:869.759995pt;}
.y281{bottom:870.080002pt;}
.y56{bottom:872.800003pt;}
.y24a{bottom:874.720001pt;}
.y9a{bottom:879.199997pt;}
.y280{bottom:885.440002pt;}
.yb{bottom:886.880005pt;}
.y1e6{bottom:888.000000pt;}
.y55{bottom:888.160004pt;}
.y54{bottom:903.360001pt;}
.ya{bottom:911.360001pt;}
.y53{bottom:918.720001pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.h16{height:11.839965pt;}
.h11{height:11.839966pt;}
.h17{height:11.840026pt;}
.h15{height:11.840027pt;}
.h13{height:12.000000pt;}
.h10{height:13.280029pt;}
.h14{height:30.197396pt;}
.h9{height:30.923834pt;}
.h5{height:31.767850pt;}
.hb{height:37.408566pt;}
.h2{height:37.479369pt;}
.h12{height:38.368455pt;}
.hc{height:38.599427pt;}
.h4{height:39.447842pt;}
.he{height:39.487661pt;}
.h3{height:40.691863pt;}
.h8{height:42.898199pt;}
.h6{height:42.949849pt;}
.hf{height:43.699419pt;}
.h1{height:47.530884pt;}
.ha{height:49.483770pt;}
.hd{height:55.363706pt;}
.h18{height:57.266346pt;}
.h7{height:76.164237pt;}
.h0{height:1056.000000pt;}
.w8{width:5.279968pt;}
.wb{width:5.279969pt;}
.w6{width:5.279998pt;}
.wd{width:5.279999pt;}
.wa{width:5.280029pt;}
.w4{width:6.079956pt;}
.w2{width:6.080017pt;}
.w5{width:15.679993pt;}
.w1{width:17.919983pt;}
.w3{width:17.920044pt;}
.wf{width:21.279999pt;}
.wc{width:22.559998pt;}
.we{width:23.199982pt;}
.w7{width:24.000000pt;}
.w9{width:29.279968pt;}
.w11{width:33.279999pt;}
.w12{width:44.799988pt;}
.w10{width:57.919983pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:119.839996pt;}
.x7{left:128.320007pt;}
.x48{left:131.039993pt;}
.xe{left:133.440002pt;}
.x11{left:144.000000pt;}
.xb{left:155.199997pt;}
.x24{left:160.800003pt;}
.x16{left:166.559998pt;}
.x12{left:168.000000pt;}
.x40{left:170.240005pt;}
.x49{left:172.320007pt;}
.xc{left:181.759995pt;}
.x20{left:185.919998pt;}
.x4e{left:191.520004pt;}
.xa{left:204.800003pt;}
.x4a{left:210.720001pt;}
.x8{left:213.279999pt;}
.x1{left:219.199997pt;}
.x1f{left:258.239990pt;}
.x2{left:340.959991pt;}
.x3{left:355.040009pt;}
.x4d{left:372.799988pt;}
.x3f{left:374.880005pt;}
.xd{left:376.480011pt;}
.x46{left:378.880005pt;}
.x3e{left:380.959991pt;}
.x47{left:385.760010pt;}
.x17{left:390.239990pt;}
.x45{left:392.799988pt;}
.x6{left:394.559998pt;}
.x23{left:400.959991pt;}
.x9{left:408.000000pt;}
.xf{left:419.359985pt;}
.x29{left:424.320007pt;}
.x43{left:430.399994pt;}
.x10{left:432.799988pt;}
.x33{left:439.679993pt;}
.x51{left:443.359985pt;}
.x39{left:445.600006pt;}
.x27{left:446.559998pt;}
.x28{left:447.679993pt;}
.x52{left:455.359985pt;}
.x3b{left:457.600006pt;}
.x44{left:465.600006pt;}
.x13{left:467.359985pt;}
.x3c{left:469.119995pt;}
.x25{left:475.040009pt;}
.x3a{left:482.079987pt;}
.x15{left:493.920013pt;}
.x22{left:505.600006pt;}
.x3d{left:508.640015pt;}
.x1c{left:510.399994pt;}
.x1b{left:526.400024pt;}
.x34{left:535.200012pt;}
.x2a{left:560.159973pt;}
.x1e{left:563.359985pt;}
.x2c{left:566.239990pt;}
.x2b{left:567.520020pt;}
.x2d{left:584.159973pt;}
.x1d{left:587.039978pt;}
.x35{left:589.919983pt;}
.x1a{left:591.359985pt;}
.x2e{left:607.039978pt;}
.x36{left:610.400024pt;}
.x2f{left:613.440002pt;}
.x18{left:624.960022pt;}
.x37{left:634.400024pt;}
.x19{left:646.400024pt;}
.x31{left:659.200012pt;}
.x30{left:663.359985pt;}
.x42{left:674.080017pt;}
.x50{left:678.239990pt;}
.x32{left:680.960022pt;}
.x38{left:684.000000pt;}
.x4c{left:685.119995pt;}
.x4b{left:687.200012pt;}
.x4f{left:689.119995pt;}
.x14{left:690.559998pt;}
.x41{left:692.159973pt;}
.x4{left:696.000000pt;}
.x26{left:699.200012pt;}
.x21{left:701.599976pt;}
}




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