
    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_699e1458dec3189049298456.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_c5073a66a69eb51f9e19284a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_5211c139752f6a025adf767f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_4432979e5aa74f7a65d71bfb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a2218355a3fdcddf8f7abe83.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39de71b45d7558fcee8dfbdb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_244ee920ba9f707c9992b4b6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f3a48add61d21f95d0aae144.woff')format("woff");}.ff8{font-family:ff8;line-height:0.858398;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_0ffa5ccb6afaebe19f8ebad0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_c250b271e2cf1c810feb0091.woff')format("woff");}.ffa{font-family:ffa;line-height:0.844727;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_4432979e5aa74f7a65d71bfb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bb80facfd046824a4a4e0653.woff')format("woff");}.ffc{font-family:ffc;line-height:0.958008;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:ffd;src:url('chunks/assets/font_9d5fc94a3ab0afb19171c49e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.713867;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:ffe;src:url('chunks/assets/font_ff9d3cff23b24cb2c10553f6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.763672;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:fff;src:url('chunks/assets/font_a9b97bbc89ae5244e15763f5.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9749bc002526d16cf6053e9f.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-31.106692px;}
.v2{vertical-align:-28.278810px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.106688px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:4.486964px;}
.ls4{letter-spacing:50.084770px;}
.ls3{letter-spacing:67.764587px;}
.ls1{letter-spacing:2434.111507px;}
.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;}
}
.ws7{word-spacing:-33.000001px;}
.ws2{word-spacing:-18.465821px;}
.ws1{word-spacing:-18.272461px;}
.ws6{word-spacing:-16.611328px;}
.ws5{word-spacing:-14.950195px;}
.ws3{word-spacing:-10.963477px;}
.ws4{word-spacing:-9.966797px;}
.ws8{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.955800px;}
._8{width:3.502853px;}
._7{width:4.711573px;}
._6{width:8.765548px;}
._1e{width:9.765663px;}
._5{width:12.944997px;}
._17{width:14.177218px;}
._4{width:17.047655px;}
._3{width:21.606689px;}
._2{width:22.681039px;}
._1{width:26.736734px;}
._1a{width:27.852722px;}
._19{width:31.165890px;}
._1b{width:32.278530px;}
._1d{width:35.815585px;}
._1f{width:40.241512px;}
._24{width:41.325562px;}
._1c{width:44.780061px;}
._18{width:49.325655px;}
._23{width:53.849886px;}
._22{width:58.310045px;}
._26{width:62.807669px;}
._25{width:67.314121px;}
._21{width:152.629886px;}
._20{width:157.326343px;}
._b{width:911.432101px;}
._f{width:1324.047250px;}
._e{width:1382.731822px;}
._12{width:1595.556043px;}
._11{width:1657.946669px;}
._13{width:1677.807020px;}
._d{width:1780.724835px;}
._14{width:1817.315811px;}
._c{width:1954.744874px;}
._10{width:2037.326558px;}
._a{width:2046.236087px;}
._16{width:2242.866344px;}
._15{width:2328.760154px;}
._9{width:2475.655041px;}
.fc7{color:rgb(56,171,73);}
.fc6{color:rgb(70,120,134);}
.fc5{color:rgb(152,0,0);}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(0,171,209);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:39.600001px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:83.999997px;}
.fs8{font-size:101.999997px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y12e{bottom:5.058837px;}
.y7b{bottom:5.059571px;}
.y1b{bottom:5.059572px;}
.y235{bottom:5.060303px;}
.y23{bottom:10.246577px;}
.y3f{bottom:11.809200px;}
.y36{bottom:11.809569px;}
.y1f{bottom:11.809571px;}
.y4a{bottom:11.809572px;}
.y9c{bottom:28.624510px;}
.y7a{bottom:28.624878px;}
.y1a{bottom:28.625337px;}
.y45{bottom:28.625611px;}
.y1c7{bottom:28.625976px;}
.y234{bottom:28.628905px;}
.y22{bottom:29.219972px;}
.y2{bottom:34.693107px;}
.y3e{bottom:35.374875px;}
.y35{bottom:35.375244px;}
.y49{bottom:35.375246px;}
.y1c6{bottom:57.782952px;}
.y43{bottom:57.784422px;}
.y18{bottom:57.784512px;}
.y78{bottom:57.784797px;}
.y2ff{bottom:57.785892px;}
.y3d{bottom:58.940730px;}
.y34{bottom:58.940919px;}
.y3c{bottom:82.506405px;}
.y3b{bottom:106.072080px;}
.y2f2{bottom:111.062985px;}
.y2aa{bottom:111.062994px;}
.y144{bottom:111.064455px;}
.y18a{bottom:111.064456px;}
.y12b{bottom:111.064462px;}
.y42{bottom:115.205208px;}
.y17{bottom:117.881292px;}
.y272{bottom:118.132687px;}
.yd7{bottom:118.133419px;}
.y108{bottom:118.134157px;}
.y1f3{bottom:118.134158px;}
.y3a{bottom:129.637755px;}
.y2be{bottom:130.272232px;}
.y1ff{bottom:132.409422px;}
.y189{bottom:132.487797px;}
.y2a9{bottom:132.487800px;}
.y41{bottom:138.770881px;}
.y1e4{bottom:138.829840px;}
.yd8{bottom:139.556758px;}
.y165{bottom:139.557493px;}
.y273{bottom:139.557494px;}
.y109{bottom:139.557497px;}
.y1f4{bottom:139.557498px;}
.y12a{bottom:139.557502px;}
.y265{bottom:143.944332px;}
.yeb{bottom:145.795161px;}
.y232{bottom:151.322032px;}
.y39{bottom:153.203430px;}
.y2bd{bottom:153.835708px;}
.yda{bottom:153.910396px;}
.y188{bottom:153.911137px;}
.y1fe{bottom:155.974362px;}
.y24d{bottom:156.747068px;}
.y166{bottom:160.980833px;}
.y10a{bottom:160.980837px;}
.y12c{bottom:160.980843px;}
.y2d9{bottom:160.982299px;}
.y2a8{bottom:160.982302px;}
.y274{bottom:160.982309px;}
.y1c5{bottom:165.185307px;}
.y1e3{bottom:165.929446px;}
.y16{bottom:168.446967px;}
.yea{bottom:172.896235px;}
.y231{bottom:174.888426px;}
.y290{bottom:175.175526px;}
.y2ac{bottom:175.334475px;}
.y38{bottom:176.961912px;}
.y2bc{bottom:177.402103px;}
.y1fd{bottom:179.540772px;}
.yd9{bottom:182.403438px;}
.y12d{bottom:182.404173px;}
.y10b{bottom:182.404177px;}
.y2da{bottom:182.404183px;}
.y1e2{bottom:193.029057px;}
.y2f1{bottom:194.438234px;}
.y24c{bottom:194.888670px;}
.y230{bottom:198.451903px;}
.y77{bottom:198.703122px;}
.y2bb{bottom:200.968514px;}
.y28f{bottom:202.278076px;}
.y1fc{bottom:203.107182px;}
.y2ab{bottom:203.826043px;}
.ydb{bottom:203.826778px;}
.y167{bottom:203.827513px;}
.y10c{bottom:203.827518px;}
.y1c4{bottom:206.751702px;}
.y264{bottom:211.215824px;}
.y2f0{bottom:218.004637px;}
.y15{bottom:219.012642px;}
.y22f{bottom:222.018314px;}
.y2ba{bottom:224.534917px;}
.y10d{bottom:225.250863px;}
.ye9{bottom:226.995856px;}
.y1a8{bottom:227.904045px;}
.y28e{bottom:229.377675px;}
.y9b{bottom:236.014887px;}
.y164{bottom:238.276605px;}
.y271{bottom:239.162836px;}
.y1e1{bottom:240.476073px;}
.y2ef{bottom:241.568115px;}
.y22e{bottom:245.584717px;}
.y145{bottom:246.674193px;}
.y2b9{bottom:248.101325px;}
.y1fb{bottom:248.206786px;}
.y1c3{bottom:248.318117px;}
.y1a7{bottom:251.470452px;}
.ye8{bottom:254.096929px;}
.y129{bottom:254.221441px;}
.y28d{bottom:256.477289px;}
.y9a{bottom:259.580562px;}
.y2d8{bottom:260.010495px;}
.y187{bottom:263.430915px;}
.y76{bottom:264.410157px;}
.y2ee{bottom:265.134522px;}
.y163{bottom:265.377679px;}
.y270{bottom:266.262447px;}
.y263{bottom:267.923579px;}
.y146{bottom:268.097533px;}
.y22d{bottom:269.148195px;}
.y14{bottom:269.578302px;}
.y2b8{bottom:271.664802px;}
.y1c2{bottom:271.883053px;}
.y1a6{bottom:275.036862px;}
.y1fa{bottom:275.306397px;}
.ye7{bottom:281.197270px;}
.y128{bottom:281.322516px;}
.yd6{bottom:282.295902px;}
.y2d7{bottom:283.576902px;}
.y28c{bottom:283.579827px;}
.y186{bottom:286.997323px;}
.y75{bottom:287.975832px;}
.y2a7{bottom:288.182368px;}
.y147{bottom:289.520868px;}
.y1e0{bottom:290.621335px;}
.y262{bottom:291.489982px;}
.y162{bottom:292.477294px;}
.y22c{bottom:292.714602px;}
.y40{bottom:294.790098px;}
.y1c1{bottom:295.447997px;}
.y99{bottom:296.285892px;}
.y21a{bottom:297.718512px;}
.y1a5{bottom:298.601802px;}
.y1f9{bottom:302.407467px;}
.yd5{bottom:305.861577px;}
.y2ed{bottom:306.700920px;}
.y2d6{bottom:307.143312px;}
.y127{bottom:308.422122px;}
.y185{bottom:310.562262px;}
.y28b{bottom:310.679440px;}
.y148{bottom:310.944213px;}
.y26f{bottom:311.364987px;}
.y74{bottom:311.541507px;}
.y2b7{bottom:311.731205px;}
.y2a6{bottom:311.748779px;}
.y261{bottom:315.056390px;}
.y1df{bottom:317.722410px;}
.y37{bottom:318.355771px;}
.y1c0{bottom:319.014405px;}
.y161{bottom:319.579827px;}
.y13{bottom:320.143977px;}
.y1a4{bottom:322.166743px;}
.y107{bottom:322.560782px;}
.y219{bottom:324.819582px;}
.yd4{bottom:329.427252px;}
.y1f8{bottom:329.508548px;}
.y2ec{bottom:330.267327px;}
.y2d5{bottom:330.706782px;}
.yb7{bottom:332.839602px;}
.y22b{bottom:334.281007px;}
.y73{bottom:335.107182px;}
.y2b6{bottom:335.294682px;}
.ye6{bottom:335.298333px;}
.y2a5{bottom:335.312256px;}
.y126{bottom:335.523196px;}
.y28a{bottom:337.779047px;}
.y260{bottom:338.619867px;}
.y1bf{bottom:342.580813px;}
.y1de{bottom:344.823488px;}
.y160{bottom:346.679438px;}
.y106{bottom:349.660401px;}
.y184{bottom:350.627192px;}
.yd3{bottom:352.992913px;}
.y26e{bottom:356.464602px;}
.y33{bottom:356.546448px;}
.y1f7{bottom:356.609622px;}
.y22a{bottom:357.847411px;}
.y72{bottom:358.672857px;}
.y2a4{bottom:358.878660px;}
.y125{bottom:362.622807px;}
.y1a3{bottom:363.733152px;}
.y289{bottom:364.878658px;}
.y98{bottom:366.132567px;}
.y1be{bottom:366.145752px;}
.y218{bottom:369.917751px;}
.y12{bottom:370.709652px;}
.y1dd{bottom:371.924562px;}
.y2d4{bottom:372.273193px;}
.y15f{bottom:373.780513px;}
.y183{bottom:374.193604px;}
.yb6{bottom:374.405263px;}
.y2eb{bottom:374.592037px;}
.y2b5{bottom:375.361077px;}
.yd2{bottom:376.558587px;}
.y105{bottom:376.761473px;}
.y25f{bottom:378.686272px;}
.y229{bottom:381.413818px;}
.y71{bottom:382.238532px;}
.y2a3{bottom:382.445067px;}
.y1f6{bottom:383.707765px;}
.y1a2{bottom:387.299557px;}
.y288{bottom:391.981209px;}
.y2d3{bottom:395.839604px;}
.y217{bottom:397.020261px;}
.y182{bottom:397.758540px;}
.yb5{bottom:397.970936px;}
.y15e{bottom:400.880132px;}
.y26d{bottom:401.565130px;}
.y25e{bottom:402.249750px;}
.y32{bottom:403.677796px;}
.y104{bottom:403.861809px;}
.y228{bottom:404.977294px;}
.y70{bottom:405.804207px;}
.y1bd{bottom:407.710692px;}
.y124{bottom:407.725337px;}
.y1a1{bottom:410.864503px;}
.y2b4{bottom:415.427487px;}
.y1dc{bottom:417.024165px;}
.yd1{bottom:418.124261px;}
.y143{bottom:419.080804px;}
.y287{bottom:419.083741px;}
.y2d2{bottom:419.406007px;}
.y11{bottom:421.275327px;}
.y181{bottom:421.324952px;}
.yb4{bottom:421.536615px;}
.y2a2{bottom:422.511471px;}
.y216{bottom:424.119891px;}
.y1f5{bottom:425.274924px;}
.y25d{bottom:425.816157px;}
.y15d{bottom:427.981202px;}
.y227{bottom:428.540771px;}
.y6f{bottom:429.369867px;}
.y103{bottom:430.962883px;}
.y1bc{bottom:431.277102px;}
.y97{bottom:431.839588px;}
.y1a0{bottom:434.429442px;}
.y123{bottom:434.824951px;}
.y2ea{bottom:435.252688px;}
.yd0{bottom:441.689934px;}
.y31{bottom:441.868471px;}
.y2d1{bottom:442.972415px;}
.y1db{bottom:444.123779px;}
.y180{bottom:444.889888px;}
.yb3{bottom:445.102288px;}
.y2a1{bottom:446.074948px;}
.y286{bottom:446.180421px;}
.y142{bottom:446.181878px;}
.y215{bottom:451.222412px;}
.y1bb{bottom:454.843512px;}
.y15c{bottom:455.080821px;}
.y96{bottom:455.405267px;}
.y2b3{bottom:455.493153px;}
.y6e{bottom:457.074824px;}
.y102{bottom:458.063236px;}
.y2e9{bottom:458.816164px;}
.y122{bottom:461.926026px;}
.ycf{bottom:465.255613px;}
.y25c{bottom:465.882575px;}
.y2d0{bottom:466.535892px;}
.y17f{bottom:468.456299px;}
.yb2{bottom:468.667962px;}
.y2a0{bottom:469.641359px;}
.y226{bottom:470.110107px;}
.y1da{bottom:471.226317px;}
.y10{bottom:471.841002px;}
.y141{bottom:473.282952px;}
.y285{bottom:473.282955px;}
.y19f{bottom:475.995852px;}
.y214{bottom:478.320568px;}
.y1ba{bottom:478.408452px;}
.y95{bottom:478.970941px;}
.y15b{bottom:482.181893px;}
.y2e8{bottom:482.382576px;}
.y30{bottom:485.118717px;}
.y101{bottom:485.164302px;}
.yce{bottom:488.821286px;}
.y121{bottom:489.025632px;}
.y25b{bottom:489.448969px;}
.y17e{bottom:492.021240px;}
.y29f{bottom:493.207762px;}
.y6d{bottom:495.781857px;}
.y140{bottom:500.382563px;}
.y284{bottom:500.382569px;}
.y94{bottom:502.536615px;}
.y213{bottom:505.421627px;}
.y2e7{bottom:505.948980px;}
.y225{bottom:509.238285px;}
.y15a{bottom:509.282968px;}
.yb1{bottom:510.233636px;}
.y2cf{bottom:512.241208px;}
.y100{bottom:512.263913px;}
.ycd{bottom:512.386960px;}
.y2f{bottom:512.824034px;}
.y25a{bottom:513.015381px;}
.y17d{bottom:515.587648px;}
.y120{bottom:516.126706px;}
.y1d9{bottom:516.325932px;}
.y29e{bottom:516.771240px;}
.y6c{bottom:519.347532px;}
.y1b9{bottom:519.973393px;}
.y19e{bottom:521.906655px;}
.yf{bottom:522.406632px;}
.y2fe{bottom:523.111077px;}
.y24b{bottom:523.948978px;}
.y93{bottom:526.102289px;}
.y13f{bottom:527.483637px;}
.y283{bottom:527.485107px;}
.y2e6{bottom:529.515387px;}
.y212{bottom:532.522697px;}
.yb0{bottom:533.799315px;}
.y159{bottom:536.382582px;}
.y259{bottom:536.581785px;}
.y17c{bottom:539.152587px;}
.yff{bottom:539.364987px;}
.y29d{bottom:540.337647px;}
.y6b{bottom:542.913207px;}
.y11f{bottom:543.226317px;}
.y1d8{bottom:543.425543px;}
.y1b8{bottom:543.539788px;}
.y24a{bottom:547.515373px;}
.y92{bottom:549.667963px;}
.ycc{bottom:553.952627px;}
.y282{bottom:554.581791px;}
.y2e{bottom:555.670709px;}
.y2fd{bottom:557.033202px;}
.yaf{bottom:557.364988px;}
.y211{bottom:559.623778px;}
.y258{bottom:560.148192px;}
.y158{bottom:563.483656px;}
.y6a{bottom:566.478882px;}
.y1b7{bottom:567.106199px;}
.y11e{bottom:570.327387px;}
.y1d7{bottom:570.526617px;}
.y249{bottom:571.081784px;}
.y2e5{bottom:571.081792px;}
.y13e{bottom:572.584722px;}
.ye{bottom:572.972307px;}
.y91{bottom:573.233636px;}
.y19d{bottom:573.732825px;}
.ycb{bottom:577.518301px;}
.y2ce{bottom:577.948979px;}
.y17b{bottom:579.219002px;}
.yae{bottom:580.930662px;}
.y281{bottom:581.684325px;}
.y29c{bottom:584.542964px;}
.yfe{bottom:585.070319px;}
.y210{bottom:586.723388px;}
.y69{bottom:590.044557px;}
.y157{bottom:590.584722px;}
.y1b6{bottom:590.671140px;}
.y2d{bottom:594.377742px;}
.y248{bottom:594.645261px;}
.y2e4{bottom:594.645268px;}
.y90{bottom:596.799315px;}
.y11d{bottom:597.427738px;}
.y2fc{bottom:599.636712px;}
.y13d{bottom:599.684333px;}
.y257{bottom:600.211664px;}
.yca{bottom:601.083975px;}
.y2cd{bottom:601.515382px;}
.y17a{bottom:602.783938px;}
.y280{bottom:608.786866px;}
.y1f2{bottom:612.320071px;}
.y20f{bottom:613.823004px;}
.y2c{bottom:614.008847px;}
.y1b5{bottom:614.236080px;}
.y1d6{bottom:616.231932px;}
.y156{bottom:617.684333px;}
.y68{bottom:617.749874px;}
.y2e3{bottom:618.211663px;}
.y247{bottom:618.211665px;}
.y8f{bottom:620.364988px;}
.y19c{bottom:621.211662px;}
.yad{bottom:622.496336px;}
.yd{bottom:623.537982px;}
.y256{bottom:623.778067px;}
.yc9{bottom:624.649649px;}
.y2cc{bottom:625.081790px;}
.y179{bottom:626.350349px;}
.y13c{bottom:626.785407px;}
.y27f{bottom:635.886477px;}
.y1b4{bottom:637.802487px;}
.y11c{bottom:638.993412px;}
.y1f1{bottom:639.419670px;}
.y20e{bottom:640.925536px;}
.yfd{bottom:641.777338px;}
.y246{bottom:641.778072px;}
.y2e2{bottom:641.778074px;}
.y8e{bottom:643.930662px;}
.y19b{bottom:644.778070px;}
.y155{bottom:644.785407px;}
.y29b{bottom:644.786862px;}
.yac{bottom:646.062015px;}
.y255{bottom:647.341545px;}
.yc8{bottom:648.215323px;}
.y2cb{bottom:648.645267px;}
.y178{bottom:649.916752px;}
.y2b{bottom:652.199522px;}
.y67{bottom:656.456907px;}
.y27e{bottom:662.986077px;}
.y2e1{bottom:665.341551px;}
.y2fb{bottom:665.341558px;}
.yfc{bottom:665.343011px;}
.y1f0{bottom:666.520748px;}
.y8d{bottom:667.496336px;}
.y20d{bottom:668.025151px;}
.yab{bottom:669.627688px;}
.y254{bottom:670.907952px;}
.yc7{bottom:671.780996px;}
.y13b{bottom:671.885007px;}
.y154{bottom:671.885019px;}
.y2ca{bottom:672.211663px;}
.y177{bottom:673.481698px;}
.yc{bottom:674.103657px;}
.y1d5{bottom:676.474362px;}
.y1b3{bottom:679.368902px;}
.y66{bottom:680.022582px;}
.y245{bottom:683.341547px;}
.y11b{bottom:684.094483px;}
.y19a{bottom:686.343012px;}
.y2fa{bottom:688.907953px;}
.y2e0{bottom:688.907955px;}
.yfb{bottom:688.908690px;}
.y29a{bottom:689.886478px;}
.y27d{bottom:690.085692px;}
.y2a{bottom:690.390197px;}
.y8c{bottom:691.062015px;}
.yaa{bottom:693.193362px;}
.y1ef{bottom:693.621822px;}
.y20c{bottom:695.124750px;}
.yc6{bottom:695.346675px;}
.y2c9{bottom:695.778074px;}
.y176{bottom:697.046637px;}
.y13a{bottom:698.986081px;}
.y153{bottom:698.986092px;}
.y65{bottom:702.025273px;}
.y1b2{bottom:702.933838px;}
.y244{bottom:706.907959px;}
.y199{bottom:709.909422px;}
.y11a{bottom:711.194097px;}
.yfa{bottom:712.474363px;}
.y2f9{bottom:712.474364px;}
.y253{bottom:712.474378px;}
.y8b{bottom:714.627688px;}
.y299{bottom:716.986075px;}
.y1d4{bottom:718.040772px;}
.yc5{bottom:718.912348px;}
.y2c8{bottom:719.341551px;}
.y1ee{bottom:720.722907px;}
.y20b{bottom:722.225828px;}
.yb{bottom:724.669287px;}
.y64{bottom:725.498653px;}
.y152{bottom:726.085690px;}
.y139{bottom:726.085692px;}
.y1b1{bottom:726.498782px;}
.y29{bottom:728.580872px;}
.y243{bottom:730.474372px;}
.y198{bottom:733.474362px;}
.ya9{bottom:734.759024px;}
.y27c{bottom:735.188236px;}
.yf9{bottom:736.040037px;}
.y2f8{bottom:736.040767px;}
.y252{bottom:736.040773px;}
.y8a{bottom:738.193362px;}
.y119{bottom:738.295167px;}
.y175{bottom:738.613032px;}
.yc4{bottom:742.478022px;}
.y2c7{bottom:742.907955px;}
.y298{bottom:744.085693px;}
.y63{bottom:748.972048px;}
.y20a{bottom:749.326902px;}
.y1b0{bottom:750.065190px;}
.y224{bottom:751.673577px;}
.y151{bottom:753.188232px;}
.y242{bottom:754.040766px;}
.ye5{bottom:755.641840px;}
.y197{bottom:757.040772px;}
.ya8{bottom:758.324698px;}
.y1d3{bottom:759.605712px;}
.y2f7{bottom:759.607175px;}
.y251{bottom:759.607184px;}
.y89{bottom:761.759023px;}
.y27b{bottom:762.287847px;}
.y118{bottom:765.395507px;}
.y1ed{bottom:765.821046px;}
.yc3{bottom:766.043697px;}
.y2c6{bottom:766.474362px;}
.y28{bottom:766.771546px;}
.y297{bottom:771.188221px;}
.y138{bottom:771.188237px;}
.y62{bottom:772.445428px;}
.y1af{bottom:773.631598px;}
.y55{bottom:774.289677px;}
.ya{bottom:775.234962px;}
.y223{bottom:775.239988px;}
.yf8{bottom:777.605714px;}
.y241{bottom:777.607178px;}
.y174{bottom:780.179447px;}
.y150{bottom:780.287843px;}
.y196{bottom:780.605712px;}
.ya7{bottom:781.890371px;}
.y1d2{bottom:783.170652px;}
.y250{bottom:783.170661px;}
.y88{bottom:785.324696px;}
.yc2{bottom:789.609373px;}
.y2c5{bottom:790.040766px;}
.y117{bottom:792.496582px;}
.y1ec{bottom:792.923580px;}
.y209{bottom:794.427972px;}
.y61{bottom:795.918823px;}
.y1ae{bottom:797.196537px;}
.y54{bottom:797.855352px;}
.y296{bottom:798.287837px;}
.y137{bottom:798.287848px;}
.y222{bottom:798.806392px;}
.y240{bottom:801.170654px;}
.yf7{bottom:801.171388px;}
.y173{bottom:803.744383px;}
.y195{bottom:804.172122px;}
.y27{bottom:804.962221px;}
.ya6{bottom:805.456050px;}
.y24f{bottom:806.737065px;}
.y27a{bottom:807.387447px;}
.y14f{bottom:807.388917px;}
.y87{bottom:808.890375px;}
.ye4{bottom:809.742918px;}
.yc1{bottom:813.175046px;}
.y2c4{bottom:813.607178px;}
.y60{bottom:819.392218px;}
.y116{bottom:819.596918px;}
.y1eb{bottom:820.023194px;}
.y53{bottom:821.421013px;}
.y208{bottom:821.526129px;}
.y221{bottom:822.369869px;}
.y23f{bottom:824.737057px;}
.yf6{bottom:824.737061px;}
.y1d1{bottom:824.737063px;}
.y295{bottom:825.387451px;}
.y136{bottom:825.388917px;}
.y9{bottom:825.800622px;}
.y172{bottom:827.309327px;}
.ya5{bottom:829.021723px;}
.y24e{bottom:830.303472px;}
.y86{bottom:832.456048px;}
.y14e{bottom:834.488532px;}
.y279{bottom:834.489987px;}
.yc0{bottom:836.740725px;}
.ye3{bottom:836.842533px;}
.y2c3{bottom:837.170654px;}
.y1ad{bottom:838.761479px;}
.y5f{bottom:842.865598px;}
.y26{bottom:843.152896px;}
.y194{bottom:844.237067px;}
.y52{bottom:844.986686px;}
.y220{bottom:845.936276px;}
.y115{bottom:846.697992px;}
.y1ea{bottom:847.125732px;}
.yf5{bottom:848.302740px;}
.y1d0{bottom:848.303458px;}
.y23e{bottom:848.303465px;}
.y2f6{bottom:848.303474px;}
.y207{bottom:848.628661px;}
.y171{bottom:850.875735px;}
.y135{bottom:852.488532px;}
.y294{bottom:852.489985px;}
.ya4{bottom:852.587397px;}
.y85{bottom:856.021722px;}
.ybf{bottom:860.306398px;}
.y2c2{bottom:860.737057px;}
.y278{bottom:861.589602px;}
.y14d{bottom:861.589606px;}
.y1ac{bottom:862.327887px;}
.ye2{bottom:863.943606px;}
.y5e{bottom:866.338993px;}
.y193{bottom:867.802003px;}
.y51{bottom:868.552365px;}
.y23d{bottom:871.866942px;}
.y2f5{bottom:871.866951px;}
.y1cf{bottom:871.868402px;}
.yf4{bottom:871.868413px;}
.y114{bottom:873.797607px;}
.y1e9{bottom:874.223877px;}
.y170{bottom:874.442143px;}
.y206{bottom:875.728276px;}
.y8{bottom:876.366297px;}
.y84{bottom:879.587397px;}
.y293{bottom:879.589600px;}
.y134{bottom:879.589606px;}
.y25{bottom:881.343572px;}
.ybe{bottom:883.872072px;}
.y2c1{bottom:884.303465px;}
.y2b2{bottom:884.303476px;}
.y1ab{bottom:885.892826px;}
.y21f{bottom:887.502687px;}
.y26c{bottom:888.689202px;}
.y14c{bottom:888.689205px;}
.y5d{bottom:889.812373px;}
.ye1{bottom:891.043948px;}
.y192{bottom:891.368414px;}
.y50{bottom:892.118038px;}
.ya3{bottom:894.153072px;}
.y1ce{bottom:895.433346px;}
.y2f4{bottom:895.433355px;}
.yf3{bottom:895.434087px;}
.y16f{bottom:898.007082px;}
.y113{bottom:900.898682px;}
.y1e8{bottom:901.324947px;}
.y205{bottom:902.830810px;}
.y83{bottom:903.153072px;}
.y133{bottom:906.689205px;}
.y292{bottom:906.689206px;}
.ybd{bottom:907.437749px;}
.y2c0{bottom:907.866942px;}
.y2b1{bottom:907.866952px;}
.y5c{bottom:913.285768px;}
.y23c{bottom:913.433352px;}
.y2df{bottom:913.433357px;}
.y191{bottom:914.933355px;}
.y4f{bottom:915.683712px;}
.y277{bottom:915.788817px;}
.y14b{bottom:915.790283px;}
.ya2{bottom:917.718746px;}
.ye0{bottom:918.145023px;}
.y1cd{bottom:918.999750px;}
.y2f3{bottom:918.999762px;}
.y24{bottom:919.534246px;}
.y82{bottom:926.718747px;}
.y7{bottom:926.931972px;}
.y1aa{bottom:927.459222px;}
.y112{bottom:927.998292px;}
.y21e{bottom:929.067630px;}
.y204{bottom:929.928953px;}
.ybc{bottom:931.003423px;}
.y2b0{bottom:931.433347px;}
.y2bf{bottom:931.433352px;}
.y291{bottom:933.788817px;}
.y26b{bottom:933.788821px;}
.y132{bottom:933.790283px;}
.y5b{bottom:936.759148px;}
.y2de{bottom:936.999753px;}
.yf2{bottom:936.999763px;}
.y190{bottom:938.499763px;}
.y4e{bottom:939.249387px;}
.y16e{bottom:939.572019px;}
.ya1{bottom:941.284420px;}
.y1cc{bottom:942.566157px;}
.y14a{bottom:942.891357px;}
.ydf{bottom:945.245363px;}
.y81{bottom:950.284420px;}
.y21d{bottom:952.632570px;}
.ybb{bottom:954.569092px;}
.y2af{bottom:954.999758px;}
.y23b{bottom:954.999764px;}
.y203{bottom:957.030027px;}
.y21{bottom:957.724917px;}
.y5a{bottom:960.232543px;}
.yf1{bottom:960.565437px;}
.y2dd{bottom:960.566164px;}
.y26a{bottom:960.891354px;}
.y131{bottom:960.891357px;}
.y18f{bottom:962.064702px;}
.y4d{bottom:962.815062px;}
.y16d{bottom:963.138430px;}
.ya0{bottom:964.850093px;}
.y1a9{bottom:967.524907px;}
.y276{bottom:969.990968px;}
.y111{bottom:970.944587px;}
.y20{bottom:972.106021px;}
.yde{bottom:972.346437px;}
.y80{bottom:973.850098px;}
.y21c{bottom:976.198977px;}
.y6{bottom:977.497647px;}
.yba{bottom:978.134766px;}
.y23a{bottom:978.566158px;}
.y2ae{bottom:978.566161px;}
.y59{bottom:983.705938px;}
.yf0{bottom:984.131097px;}
.y202{bottom:984.131103px;}
.y1cb{bottom:984.131104px;}
.y2dc{bottom:984.132567px;}
.y4c{bottom:986.380737px;}
.y16c{bottom:986.704833px;}
.y1e7{bottom:987.990967px;}
.y269{bottom:987.990969px;}
.y130{bottom:987.990972px;}
.y149{bottom:987.990975px;}
.y9f{bottom:988.415772px;}
.y275{bottom:997.093506px;}
.y7f{bottom:997.415772px;}
.ydd{bottom:999.446778px;}
.yb9{bottom:1001.700440px;}
.y18e{bottom:1002.131101px;}
.y2ad{bottom:1002.132569px;}
.y239{bottom:1002.132571px;}
.y58{bottom:1007.179321px;}
.y2db{bottom:1007.696044px;}
.y1ca{bottom:1007.696048px;}
.y4b{bottom:1009.946412px;}
.y16b{bottom:1010.269778px;}
.y1e{bottom:1010.296692px;}
.y9e{bottom:1011.981445px;}
.y12f{bottom:1015.092042px;}
.y110{bottom:1015.092049px;}
.y1e6{bottom:1015.093500px;}
.y268{bottom:1015.093502px;}
.y21b{bottom:1019.144532px;}
.y7e{bottom:1020.981446px;}
.y18d{bottom:1025.696045px;}
.y201{bottom:1025.696046px;}
.yef{bottom:1025.696778px;}
.ydc{bottom:1026.547117px;}
.y5{bottom:1028.063325px;}
.y48{bottom:1029.577513px;}
.y57{bottom:1030.652710px;}
.y1c9{bottom:1031.262451px;}
.y16a{bottom:1033.834718px;}
.y9d{bottom:1035.547119px;}
.yb8{bottom:1038.405765px;}
.y1e5{bottom:1042.191656px;}
.y10f{bottom:1042.193115px;}
.y267{bottom:1042.193118px;}
.y7d{bottom:1044.547119px;}
.y238{bottom:1049.262450px;}
.yee{bottom:1049.262452px;}
.y18c{bottom:1049.262453px;}
.y47{bottom:1053.143188px;}
.y1d{bottom:1053.546936px;}
.y1c8{bottom:1054.828859px;}
.y169{bottom:1057.401123px;}
.y266{bottom:1069.292724px;}
.y10e{bottom:1069.292726px;}
.yed{bottom:1072.828125px;}
.y237{bottom:1072.828858px;}
.y200{bottom:1072.828859px;}
.y18b{bottom:1072.828861px;}
.y46{bottom:1076.708862px;}
.y4{bottom:1078.629011px;}
.y56{bottom:1081.252075px;}
.y1c{bottom:1081.252258px;}
.y7c{bottom:1081.252442px;}
.y168{bottom:1091.346681px;}
.y236{bottom:1096.392335px;}
.yec{bottom:1096.393800px;}
.y233{bottom:1114.898438px;}
.y44{bottom:1114.899535px;}
.y19{bottom:1114.899719px;}
.y79{bottom:1114.899903px;}
.y3{bottom:1129.194684px;}
.y1{bottom:1156.700787px;}
.h13{height:27.000000px;}
.h6{height:37.065674px;}
.h1f{height:43.989259px;}
.h19{height:44.891603px;}
.h14{height:44.999999px;}
.h17{height:45.000007px;}
.h8{height:48.049806px;}
.h2{height:49.500001px;}
.h7{height:51.446778px;}
.he{height:54.000000px;}
.hb{height:60.631347px;}
.h1d{height:60.806656px;}
.h12{height:60.806686px;}
.h11{height:60.806687px;}
.h10{height:60.806689px;}
.h15{height:60.806692px;}
.h18{height:60.806699px;}
.h16{height:62.999998px;}
.h1e{height:76.499998px;}
.h1c{height:79.980467px;}
.h9{height:84.197022px;}
.h5{height:89.999998px;}
.h3{height:105.924135px;}
.hc{height:105.924315px;}
.h1a{height:105.925785px;}
.h1{height:106.299213px;}
.hf{height:148.100097px;}
.h4{height:148.100281px;}
.hd{height:148.100465px;}
.h1b{height:148.101562px;}
.ha{height:178.459533px;}
.h0{height:1263.000000px;}
.w4{width:126.000012px;}
.w8{width:168.750000px;}
.w5{width:169.875000px;}
.w9{width:179.999954px;}
.w6{width:181.124954px;}
.wa{width:201.374953px;}
.w7{width:202.499953px;}
.w2{width:271.125000px;}
.w3{width:407.249910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:7.875000px;}
.x9{left:9.000000px;}
.x1{left:106.299213px;}
.x5{left:107.424213px;}
.x13{left:130.462165px;}
.xf{left:133.299213px;}
.x12{left:136.001197px;}
.x10{left:160.299213px;}
.x15{left:187.299213px;}
.x8{left:233.424225px;}
.xc{left:234.549225px;}
.x1a{left:247.912991px;}
.x1d{left:274.010044px;}
.x2{left:280.674213px;}
.x1c{left:291.923698px;}
.x17{left:307.638731px;}
.x14{left:330.632149px;}
.x7{left:379.674225px;}
.xa{left:403.299225px;}
.xd{left:404.424225px;}
.xb{left:584.424180px;}
.xe{left:585.549180px;}
.x16{left:644.456699px;}
.x18{left:678.206699px;}
.x1b{left:712.674213px;}
.x19{left:753.019165px;}
.x11{left:770.049213px;}
.x3{left:777.476384px;}
.x4{left:786.614197px;}
.x1e{left:888.174213px;}
@media print{
.v3{vertical-align:-27.650393pt;}
.v2{vertical-align:-25.136720pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.650390pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:3.988412pt;}
.ls4{letter-spacing:44.519795pt;}
.ls3{letter-spacing:60.235189pt;}
.ls1{letter-spacing:2163.654673pt;}
.ws7{word-spacing:-29.333334pt;}
.ws2{word-spacing:-16.414063pt;}
.ws1{word-spacing:-16.242188pt;}
.ws6{word-spacing:-14.765625pt;}
.ws5{word-spacing:-13.289063pt;}
.ws3{word-spacing:-9.745313pt;}
.ws4{word-spacing:-8.859375pt;}
.ws8{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.738489pt;}
._8{width:3.113647pt;}
._7{width:4.188064pt;}
._6{width:7.791598pt;}
._1e{width:8.680589pt;}
._5{width:11.506664pt;}
._17{width:12.601972pt;}
._4{width:15.153471pt;}
._3{width:19.205946pt;}
._2{width:20.160924pt;}
._1{width:23.765985pt;}
._1a{width:24.757976pt;}
._19{width:27.703014pt;}
._1b{width:28.692026pt;}
._1d{width:31.836076pt;}
._1f{width:35.770233pt;}
._24{width:36.733833pt;}
._1c{width:39.804499pt;}
._18{width:43.845027pt;}
._23{width:47.866566pt;}
._22{width:51.831151pt;}
._26{width:55.829039pt;}
._25{width:59.834774pt;}
._21{width:135.671010pt;}
._20{width:139.845638pt;}
._b{width:810.161868pt;}
._f{width:1176.930889pt;}
._e{width:1229.094953pt;}
._12{width:1418.272038pt;}
._11{width:1473.730373pt;}
._13{width:1491.384018pt;}
._d{width:1582.866520pt;}
._14{width:1615.391832pt;}
._c{width:1737.550999pt;}
._10{width:1810.956940pt;}
._a{width:1818.876522pt;}
._16{width:1993.658973pt;}
._15{width:2070.009026pt;}
._9{width:2200.582259pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:35.200001pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666664pt;}
.fs8{font-size:90.666664pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:4.496744pt;}
.y7b{bottom:4.497396pt;}
.y1b{bottom:4.497397pt;}
.y235{bottom:4.498047pt;}
.y23{bottom:9.108068pt;}
.y3f{bottom:10.497067pt;}
.y36{bottom:10.497395pt;}
.y1f{bottom:10.497396pt;}
.y4a{bottom:10.497397pt;}
.y9c{bottom:25.444009pt;}
.y7a{bottom:25.444336pt;}
.y1a{bottom:25.444744pt;}
.y45{bottom:25.444988pt;}
.y1c7{bottom:25.445312pt;}
.y234{bottom:25.447916pt;}
.y22{bottom:25.973308pt;}
.y2{bottom:30.838317pt;}
.y3e{bottom:31.444333pt;}
.y35{bottom:31.444661pt;}
.y49{bottom:31.444663pt;}
.y1c6{bottom:51.362624pt;}
.y43{bottom:51.363931pt;}
.y18{bottom:51.364011pt;}
.y78{bottom:51.364264pt;}
.y2ff{bottom:51.365237pt;}
.y3d{bottom:52.391760pt;}
.y34{bottom:52.391928pt;}
.y3c{bottom:73.339027pt;}
.y3b{bottom:94.286293pt;}
.y2f2{bottom:98.722653pt;}
.y2aa{bottom:98.722661pt;}
.y144{bottom:98.723960pt;}
.y18a{bottom:98.723961pt;}
.y12b{bottom:98.723966pt;}
.y42{bottom:102.404629pt;}
.y17{bottom:104.783371pt;}
.y272{bottom:105.006833pt;}
.yd7{bottom:105.007483pt;}
.y108{bottom:105.008140pt;}
.y1f3{bottom:105.008141pt;}
.y3a{bottom:115.233560pt;}
.y2be{bottom:115.797539pt;}
.y1ff{bottom:117.697264pt;}
.y189{bottom:117.766930pt;}
.y2a9{bottom:117.766933pt;}
.y41{bottom:123.351895pt;}
.y1e4{bottom:123.404302pt;}
.yd8{bottom:124.050451pt;}
.y165{bottom:124.051105pt;}
.y273{bottom:124.051106pt;}
.y109{bottom:124.051109pt;}
.y1f4{bottom:124.051110pt;}
.y12a{bottom:124.051113pt;}
.y265{bottom:127.950517pt;}
.yeb{bottom:129.595698pt;}
.y232{bottom:134.508473pt;}
.y39{bottom:136.180827pt;}
.y2bd{bottom:136.742851pt;}
.yda{bottom:136.809241pt;}
.y188{bottom:136.809899pt;}
.y1fe{bottom:138.643877pt;}
.y24d{bottom:139.330727pt;}
.y166{bottom:143.094074pt;}
.y10a{bottom:143.094078pt;}
.y12c{bottom:143.094083pt;}
.y2d9{bottom:143.095377pt;}
.y2a8{bottom:143.095380pt;}
.y274{bottom:143.095386pt;}
.y1c5{bottom:146.831384pt;}
.y1e3{bottom:147.492841pt;}
.y16{bottom:149.730637pt;}
.yea{bottom:153.685542pt;}
.y231{bottom:155.456379pt;}
.y290{bottom:155.711579pt;}
.y2ac{bottom:155.852867pt;}
.y38{bottom:157.299477pt;}
.y2bc{bottom:157.690758pt;}
.y1fd{bottom:159.591797pt;}
.yd9{bottom:162.136389pt;}
.y12d{bottom:162.137043pt;}
.y10b{bottom:162.137046pt;}
.y2da{bottom:162.137052pt;}
.y1e2{bottom:171.581384pt;}
.y2f1{bottom:172.833986pt;}
.y24c{bottom:173.234373pt;}
.y230{bottom:176.401692pt;}
.y77{bottom:176.624997pt;}
.y2bb{bottom:178.638679pt;}
.y28f{bottom:179.802735pt;}
.y1fc{bottom:180.539717pt;}
.y2ab{bottom:181.178705pt;}
.ydb{bottom:181.179358pt;}
.y167{bottom:181.180011pt;}
.y10c{bottom:181.180016pt;}
.y1c4{bottom:183.779291pt;}
.y264{bottom:187.747399pt;}
.y2f0{bottom:193.781900pt;}
.y15{bottom:194.677904pt;}
.y22f{bottom:197.349613pt;}
.y2ba{bottom:199.586593pt;}
.y10d{bottom:200.222989pt;}
.ye9{bottom:201.774094pt;}
.y1a8{bottom:202.581373pt;}
.y28e{bottom:203.891267pt;}
.y9b{bottom:209.791011pt;}
.y164{bottom:211.801426pt;}
.y271{bottom:212.589188pt;}
.y1e1{bottom:213.756510pt;}
.y2ef{bottom:214.727213pt;}
.y22e{bottom:218.297527pt;}
.y145{bottom:219.265950pt;}
.y2b9{bottom:220.534511pt;}
.y1fb{bottom:220.628255pt;}
.y1c3{bottom:220.727215pt;}
.y1a7{bottom:223.529291pt;}
.ye8{bottom:225.863937pt;}
.y129{bottom:225.974614pt;}
.y28d{bottom:227.979813pt;}
.y9a{bottom:230.738277pt;}
.y2d8{bottom:231.120440pt;}
.y187{bottom:234.160813pt;}
.y76{bottom:235.031251pt;}
.y2ee{bottom:235.675131pt;}
.y163{bottom:235.891270pt;}
.y270{bottom:236.677731pt;}
.y263{bottom:238.154293pt;}
.y146{bottom:238.308918pt;}
.y22d{bottom:239.242840pt;}
.y14{bottom:239.625157pt;}
.y2b8{bottom:241.479824pt;}
.y1c2{bottom:241.673825pt;}
.y1a6{bottom:244.477211pt;}
.y1fa{bottom:244.716797pt;}
.ye7{bottom:249.953129pt;}
.y128{bottom:250.064458pt;}
.yd6{bottom:250.929691pt;}
.y2d7{bottom:252.068357pt;}
.y28c{bottom:252.070957pt;}
.y186{bottom:255.108731pt;}
.y75{bottom:255.978517pt;}
.y2a7{bottom:256.162105pt;}
.y147{bottom:257.351883pt;}
.y1e0{bottom:258.330076pt;}
.y262{bottom:259.102207pt;}
.y162{bottom:259.979816pt;}
.y22c{bottom:260.190757pt;}
.y40{bottom:262.035643pt;}
.y1c1{bottom:262.620442pt;}
.y99{bottom:263.365237pt;}
.y21a{bottom:264.638677pt;}
.y1a5{bottom:265.423824pt;}
.y1f9{bottom:268.806637pt;}
.yd5{bottom:271.876957pt;}
.y2ed{bottom:272.623040pt;}
.y2d6{bottom:273.016277pt;}
.y127{bottom:274.152997pt;}
.y185{bottom:276.055344pt;}
.y28b{bottom:276.159502pt;}
.y148{bottom:276.394856pt;}
.y26f{bottom:276.768877pt;}
.y74{bottom:276.925784pt;}
.y2b7{bottom:277.094405pt;}
.y2a6{bottom:277.110026pt;}
.y261{bottom:280.050125pt;}
.y1df{bottom:282.419920pt;}
.y37{bottom:282.982908pt;}
.y1c0{bottom:283.568360pt;}
.y161{bottom:284.070957pt;}
.y13{bottom:284.572424pt;}
.y1a4{bottom:286.370438pt;}
.y107{bottom:286.720695pt;}
.y219{bottom:288.728517pt;}
.yd4{bottom:292.824224pt;}
.y1f8{bottom:292.896487pt;}
.y2ec{bottom:293.570957pt;}
.y2d5{bottom:293.961584pt;}
.yb7{bottom:295.857424pt;}
.y22b{bottom:297.138673pt;}
.y73{bottom:297.873051pt;}
.y2b6{bottom:298.039717pt;}
.ye6{bottom:298.042962pt;}
.y2a5{bottom:298.055339pt;}
.y126{bottom:298.242841pt;}
.y28a{bottom:300.248042pt;}
.y260{bottom:300.995437pt;}
.y1bf{bottom:304.516278pt;}
.y1de{bottom:306.509767pt;}
.y160{bottom:308.159500pt;}
.y106{bottom:310.809245pt;}
.y184{bottom:311.668615pt;}
.yd3{bottom:313.771478pt;}
.y26e{bottom:316.857424pt;}
.y33{bottom:316.930176pt;}
.y1f7{bottom:316.986331pt;}
.y22a{bottom:318.086587pt;}
.y72{bottom:318.820317pt;}
.y2a4{bottom:319.003253pt;}
.y125{bottom:322.331384pt;}
.y1a3{bottom:323.318357pt;}
.y289{bottom:324.336585pt;}
.y98{bottom:325.451171pt;}
.y1be{bottom:325.462891pt;}
.y218{bottom:328.815779pt;}
.y12{bottom:329.519691pt;}
.y1dd{bottom:330.599611pt;}
.y2d4{bottom:330.909505pt;}
.y15f{bottom:332.249344pt;}
.y183{bottom:332.616537pt;}
.yb6{bottom:332.804678pt;}
.y2eb{bottom:332.970700pt;}
.y2b5{bottom:333.654291pt;}
.yd2{bottom:334.718744pt;}
.y105{bottom:334.899087pt;}
.y25f{bottom:336.610020pt;}
.y229{bottom:339.034505pt;}
.y71{bottom:339.767584pt;}
.y2a3{bottom:339.951171pt;}
.y1f6{bottom:341.073569pt;}
.y1a2{bottom:344.266273pt;}
.y288{bottom:348.427741pt;}
.y2d3{bottom:351.857426pt;}
.y217{bottom:352.906899pt;}
.y182{bottom:353.563146pt;}
.yb5{bottom:353.751943pt;}
.y15e{bottom:356.337895pt;}
.y26d{bottom:356.946782pt;}
.y25e{bottom:357.555333pt;}
.y32{bottom:358.824708pt;}
.y104{bottom:358.988274pt;}
.y228{bottom:359.979817pt;}
.y70{bottom:360.714851pt;}
.y1bd{bottom:362.409504pt;}
.y124{bottom:362.422522pt;}
.y1a1{bottom:365.212891pt;}
.y2b4{bottom:369.268877pt;}
.y1dc{bottom:370.688147pt;}
.yd1{bottom:371.666010pt;}
.y143{bottom:372.516270pt;}
.y287{bottom:372.518881pt;}
.y2d2{bottom:372.805340pt;}
.y11{bottom:374.466957pt;}
.y181{bottom:374.511068pt;}
.yb4{bottom:374.699213pt;}
.y2a2{bottom:375.565752pt;}
.y216{bottom:376.995459pt;}
.y1f5{bottom:378.022155pt;}
.y25d{bottom:378.503251pt;}
.y15d{bottom:380.427735pt;}
.y227{bottom:380.925130pt;}
.y6f{bottom:381.662104pt;}
.y103{bottom:383.078118pt;}
.y1bc{bottom:383.357424pt;}
.y97{bottom:383.857412pt;}
.y1a0{bottom:386.159504pt;}
.y123{bottom:386.511068pt;}
.y2ea{bottom:386.891278pt;}
.yd0{bottom:392.613275pt;}
.y31{bottom:392.771975pt;}
.y2d1{bottom:393.753258pt;}
.y1db{bottom:394.776693pt;}
.y180{bottom:395.457678pt;}
.yb3{bottom:395.646478pt;}
.y2a1{bottom:396.511065pt;}
.y286{bottom:396.604819pt;}
.y142{bottom:396.606113pt;}
.y215{bottom:401.086589pt;}
.y1bb{bottom:404.305344pt;}
.y15c{bottom:404.516285pt;}
.y96{bottom:404.804682pt;}
.y2b3{bottom:404.882802pt;}
.y6e{bottom:406.288733pt;}
.y102{bottom:407.167321pt;}
.y2e9{bottom:407.836590pt;}
.y122{bottom:410.600912pt;}
.ycf{bottom:413.560545pt;}
.y25c{bottom:414.117844pt;}
.y2d0{bottom:414.698571pt;}
.y17f{bottom:416.405599pt;}
.yb2{bottom:416.593744pt;}
.y2a0{bottom:417.458986pt;}
.y226{bottom:417.875651pt;}
.y1da{bottom:418.867837pt;}
.y10{bottom:419.414224pt;}
.y141{bottom:420.695957pt;}
.y285{bottom:420.695960pt;}
.y19f{bottom:423.107424pt;}
.y214{bottom:425.173839pt;}
.y1ba{bottom:425.251957pt;}
.y95{bottom:425.751948pt;}
.y15b{bottom:428.606127pt;}
.y2e8{bottom:428.784512pt;}
.y30{bottom:431.216637pt;}
.y101{bottom:431.257157pt;}
.yce{bottom:434.507810pt;}
.y121{bottom:434.689451pt;}
.y25b{bottom:435.065750pt;}
.y17e{bottom:437.352213pt;}
.y29f{bottom:438.406900pt;}
.y6d{bottom:440.694984pt;}
.y140{bottom:444.784500pt;}
.y284{bottom:444.784506pt;}
.y94{bottom:446.699213pt;}
.y213{bottom:449.263669pt;}
.y2e7{bottom:449.732426pt;}
.y225{bottom:452.656253pt;}
.y15a{bottom:452.695971pt;}
.yb1{bottom:453.541010pt;}
.y2cf{bottom:455.325519pt;}
.y100{bottom:455.345700pt;}
.ycd{bottom:455.455076pt;}
.y2f{bottom:455.843586pt;}
.y25a{bottom:456.013672pt;}
.y17d{bottom:458.300131pt;}
.y120{bottom:458.779295pt;}
.y1d9{bottom:458.956384pt;}
.y29e{bottom:459.352213pt;}
.y6c{bottom:461.642251pt;}
.y1b9{bottom:462.198571pt;}
.y19e{bottom:463.917026pt;}
.yf{bottom:464.361451pt;}
.y2fe{bottom:464.987624pt;}
.y24b{bottom:465.732425pt;}
.y93{bottom:467.646479pt;}
.y13f{bottom:468.874344pt;}
.y283{bottom:468.875651pt;}
.y2e6{bottom:470.680344pt;}
.y212{bottom:473.353509pt;}
.yb0{bottom:474.488280pt;}
.y159{bottom:476.784517pt;}
.y259{bottom:476.961586pt;}
.y17c{bottom:479.246744pt;}
.yff{bottom:479.435544pt;}
.y29d{bottom:480.300131pt;}
.y6b{bottom:482.589517pt;}
.y11f{bottom:482.867837pt;}
.y1d8{bottom:483.044927pt;}
.y1b8{bottom:483.146478pt;}
.y24a{bottom:486.680332pt;}
.y92{bottom:488.593745pt;}
.ycc{bottom:492.402335pt;}
.y282{bottom:492.961592pt;}
.y2e{bottom:493.929519pt;}
.y2fd{bottom:495.140624pt;}
.yaf{bottom:495.435545pt;}
.y211{bottom:497.443359pt;}
.y258{bottom:497.909504pt;}
.y158{bottom:500.874361pt;}
.y6a{bottom:503.536784pt;}
.y1b7{bottom:504.094399pt;}
.y11e{bottom:506.957677pt;}
.y1d7{bottom:507.134771pt;}
.y249{bottom:507.628253pt;}
.y2e5{bottom:507.628259pt;}
.y13e{bottom:508.964197pt;}
.ye{bottom:509.308717pt;}
.y91{bottom:509.541010pt;}
.y19d{bottom:509.984733pt;}
.ycb{bottom:513.349601pt;}
.y2ce{bottom:513.732426pt;}
.y17b{bottom:514.861335pt;}
.yae{bottom:516.382811pt;}
.y281{bottom:517.052733pt;}
.y29c{bottom:519.593746pt;}
.yfe{bottom:520.062506pt;}
.y210{bottom:521.531901pt;}
.y69{bottom:524.484051pt;}
.y157{bottom:524.964197pt;}
.y1b6{bottom:525.041013pt;}
.y2d{bottom:528.335771pt;}
.y248{bottom:528.573566pt;}
.y2e4{bottom:528.573571pt;}
.y90{bottom:530.488280pt;}
.y11d{bottom:531.046878pt;}
.y2fc{bottom:533.010411pt;}
.y13d{bottom:533.052740pt;}
.y257{bottom:533.521479pt;}
.yca{bottom:534.296866pt;}
.y2cd{bottom:534.680340pt;}
.y17a{bottom:535.807945pt;}
.y280{bottom:541.143881pt;}
.y1f2{bottom:544.284508pt;}
.y20f{bottom:545.620448pt;}
.y2c{bottom:545.785641pt;}
.y1b5{bottom:545.987626pt;}
.y1d6{bottom:547.761717pt;}
.y156{bottom:549.052740pt;}
.y68{bottom:549.110999pt;}
.y2e3{bottom:549.521478pt;}
.y247{bottom:549.521480pt;}
.y8f{bottom:551.435545pt;}
.y19c{bottom:552.188144pt;}
.yad{bottom:553.330077pt;}
.yd{bottom:554.255984pt;}
.y256{bottom:554.469393pt;}
.yc9{bottom:555.244132pt;}
.y2cc{bottom:555.628258pt;}
.y179{bottom:556.755866pt;}
.y13c{bottom:557.142584pt;}
.y27f{bottom:565.232424pt;}
.y1b4{bottom:566.935544pt;}
.y11c{bottom:567.994144pt;}
.y1f1{bottom:568.373040pt;}
.y20e{bottom:569.711588pt;}
.yfd{bottom:570.468745pt;}
.y246{bottom:570.469397pt;}
.y2e2{bottom:570.469399pt;}
.y8e{bottom:572.382811pt;}
.y19b{bottom:573.136062pt;}
.y155{bottom:573.142584pt;}
.y29b{bottom:573.143877pt;}
.yac{bottom:574.277347pt;}
.y255{bottom:575.414706pt;}
.yc8{bottom:576.191398pt;}
.y2cb{bottom:576.573571pt;}
.y178{bottom:577.703780pt;}
.y2b{bottom:579.732908pt;}
.y67{bottom:583.517251pt;}
.y27e{bottom:589.320957pt;}
.y2e1{bottom:591.414712pt;}
.y2fb{bottom:591.414718pt;}
.yfc{bottom:591.416010pt;}
.y1f0{bottom:592.462887pt;}
.y8d{bottom:593.330077pt;}
.y20d{bottom:593.800135pt;}
.yab{bottom:595.224612pt;}
.y254{bottom:596.362624pt;}
.yc7{bottom:597.138663pt;}
.y13b{bottom:597.231117pt;}
.y154{bottom:597.231128pt;}
.y2ca{bottom:597.521478pt;}
.y177{bottom:598.650398pt;}
.yc{bottom:599.203251pt;}
.y1d5{bottom:601.310544pt;}
.y1b3{bottom:603.883468pt;}
.y66{bottom:604.464517pt;}
.y245{bottom:607.414709pt;}
.y11b{bottom:608.083984pt;}
.y19a{bottom:610.082677pt;}
.y2fa{bottom:612.362625pt;}
.y2e0{bottom:612.362626pt;}
.yfb{bottom:612.363280pt;}
.y29a{bottom:613.232425pt;}
.y27d{bottom:613.409504pt;}
.y2a{bottom:613.680175pt;}
.y8c{bottom:614.277347pt;}
.yaa{bottom:616.171877pt;}
.y1ef{bottom:616.552731pt;}
.y20c{bottom:617.888667pt;}
.yc6{bottom:618.085933pt;}
.y2c9{bottom:618.469399pt;}
.y176{bottom:619.597011pt;}
.y13a{bottom:621.320961pt;}
.y153{bottom:621.320971pt;}
.y65{bottom:624.022465pt;}
.y1b2{bottom:624.830078pt;}
.y244{bottom:628.362631pt;}
.y199{bottom:631.030597pt;}
.y11a{bottom:632.172531pt;}
.yfa{bottom:633.310545pt;}
.y2f9{bottom:633.310546pt;}
.y253{bottom:633.310558pt;}
.y8b{bottom:635.224612pt;}
.y299{bottom:637.320955pt;}
.y1d4{bottom:638.258464pt;}
.yc5{bottom:639.033198pt;}
.y2c8{bottom:639.414712pt;}
.y1ee{bottom:640.642584pt;}
.y20b{bottom:641.978514pt;}
.yb{bottom:644.150477pt;}
.y64{bottom:644.887691pt;}
.y152{bottom:645.409503pt;}
.y139{bottom:645.409504pt;}
.y1b1{bottom:645.776695pt;}
.y29{bottom:647.627441pt;}
.y243{bottom:649.310553pt;}
.y198{bottom:651.977211pt;}
.ya9{bottom:653.119132pt;}
.y27c{bottom:653.500655pt;}
.yf9{bottom:654.257811pt;}
.y2f8{bottom:654.258460pt;}
.y252{bottom:654.258465pt;}
.y8a{bottom:656.171877pt;}
.y119{bottom:656.262371pt;}
.y175{bottom:656.544917pt;}
.yc4{bottom:659.980464pt;}
.y2c7{bottom:660.362626pt;}
.y298{bottom:661.409505pt;}
.y63{bottom:665.752931pt;}
.y20a{bottom:666.068357pt;}
.y1b0{bottom:666.724613pt;}
.y224{bottom:668.154291pt;}
.y151{bottom:669.500651pt;}
.y242{bottom:670.258459pt;}
.ye5{bottom:671.681636pt;}
.y197{bottom:672.925131pt;}
.ya8{bottom:674.066398pt;}
.y1d3{bottom:675.205077pt;}
.y2f7{bottom:675.206378pt;}
.y251{bottom:675.206386pt;}
.y89{bottom:677.119132pt;}
.y27b{bottom:677.589197pt;}
.y118{bottom:680.351562pt;}
.y1ed{bottom:680.729819pt;}
.yc3{bottom:680.927731pt;}
.y2c6{bottom:681.310544pt;}
.y28{bottom:681.574708pt;}
.y297{bottom:685.500641pt;}
.y138{bottom:685.500655pt;}
.y62{bottom:686.618158pt;}
.y1af{bottom:687.672531pt;}
.y55{bottom:688.257491pt;}
.ya{bottom:689.097744pt;}
.y223{bottom:689.102212pt;}
.yf8{bottom:691.205079pt;}
.y241{bottom:691.206381pt;}
.y174{bottom:693.492842pt;}
.y150{bottom:693.589194pt;}
.y196{bottom:693.871744pt;}
.ya7{bottom:695.013663pt;}
.y1d2{bottom:696.151691pt;}
.y250{bottom:696.151699pt;}
.y88{bottom:698.066397pt;}
.yc2{bottom:701.874998pt;}
.y2c5{bottom:702.258459pt;}
.y117{bottom:704.441406pt;}
.y1ec{bottom:704.820960pt;}
.y209{bottom:706.158198pt;}
.y61{bottom:707.483398pt;}
.y1ae{bottom:708.619144pt;}
.y54{bottom:709.204757pt;}
.y296{bottom:709.589188pt;}
.y137{bottom:709.589198pt;}
.y222{bottom:710.050126pt;}
.y240{bottom:712.151693pt;}
.yf7{bottom:712.152345pt;}
.y173{bottom:714.439452pt;}
.y195{bottom:714.819664pt;}
.y27{bottom:715.521975pt;}
.ya6{bottom:715.960933pt;}
.y24f{bottom:717.099613pt;}
.y27a{bottom:717.677731pt;}
.y14f{bottom:717.679037pt;}
.y87{bottom:719.013667pt;}
.ye4{bottom:719.771482pt;}
.yc1{bottom:722.822263pt;}
.y2c4{bottom:723.206381pt;}
.y60{bottom:728.348638pt;}
.y116{bottom:728.530594pt;}
.y1eb{bottom:728.909506pt;}
.y53{bottom:730.152012pt;}
.y208{bottom:730.245448pt;}
.y221{bottom:730.995439pt;}
.y23f{bottom:733.099607pt;}
.yf6{bottom:733.099610pt;}
.y1d1{bottom:733.099611pt;}
.y295{bottom:733.677734pt;}
.y136{bottom:733.679037pt;}
.y9{bottom:734.044997pt;}
.y172{bottom:735.386069pt;}
.ya5{bottom:736.908198pt;}
.y24e{bottom:738.047531pt;}
.y86{bottom:739.960932pt;}
.y14e{bottom:741.767584pt;}
.y279{bottom:741.768877pt;}
.yc0{bottom:743.769533pt;}
.ye3{bottom:743.860029pt;}
.y2c3{bottom:744.151693pt;}
.y1ad{bottom:745.565759pt;}
.y5f{bottom:749.213865pt;}
.y26{bottom:749.469241pt;}
.y194{bottom:750.432948pt;}
.y52{bottom:751.099277pt;}
.y220{bottom:751.943357pt;}
.y115{bottom:752.620437pt;}
.y1ea{bottom:753.000651pt;}
.yf5{bottom:754.046880pt;}
.y1d0{bottom:754.047518pt;}
.y23e{bottom:754.047525pt;}
.y2f6{bottom:754.047533pt;}
.y207{bottom:754.336588pt;}
.y171{bottom:756.333987pt;}
.y135{bottom:757.767584pt;}
.y294{bottom:757.768875pt;}
.ya4{bottom:757.855464pt;}
.y85{bottom:760.908197pt;}
.ybf{bottom:764.716798pt;}
.y2c2{bottom:765.099607pt;}
.y278{bottom:765.857424pt;}
.y14d{bottom:765.857428pt;}
.y1ac{bottom:766.513677pt;}
.ye2{bottom:767.949872pt;}
.y5e{bottom:770.079105pt;}
.y193{bottom:771.379558pt;}
.y51{bottom:772.046547pt;}
.y23d{bottom:774.992837pt;}
.y2f5{bottom:774.992846pt;}
.y1cf{bottom:774.994135pt;}
.yf4{bottom:774.994145pt;}
.y114{bottom:776.708984pt;}
.y1e9{bottom:777.087891pt;}
.y170{bottom:777.281905pt;}
.y206{bottom:778.425135pt;}
.y8{bottom:778.992264pt;}
.y84{bottom:781.855464pt;}
.y293{bottom:781.857422pt;}
.y134{bottom:781.857428pt;}
.y25{bottom:783.416508pt;}
.ybe{bottom:785.664064pt;}
.y2c1{bottom:786.047525pt;}
.y2b2{bottom:786.047534pt;}
.y1ab{bottom:787.460290pt;}
.y21f{bottom:788.891277pt;}
.y26c{bottom:789.945957pt;}
.y14c{bottom:789.945960pt;}
.y5d{bottom:790.944331pt;}
.ye1{bottom:792.039065pt;}
.y192{bottom:792.327479pt;}
.y50{bottom:792.993812pt;}
.ya3{bottom:794.802730pt;}
.y1ce{bottom:795.940752pt;}
.y2f4{bottom:795.940760pt;}
.yf3{bottom:795.941411pt;}
.y16f{bottom:798.228517pt;}
.y113{bottom:800.798828pt;}
.y1e8{bottom:801.177731pt;}
.y205{bottom:802.516276pt;}
.y83{bottom:802.802731pt;}
.y133{bottom:805.945960pt;}
.y292{bottom:805.945961pt;}
.ybd{bottom:806.611332pt;}
.y2c0{bottom:806.992837pt;}
.y2b1{bottom:806.992846pt;}
.y5c{bottom:811.809571pt;}
.y23c{bottom:811.940757pt;}
.y2df{bottom:811.940762pt;}
.y191{bottom:813.274093pt;}
.y4f{bottom:813.941077pt;}
.y277{bottom:814.034504pt;}
.y14b{bottom:814.035807pt;}
.ya2{bottom:815.749996pt;}
.ye0{bottom:816.128909pt;}
.y1cd{bottom:816.888666pt;}
.y2f3{bottom:816.888677pt;}
.y24{bottom:817.363775pt;}
.y82{bottom:823.749997pt;}
.y7{bottom:823.939531pt;}
.y1aa{bottom:824.408197pt;}
.y112{bottom:824.887371pt;}
.y21e{bottom:825.837893pt;}
.y204{bottom:826.603514pt;}
.ybc{bottom:827.558598pt;}
.y2b0{bottom:827.940753pt;}
.y2bf{bottom:827.940757pt;}
.y291{bottom:830.034504pt;}
.y26b{bottom:830.034507pt;}
.y132{bottom:830.035807pt;}
.y5b{bottom:832.674798pt;}
.y2de{bottom:832.888669pt;}
.yf2{bottom:832.888678pt;}
.y190{bottom:834.222011pt;}
.y4e{bottom:834.888344pt;}
.y16e{bottom:835.175128pt;}
.ya1{bottom:836.697262pt;}
.y1cc{bottom:837.836584pt;}
.y14a{bottom:838.125651pt;}
.ydf{bottom:840.218100pt;}
.y81{bottom:844.697262pt;}
.y21d{bottom:846.784506pt;}
.ybb{bottom:848.505859pt;}
.y2af{bottom:848.888674pt;}
.y23b{bottom:848.888679pt;}
.y203{bottom:850.693357pt;}
.y21{bottom:851.311037pt;}
.y5a{bottom:853.540038pt;}
.yf1{bottom:853.835944pt;}
.y2dd{bottom:853.836590pt;}
.y26a{bottom:854.125648pt;}
.y131{bottom:854.125651pt;}
.y18f{bottom:855.168624pt;}
.y4d{bottom:855.835611pt;}
.y16d{bottom:856.123049pt;}
.ya0{bottom:857.644527pt;}
.y1a9{bottom:860.022140pt;}
.y276{bottom:862.214194pt;}
.y111{bottom:863.061855pt;}
.y20{bottom:864.094241pt;}
.yde{bottom:864.307944pt;}
.y80{bottom:865.644532pt;}
.y21c{bottom:867.732424pt;}
.y6{bottom:868.886797pt;}
.yba{bottom:869.453125pt;}
.y23a{bottom:869.836585pt;}
.y2ae{bottom:869.836588pt;}
.y59{bottom:874.405278pt;}
.yf0{bottom:874.783197pt;}
.y202{bottom:874.783202pt;}
.y1cb{bottom:874.783203pt;}
.y2dc{bottom:874.784504pt;}
.y4c{bottom:876.782877pt;}
.y16c{bottom:877.070963pt;}
.y1e7{bottom:878.214193pt;}
.y269{bottom:878.214194pt;}
.y130{bottom:878.214197pt;}
.y149{bottom:878.214200pt;}
.y9f{bottom:878.591797pt;}
.y275{bottom:886.305339pt;}
.y7f{bottom:886.591797pt;}
.ydd{bottom:888.397136pt;}
.yb9{bottom:890.400391pt;}
.y18e{bottom:890.783201pt;}
.y2ad{bottom:890.784506pt;}
.y239{bottom:890.784507pt;}
.y58{bottom:895.270507pt;}
.y2db{bottom:895.729817pt;}
.y1ca{bottom:895.729820pt;}
.y4b{bottom:897.730144pt;}
.y16b{bottom:898.017581pt;}
.y1e{bottom:898.041504pt;}
.y9e{bottom:899.539062pt;}
.y12f{bottom:902.304037pt;}
.y110{bottom:902.304044pt;}
.y1e6{bottom:902.305333pt;}
.y268{bottom:902.305335pt;}
.y21b{bottom:905.906251pt;}
.y7e{bottom:907.539063pt;}
.y18d{bottom:911.729818pt;}
.y201{bottom:911.729819pt;}
.yef{bottom:911.730469pt;}
.ydc{bottom:912.486326pt;}
.y5{bottom:913.834067pt;}
.y48{bottom:915.180012pt;}
.y57{bottom:916.135742pt;}
.y1c9{bottom:916.677734pt;}
.y16a{bottom:918.964193pt;}
.y9d{bottom:920.486328pt;}
.yb8{bottom:923.027347pt;}
.y1e5{bottom:926.392583pt;}
.y10f{bottom:926.393880pt;}
.y267{bottom:926.393882pt;}
.y7d{bottom:928.486328pt;}
.y238{bottom:932.677733pt;}
.yee{bottom:932.677735pt;}
.y18c{bottom:932.677736pt;}
.y47{bottom:936.127279pt;}
.y1d{bottom:936.486165pt;}
.y1c8{bottom:937.625652pt;}
.y169{bottom:939.912109pt;}
.y266{bottom:950.482421pt;}
.y10e{bottom:950.482423pt;}
.yed{bottom:953.625000pt;}
.y237{bottom:953.625651pt;}
.y200{bottom:953.625652pt;}
.y18b{bottom:953.625654pt;}
.y46{bottom:957.074544pt;}
.y4{bottom:958.781343pt;}
.y56{bottom:961.112955pt;}
.y1c{bottom:961.113118pt;}
.y7c{bottom:961.113282pt;}
.y168{bottom:970.085939pt;}
.y236{bottom:974.570964pt;}
.yec{bottom:974.572267pt;}
.y233{bottom:991.020833pt;}
.y44{bottom:991.021809pt;}
.y19{bottom:991.021972pt;}
.y79{bottom:991.022136pt;}
.y3{bottom:1003.728608pt;}
.y1{bottom:1028.178477pt;}
.h13{height:24.000000pt;}
.h6{height:32.947265pt;}
.h1f{height:39.101563pt;}
.h19{height:39.903647pt;}
.h14{height:39.999999pt;}
.h17{height:40.000006pt;}
.h8{height:42.710938pt;}
.h2{height:44.000001pt;}
.h7{height:45.730469pt;}
.he{height:48.000000pt;}
.hb{height:53.894531pt;}
.h1d{height:54.050361pt;}
.h12{height:54.050387pt;}
.h11{height:54.050389pt;}
.h10{height:54.050390pt;}
.h15{height:54.050393pt;}
.h18{height:54.050399pt;}
.h16{height:55.999998pt;}
.h1e{height:67.999998pt;}
.h1c{height:71.093748pt;}
.h9{height:74.841797pt;}
.h5{height:79.999998pt;}
.h3{height:94.154787pt;}
.hc{height:94.154947pt;}
.h1a{height:94.156253pt;}
.h1{height:94.488189pt;}
.hf{height:131.644531pt;}
.h4{height:131.644695pt;}
.hd{height:131.644857pt;}
.h1b{height:131.645833pt;}
.ha{height:158.630696pt;}
.h0{height:1122.666667pt;}
.w4{width:112.000011pt;}
.w8{width:150.000000pt;}
.w5{width:151.000000pt;}
.w9{width:159.999959pt;}
.w6{width:160.999959pt;}
.wa{width:178.999959pt;}
.w7{width:179.999959pt;}
.w2{width:241.000000pt;}
.w3{width:361.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:7.000000pt;}
.x9{left:8.000000pt;}
.x1{left:94.488189pt;}
.x5{left:95.488189pt;}
.x13{left:115.966369pt;}
.xf{left:118.488189pt;}
.x12{left:120.889953pt;}
.x10{left:142.488189pt;}
.x15{left:166.488189pt;}
.x8{left:207.488200pt;}
.xc{left:208.488200pt;}
.x1a{left:220.367103pt;}
.x1d{left:243.564483pt;}
.x2{left:249.488189pt;}
.x1c{left:259.487731pt;}
.x17{left:273.456649pt;}
.x14{left:293.895243pt;}
.x7{left:337.488200pt;}
.xa{left:358.488200pt;}
.xd{left:359.488200pt;}
.xb{left:519.488160pt;}
.xe{left:520.488160pt;}
.x16{left:572.850399pt;}
.x18{left:602.850399pt;}
.x1b{left:633.488189pt;}
.x19{left:669.350369pt;}
.x11{left:684.488189pt;}
.x3{left:691.090119pt;}
.x4{left:699.212619pt;}
.x1e{left:789.488189pt;}
}




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