
    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_7b1306396fd7728dfd13f520.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_997d896d7acd511b57500709.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ce3c5eabf3b122eece852539.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240024px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.202804px;}
.ls2{letter-spacing:0.233338px;}
.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;}
}
.ws0{word-spacing:-17.814254px;}
.ws2{word-spacing:-15.012012px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-2.525807px;}
._0{margin-left:-1.039223px;}
._2{width:1.046104px;}
._4{width:3.261291px;}
._3{width:4.455795px;}
._8{width:6.021865px;}
._9{width:10.017567px;}
._a{width:11.058168px;}
._6{width:12.233258px;}
._7{width:13.397535px;}
._5{width:15.557628px;}
.fc3{color:transparent;}
.fc1{color:rgb(204,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:54.000043px;}
.fs0{font-size:64.080051px;}
.fs1{font-size:86.400069px;}
.y66{bottom:-8.460023px;}
.y111{bottom:-7.380023px;}
.yc9{bottom:-2.700019px;}
.y9d{bottom:-1.080018px;}
.y0{bottom:0.000000px;}
.y30{bottom:1.259984px;}
.y149{bottom:2.879520px;}
.y101{bottom:3.599419px;}
.y143{bottom:3.599646px;}
.y47{bottom:3.599727px;}
.yb2{bottom:3.599741px;}
.y8{bottom:3.599885px;}
.y11d{bottom:3.599913px;}
.y9a{bottom:3.600056px;}
.y68{bottom:3.600060px;}
.y113{bottom:3.600061px;}
.ycb{bottom:3.600065px;}
.y9f{bottom:3.600066px;}
.y32{bottom:3.600068px;}
.yc4{bottom:3.600670px;}
.y130{bottom:3.600738px;}
.y94{bottom:3.600773px;}
.y2f{bottom:54.120960px;}
.y65{bottom:64.201551px;}
.y110{bottom:65.281552px;}
.yc8{bottom:69.960956px;}
.y9c{bottom:71.580957px;}
.y2e{bottom:73.921559px;}
.y64{bottom:82.741566px;}
.yc7{bottom:88.500971px;}
.y2d{bottom:92.461574px;}
.ydd{bottom:93.361575px;}
.y15f{bottom:95.521576px;}
.y63{bottom:101.101581px;}
.y10f{bottom:102.361582px;}
.yc6{bottom:107.040986px;}
.y9b{bottom:108.120986px;}
.y15e{bottom:110.821589px;}
.y2c{bottom:111.001589px;}
.y62{bottom:119.641596px;}
.y10e{bottom:120.901597px;}
.y15d{bottom:126.121601px;}
.y2b{bottom:129.361603px;}
.ydc{bottom:129.901604px;}
.y10d{bottom:139.261611px;}
.y99{bottom:141.060960px;}
.y15c{bottom:141.421613px;}
.yc5{bottom:144.121015px;}
.y2a{bottom:147.901618px;}
.ydb{bottom:148.441619px;}
.y61{bottom:156.181625px;}
.y15b{bottom:156.721625px;}
.y10c{bottom:157.801626px;}
.yc3{bottom:159.060960px;}
.yda{bottom:166.981634px;}
.y15a{bottom:172.021638px;}
.y10b{bottom:176.341641px;}
.y98{bottom:181.201645px;}
.y29{bottom:184.981648px;}
.yd9{bottom:185.521648px;}
.y133{bottom:191.821653px;}
.y60{bottom:192.721654px;}
.y10a{bottom:194.881656px;}
.y97{bottom:199.561660px;}
.yc2{bottom:199.741660px;}
.y159{bottom:202.621662px;}
.y28{bottom:203.521663px;}
.yd8{bottom:204.061663px;}
.y132{bottom:210.361668px;}
.y5f{bottom:211.261669px;}
.y109{bottom:213.421671px;}
.y158{bottom:217.921674px;}
.yc1{bottom:218.101674px;}
.y27{bottom:222.061678px;}
.yd7{bottom:222.601678px;}
.y131{bottom:228.901683px;}
.y5e{bottom:229.801684px;}
.y108{bottom:231.961686px;}
.y157{bottom:233.221687px;}
.y96{bottom:236.101689px;}
.yc0{bottom:236.641689px;}
.y26{bottom:240.601692px;}
.yd6{bottom:241.141693px;}
.y12f{bottom:243.660960px;}
.y5d{bottom:248.341699px;}
.y156{bottom:248.521699px;}
.y95{bottom:254.641704px;}
.y25{bottom:259.141707px;}
.yd5{bottom:259.501708px;}
.y155{bottom:263.821711px;}
.y12e{bottom:265.801713px;}
.y107{bottom:269.041715px;}
.ybf{bottom:273.721719px;}
.y24{bottom:277.681722px;}
.yd4{bottom:278.041722px;}
.y5c{bottom:284.881728px;}
.y93{bottom:287.580960px;}
.y106{bottom:287.581730px;}
.y92{bottom:291.181733px;}
.ybe{bottom:292.261734px;}
.y154{bottom:294.421736px;}
.y23{bottom:296.221737px;}
.y12d{bottom:302.341742px;}
.y5b{bottom:303.421743px;}
.y105{bottom:306.121745px;}
.y153{bottom:309.721748px;}
.ybd{bottom:310.801749px;}
.y22{bottom:314.761752px;}
.yd3{bottom:315.121752px;}
.y12c{bottom:320.881757px;}
.y5a{bottom:321.961758px;}
.y104{bottom:324.661760px;}
.y152{bottom:325.021760px;}
.ybc{bottom:329.341763px;}
.y91{bottom:332.941766px;}
.yd2{bottom:333.661767px;}
.y12b{bottom:339.421772px;}
.y151{bottom:340.321772px;}
.ybb{bottom:347.881778px;}
.y90{bottom:351.481781px;}
.yd1{bottom:352.201782px;}
.y150{bottom:355.621784px;}
.y12a{bottom:357.961786px;}
.y59{bottom:358.501787px;}
.y103{bottom:361.561789px;}
.yba{bottom:366.421793px;}
.y8f{bottom:370.021796px;}
.y21{bottom:370.201796px;}
.yd0{bottom:370.741797px;}
.y129{bottom:376.501801px;}
.y58{bottom:377.041802px;}
.y102{bottom:380.101804px;}
.yb9{bottom:384.961808px;}
.y14f{bottom:386.581809px;}
.y8e{bottom:388.561811px;}
.y20{bottom:388.741811px;}
.y128{bottom:395.041816px;}
.y100{bottom:395.042400px;}
.y57{bottom:395.401816px;}
.y1f{bottom:407.281826px;}
.y56{bottom:413.941831px;}
.yff{bottom:417.181834px;}
.y14e{bottom:417.721834px;}
.yb8{bottom:421.501837px;}
.y8d{bottom:425.101840px;}
.y1e{bottom:425.821841px;}
.y127{bottom:431.581845px;}
.y14d{bottom:433.021846px;}
.yfe{bottom:435.721849px;}
.yb7{bottom:440.041852px;}
.y1d{bottom:444.361855px;}
.y55{bottom:450.481860px;}
.yfd{bottom:454.261863px;}
.y8c{bottom:461.461869px;}
.y1c{bottom:462.901870px;}
.y14c{bottom:463.621871px;}
.y126{bottom:468.121874px;}
.y54{bottom:469.021875px;}
.yfc{bottom:472.801878px;}
.y14b{bottom:478.921883px;}
.y8b{bottom:480.001884px;}
.y1b{bottom:481.441885px;}
.y53{bottom:487.561890px;}
.yfb{bottom:491.341893px;}
.y8a{bottom:498.541899px;}
.y1a{bottom:499.981900px;}
.y14a{bottom:509.521908px;}
.y19{bottom:518.521915px;}
.y148{bottom:521.942400px;}
.y52{bottom:524.641920px;}
.yfa{bottom:528.421923px;}
.y89{bottom:535.081928px;}
.y18{bottom:537.061930px;}
.y51{bottom:543.181935px;}
.yf9{bottom:546.961938px;}
.y88{bottom:553.621943px;}
.y17{bottom:555.601944px;}
.y50{bottom:561.721949px;}
.y87{bottom:572.161958px;}
.y147{bottom:573.781959px;}
.y16{bottom:573.961959px;}
.y4f{bottom:580.261964px;}
.yf8{bottom:584.041967px;}
.y86{bottom:590.701973px;}
.y4e{bottom:598.801979px;}
.yf7{bottom:602.401982px;}
.y85{bottom:609.241987px;}
.y15{bottom:610.501988px;}
.y4d{bottom:617.341994px;}
.yf6{bottom:620.941997px;}
.y125{bottom:627.242002px;}
.y146{bottom:627.422002px;}
.y84{bottom:627.782002px;}
.y4c{bottom:635.702009px;}
.yf5{bottom:639.482012px;}
.y124{bottom:645.782017px;}
.y145{bottom:645.962017px;}
.y83{bottom:646.322017px;}
.yf4{bottom:658.022026px;}
.y123{bottom:664.322031px;}
.y144{bottom:664.502032px;}
.y82{bottom:664.862032px;}
.y14{bottom:666.842033px;}
.y4b{bottom:672.242038px;}
.yf3{bottom:676.562041px;}
.y142{bottom:679.442400px;}
.y122{bottom:682.862046px;}
.y13{bottom:685.202048px;}
.yf2{bottom:695.102056px;}
.y81{bottom:701.402061px;}
.y12{bottom:703.742063px;}
.yb6{bottom:708.242067px;}
.yf1{bottom:713.642071px;}
.y80{bottom:719.762076px;}
.y141{bottom:720.122076px;}
.y11{bottom:722.282078px;}
.y4a{bottom:728.582083px;}
.yf0{bottom:732.182086px;}
.y7f{bottom:738.302091px;}
.y140{bottom:738.662091px;}
.y10{bottom:740.822093px;}
.yb5{bottom:745.142096px;}
.y49{bottom:747.122098px;}
.yef{bottom:750.722101px;}
.y7e{bottom:756.842105px;}
.y13f{bottom:757.202106px;}
.yf{bottom:759.362107px;}
.yb4{bottom:763.682111px;}
.y48{bottom:765.662113px;}
.yee{bottom:769.262115px;}
.y7d{bottom:775.382120px;}
.y13e{bottom:775.562120px;}
.y46{bottom:780.602400px;}
.yb3{bottom:782.222126px;}
.y7c{bottom:793.922135px;}
.y13d{bottom:794.102135px;}
.ye{bottom:795.902137px;}
.ycf{bottom:796.442137px;}
.yb1{bottom:797.162400px;}
.y45{bottom:802.742142px;}
.yed{bottom:806.342145px;}
.y7b{bottom:812.462150px;}
.y13c{bottom:812.642150px;}
.yce{bottom:814.982152px;}
.yb0{bottom:819.302155px;}
.y44{bottom:821.102157px;}
.yec{bottom:824.702160px;}
.y7a{bottom:831.002165px;}
.ycd{bottom:833.522167px;}
.yaf{bottom:837.842170px;}
.y43{bottom:839.642172px;}
.yeb{bottom:843.242175px;}
.y121{bottom:849.002179px;}
.y79{bottom:849.542180px;}
.y13b{bottom:849.722180px;}
.yae{bottom:856.382185px;}
.y42{bottom:858.182187px;}
.yea{bottom:861.782189px;}
.y78{bottom:868.082194px;}
.y13a{bottom:868.262195px;}
.yad{bottom:874.922200px;}
.ye9{bottom:880.322204px;}
.y77{bottom:886.622209px;}
.y139{bottom:886.802209px;}
.yd{bottom:889.142211px;}
.yac{bottom:893.462215px;}
.y41{bottom:895.262216px;}
.ye8{bottom:898.862219px;}
.y76{bottom:905.162224px;}
.y138{bottom:905.342224px;}
.yc{bottom:907.682226px;}
.yab{bottom:912.002230px;}
.y40{bottom:913.802231px;}
.ye7{bottom:917.402234px;}
.y75{bottom:923.702239px;}
.y137{bottom:923.882239px;}
.yb{bottom:926.222241px;}
.y3f{bottom:932.342246px;}
.y74{bottom:942.062254px;}
.y120{bottom:942.242254px;}
.y136{bottom:942.422254px;}
.ya{bottom:944.762256px;}
.yaa{bottom:948.902259px;}
.y3e{bottom:950.882261px;}
.ye6{bottom:954.482264px;}
.y135{bottom:960.962269px;}
.y9{bottom:963.302271px;}
.ya9{bottom:967.442274px;}
.y3d{bottom:969.422276px;}
.ye5{bottom:973.022278px;}
.y7{bottom:978.062400px;}
.y73{bottom:978.602283px;}
.y11f{bottom:979.322283px;}
.y3c{bottom:987.962290px;}
.y72{bottom:997.142298px;}
.y134{bottom:997.502298px;}
.y11e{bottom:997.862298px;}
.y6{bottom:1000.202300px;}
.ya8{bottom:1004.522304px;}
.y3b{bottom:1006.502305px;}
.ye4{bottom:1009.562308px;}
.y11c{bottom:1012.802400px;}
.y71{bottom:1015.682313px;}
.y5{bottom:1018.742315px;}
.ya7{bottom:1023.062318px;}
.y3a{bottom:1025.042320px;}
.y70{bottom:1034.222327px;}
.y11b{bottom:1034.762328px;}
.y4{bottom:1037.282330px;}
.ya6{bottom:1041.602333px;}
.ye3{bottom:1046.102337px;}
.y6f{bottom:1052.762342px;}
.y11a{bottom:1053.302343px;}
.ya5{bottom:1060.142348px;}
.y39{bottom:1061.942350px;}
.ye2{bottom:1064.642352px;}
.y119{bottom:1071.842357px;}
.y3{bottom:1073.822359px;}
.ya4{bottom:1078.682363px;}
.y38{bottom:1080.482364px;}
.ye1{bottom:1083.002366px;}
.y6e{bottom:1089.302371px;}
.y118{bottom:1090.382372px;}
.y37{bottom:1099.022379px;}
.y6d{bottom:1107.842386px;}
.y117{bottom:1108.922387px;}
.ya3{bottom:1115.222392px;}
.y36{bottom:1117.562394px;}
.y6c{bottom:1126.382401px;}
.y2{bottom:1137.002410px;}
.ye0{bottom:1138.082410px;}
.y6b{bottom:1144.922416px;}
.y116{bottom:1146.002417px;}
.ya2{bottom:1152.302422px;}
.y35{bottom:1154.642424px;}
.y6a{bottom:1163.462431px;}
.y115{bottom:1164.542432px;}
.ya1{bottom:1170.842437px;}
.y34{bottom:1173.182439px;}
.ydf{bottom:1174.622440px;}
.y69{bottom:1182.002446px;}
.y114{bottom:1183.082446px;}
.y1{bottom:1185.062448px;}
.ycc{bottom:1187.762450px;}
.ya0{bottom:1189.382452px;}
.y33{bottom:1191.722453px;}
.yde{bottom:1193.162455px;}
.y67{bottom:1196.762400px;}
.y112{bottom:1198.022400px;}
.yca{bottom:1202.702400px;}
.y9e{bottom:1204.322400px;}
.y31{bottom:1206.662400px;}
.h5{height:2.340000px;}
.ha{height:4.680000px;}
.h6{height:5.940000px;}
.hc{height:6.300000px;}
.hd{height:7.020000px;}
.he{height:10.980000px;}
.hb{height:11.700000px;}
.h7{height:12.240000px;}
.h9{height:13.320000px;}
.h10{height:14.940000px;}
.h4{height:15.660000px;}
.h3{height:18.000000px;}
.hf{height:56.320358px;}
.h1{height:66.833491px;}
.h8{height:86.560382px;}
.h2{height:90.112572px;}
.h0{height:1263.000000px;}
.w5{width:75.060000px;}
.wb{width:578.700000px;}
.w6{width:667.260000px;}
.wc{width:697.320000px;}
.w8{width:725.580000px;}
.wd{width:727.380000px;}
.wf{width:735.840000px;}
.w4{width:738.180000px;}
.we{width:744.840000px;}
.w9{width:746.460000px;}
.w1{width:748.440000px;}
.w3{width:750.960000px;}
.wa{width:753.840000px;}
.w7{width:754.020000px;}
.w10{width:754.740000px;}
.w2{width:762.300000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:63.000050px;}
.x1{left:68.580055px;}
.x3{left:102.238585px;}
.x7{left:112.500000px;}
.x8{left:203.401717px;}
.x9{left:205.920724px;}
.xb{left:226.081482px;}
.x4{left:293.758435px;}
.xa{left:333.180165px;}
.x5{left:371.155223px;}
.x6{left:446.040000px;}
.xc{left:761.220609px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880022pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.180270pt;}
.ls2{letter-spacing:0.207411pt;}
.ws0{word-spacing:-15.834893pt;}
.ws2{word-spacing:-13.344011pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-2.245161pt;}
._0{margin-left:-0.923754pt;}
._2{width:0.929870pt;}
._4{width:2.898926pt;}
._3{width:3.960707pt;}
._8{width:5.352768pt;}
._9{width:8.904504pt;}
._a{width:9.829482pt;}
._6{width:10.874007pt;}
._7{width:11.908920pt;}
._5{width:13.829003pt;}
.fs2{font-size:48.000038pt;}
.fs0{font-size:56.960046pt;}
.fs1{font-size:76.800061pt;}
.y66{bottom:-7.520021pt;}
.y111{bottom:-6.560020pt;}
.yc9{bottom:-2.400017pt;}
.y9d{bottom:-0.960016pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:1.119986pt;}
.y149{bottom:2.559573pt;}
.y101{bottom:3.199483pt;}
.y143{bottom:3.199686pt;}
.y47{bottom:3.199758pt;}
.yb2{bottom:3.199769pt;}
.y8{bottom:3.199898pt;}
.y11d{bottom:3.199923pt;}
.y9a{bottom:3.200050pt;}
.y68{bottom:3.200054pt;}
.y113{bottom:3.200054pt;}
.ycb{bottom:3.200058pt;}
.y9f{bottom:3.200059pt;}
.y32{bottom:3.200061pt;}
.yc4{bottom:3.200596pt;}
.y130{bottom:3.200656pt;}
.y94{bottom:3.200687pt;}
.y2f{bottom:48.107520pt;}
.y65{bottom:57.068046pt;}
.y110{bottom:58.028046pt;}
.yc8{bottom:62.187516pt;}
.y9c{bottom:63.627518pt;}
.y2e{bottom:65.708053pt;}
.y64{bottom:73.548059pt;}
.yc7{bottom:78.667530pt;}
.y2d{bottom:82.188066pt;}
.ydd{bottom:82.988066pt;}
.y15f{bottom:84.908068pt;}
.y63{bottom:89.868072pt;}
.y10f{bottom:90.988073pt;}
.yc6{bottom:95.147543pt;}
.y9b{bottom:96.107544pt;}
.y15e{bottom:98.508079pt;}
.y2c{bottom:98.668079pt;}
.y62{bottom:106.348085pt;}
.y10e{bottom:107.468086pt;}
.y15d{bottom:112.108090pt;}
.y2b{bottom:114.988092pt;}
.ydc{bottom:115.468092pt;}
.y10d{bottom:123.788099pt;}
.y99{bottom:125.387520pt;}
.y15c{bottom:125.708101pt;}
.yc5{bottom:128.107569pt;}
.y2a{bottom:131.468105pt;}
.ydb{bottom:131.948106pt;}
.y61{bottom:138.828111pt;}
.y15b{bottom:139.308111pt;}
.y10c{bottom:140.268112pt;}
.yc3{bottom:141.387520pt;}
.yda{bottom:148.428119pt;}
.y15a{bottom:152.908122pt;}
.y10b{bottom:156.748125pt;}
.y98{bottom:161.068129pt;}
.y29{bottom:164.428132pt;}
.yd9{bottom:164.908132pt;}
.y133{bottom:170.508136pt;}
.y60{bottom:171.308137pt;}
.y10a{bottom:173.228139pt;}
.y97{bottom:177.388142pt;}
.yc2{bottom:177.548142pt;}
.y159{bottom:180.108144pt;}
.y28{bottom:180.908145pt;}
.yd8{bottom:181.388145pt;}
.y132{bottom:186.988150pt;}
.y5f{bottom:187.788150pt;}
.y109{bottom:189.708152pt;}
.y158{bottom:193.708155pt;}
.yc1{bottom:193.868155pt;}
.y27{bottom:197.388158pt;}
.yd7{bottom:197.868158pt;}
.y131{bottom:203.468163pt;}
.y5e{bottom:204.268163pt;}
.y108{bottom:206.188165pt;}
.y157{bottom:207.308166pt;}
.y96{bottom:209.868168pt;}
.yc0{bottom:210.348168pt;}
.y26{bottom:213.868171pt;}
.yd6{bottom:214.348171pt;}
.y12f{bottom:216.587520pt;}
.y5d{bottom:220.748177pt;}
.y156{bottom:220.908177pt;}
.y95{bottom:226.348181pt;}
.y25{bottom:230.348184pt;}
.yd5{bottom:230.668185pt;}
.y155{bottom:234.508188pt;}
.y12e{bottom:236.268189pt;}
.y107{bottom:239.148191pt;}
.ybf{bottom:243.308195pt;}
.y24{bottom:246.828197pt;}
.yd4{bottom:247.148198pt;}
.y5c{bottom:253.228203pt;}
.y93{bottom:255.627520pt;}
.y106{bottom:255.628205pt;}
.y92{bottom:258.828207pt;}
.ybe{bottom:259.788208pt;}
.y154{bottom:261.708209pt;}
.y23{bottom:263.308211pt;}
.y12d{bottom:268.748215pt;}
.y5b{bottom:269.708216pt;}
.y105{bottom:272.108218pt;}
.y153{bottom:275.308220pt;}
.ybd{bottom:276.268221pt;}
.y22{bottom:279.788224pt;}
.yd3{bottom:280.108224pt;}
.y12c{bottom:285.228228pt;}
.y5a{bottom:286.188229pt;}
.y104{bottom:288.588231pt;}
.y152{bottom:288.908231pt;}
.ybc{bottom:292.748234pt;}
.y91{bottom:295.948237pt;}
.yd2{bottom:296.588237pt;}
.y12b{bottom:301.708241pt;}
.y151{bottom:302.508242pt;}
.ybb{bottom:309.228247pt;}
.y90{bottom:312.428250pt;}
.yd1{bottom:313.068250pt;}
.y150{bottom:316.108253pt;}
.y12a{bottom:318.188255pt;}
.y59{bottom:318.668255pt;}
.y103{bottom:321.388257pt;}
.yba{bottom:325.708261pt;}
.y8f{bottom:328.908263pt;}
.y21{bottom:329.068263pt;}
.yd0{bottom:329.548264pt;}
.y129{bottom:334.668268pt;}
.y58{bottom:335.148268pt;}
.y102{bottom:337.868270pt;}
.yb9{bottom:342.188274pt;}
.y14f{bottom:343.628275pt;}
.y8e{bottom:345.388276pt;}
.y20{bottom:345.548276pt;}
.y128{bottom:351.148281pt;}
.y100{bottom:351.148800pt;}
.y57{bottom:351.468281pt;}
.y1f{bottom:362.028290pt;}
.y56{bottom:367.948294pt;}
.yff{bottom:370.828297pt;}
.y14e{bottom:371.308297pt;}
.yb8{bottom:374.668300pt;}
.y8d{bottom:377.868302pt;}
.y1e{bottom:378.508303pt;}
.y127{bottom:383.628307pt;}
.y14d{bottom:384.908308pt;}
.yfe{bottom:387.308310pt;}
.yb7{bottom:391.148313pt;}
.y1d{bottom:394.988316pt;}
.y55{bottom:400.428320pt;}
.yfd{bottom:403.788323pt;}
.y8c{bottom:410.188328pt;}
.y1c{bottom:411.468329pt;}
.y14c{bottom:412.108330pt;}
.y126{bottom:416.108333pt;}
.y54{bottom:416.908334pt;}
.yfc{bottom:420.268336pt;}
.y14b{bottom:425.708341pt;}
.y8b{bottom:426.668341pt;}
.y1b{bottom:427.948342pt;}
.y53{bottom:433.388347pt;}
.yfb{bottom:436.748349pt;}
.y8a{bottom:443.148355pt;}
.y1a{bottom:444.428356pt;}
.y14a{bottom:452.908362pt;}
.y19{bottom:460.908369pt;}
.y148{bottom:463.948800pt;}
.y52{bottom:466.348373pt;}
.yfa{bottom:469.708376pt;}
.y89{bottom:475.628381pt;}
.y18{bottom:477.388382pt;}
.y51{bottom:482.828386pt;}
.yf9{bottom:486.188389pt;}
.y88{bottom:492.108394pt;}
.y17{bottom:493.868395pt;}
.y50{bottom:499.308399pt;}
.y87{bottom:508.588407pt;}
.y147{bottom:510.028408pt;}
.y16{bottom:510.188408pt;}
.y4f{bottom:515.788413pt;}
.yf8{bottom:519.148415pt;}
.y86{bottom:525.068420pt;}
.y4e{bottom:532.268426pt;}
.yf7{bottom:535.468428pt;}
.y85{bottom:541.548433pt;}
.y15{bottom:542.668434pt;}
.y4d{bottom:548.748439pt;}
.yf6{bottom:551.948442pt;}
.y125{bottom:557.548446pt;}
.y146{bottom:557.708446pt;}
.y84{bottom:558.028446pt;}
.y4c{bottom:565.068452pt;}
.yf5{bottom:568.428455pt;}
.y124{bottom:574.028459pt;}
.y145{bottom:574.188459pt;}
.y83{bottom:574.508460pt;}
.yf4{bottom:584.908468pt;}
.y123{bottom:590.508472pt;}
.y144{bottom:590.668473pt;}
.y82{bottom:590.988473pt;}
.y14{bottom:592.748474pt;}
.y4b{bottom:597.548478pt;}
.yf3{bottom:601.388481pt;}
.y142{bottom:603.948800pt;}
.y122{bottom:606.988486pt;}
.y13{bottom:609.068487pt;}
.yf2{bottom:617.868494pt;}
.y81{bottom:623.468499pt;}
.y12{bottom:625.548500pt;}
.yb6{bottom:629.548504pt;}
.yf1{bottom:634.348507pt;}
.y80{bottom:639.788512pt;}
.y141{bottom:640.108512pt;}
.y11{bottom:642.028514pt;}
.y4a{bottom:647.628518pt;}
.yf0{bottom:650.828521pt;}
.y7f{bottom:656.268525pt;}
.y140{bottom:656.588525pt;}
.y10{bottom:658.508527pt;}
.yb5{bottom:662.348530pt;}
.y49{bottom:664.108531pt;}
.yef{bottom:667.308534pt;}
.y7e{bottom:672.748538pt;}
.y13f{bottom:673.068538pt;}
.yf{bottom:674.988540pt;}
.yb4{bottom:678.828543pt;}
.y48{bottom:680.588544pt;}
.yee{bottom:683.788547pt;}
.y7d{bottom:689.228551pt;}
.y13e{bottom:689.388552pt;}
.y46{bottom:693.868800pt;}
.yb3{bottom:695.308556pt;}
.y7c{bottom:705.708565pt;}
.y13d{bottom:705.868565pt;}
.ye{bottom:707.468566pt;}
.ycf{bottom:707.948566pt;}
.yb1{bottom:708.588800pt;}
.y45{bottom:713.548571pt;}
.yed{bottom:716.748573pt;}
.y7b{bottom:722.188578pt;}
.y13c{bottom:722.348578pt;}
.yce{bottom:724.428580pt;}
.yb0{bottom:728.268583pt;}
.y44{bottom:729.868584pt;}
.yec{bottom:733.068586pt;}
.y7a{bottom:738.668591pt;}
.ycd{bottom:740.908593pt;}
.yaf{bottom:744.748596pt;}
.y43{bottom:746.348597pt;}
.yeb{bottom:749.548600pt;}
.y121{bottom:754.668604pt;}
.y79{bottom:755.148604pt;}
.y13b{bottom:755.308604pt;}
.yae{bottom:761.228609pt;}
.y42{bottom:762.828610pt;}
.yea{bottom:766.028613pt;}
.y78{bottom:771.628617pt;}
.y13a{bottom:771.788617pt;}
.yad{bottom:777.708622pt;}
.ye9{bottom:782.508626pt;}
.y77{bottom:788.108630pt;}
.y139{bottom:788.268631pt;}
.yd{bottom:790.348632pt;}
.yac{bottom:794.188635pt;}
.y41{bottom:795.788637pt;}
.ye8{bottom:798.988639pt;}
.y76{bottom:804.588644pt;}
.y138{bottom:804.748644pt;}
.yc{bottom:806.828645pt;}
.yab{bottom:810.668649pt;}
.y40{bottom:812.268650pt;}
.ye7{bottom:815.468652pt;}
.y75{bottom:821.068657pt;}
.y137{bottom:821.228657pt;}
.yb{bottom:823.308659pt;}
.y3f{bottom:828.748663pt;}
.y74{bottom:837.388670pt;}
.y120{bottom:837.548670pt;}
.y136{bottom:837.708670pt;}
.ya{bottom:839.788672pt;}
.yaa{bottom:843.468675pt;}
.y3e{bottom:845.228676pt;}
.ye6{bottom:848.428679pt;}
.y135{bottom:854.188683pt;}
.y9{bottom:856.268685pt;}
.ya9{bottom:859.948688pt;}
.y3d{bottom:861.708689pt;}
.ye5{bottom:864.908692pt;}
.y7{bottom:869.388800pt;}
.y73{bottom:869.868696pt;}
.y11f{bottom:870.508696pt;}
.y3c{bottom:878.188703pt;}
.y72{bottom:886.348709pt;}
.y134{bottom:886.668709pt;}
.y11e{bottom:886.988710pt;}
.y6{bottom:889.068711pt;}
.ya8{bottom:892.908714pt;}
.y3b{bottom:894.668716pt;}
.ye4{bottom:897.388718pt;}
.y11c{bottom:900.268800pt;}
.y71{bottom:902.828722pt;}
.y5{bottom:905.548724pt;}
.ya7{bottom:909.388728pt;}
.y3a{bottom:911.148729pt;}
.y70{bottom:919.308735pt;}
.y11b{bottom:919.788736pt;}
.y4{bottom:922.028738pt;}
.ya6{bottom:925.868741pt;}
.ye3{bottom:929.868744pt;}
.y6f{bottom:935.788749pt;}
.y11a{bottom:936.268749pt;}
.ya5{bottom:942.348754pt;}
.y39{bottom:943.948755pt;}
.ye2{bottom:946.348757pt;}
.y119{bottom:952.748762pt;}
.y3{bottom:954.508764pt;}
.ya4{bottom:958.828767pt;}
.y38{bottom:960.428768pt;}
.ye1{bottom:962.668770pt;}
.y6e{bottom:968.268775pt;}
.y118{bottom:969.228775pt;}
.y37{bottom:976.908782pt;}
.y6d{bottom:984.748788pt;}
.y117{bottom:985.708789pt;}
.ya3{bottom:991.308793pt;}
.y36{bottom:993.388795pt;}
.y6c{bottom:1001.228801pt;}
.y2{bottom:1010.668809pt;}
.ye0{bottom:1011.628809pt;}
.y6b{bottom:1017.708814pt;}
.y116{bottom:1018.668815pt;}
.ya2{bottom:1024.268819pt;}
.y35{bottom:1026.348821pt;}
.y6a{bottom:1034.188827pt;}
.y115{bottom:1035.148828pt;}
.ya1{bottom:1040.748833pt;}
.y34{bottom:1042.828834pt;}
.ydf{bottom:1044.108835pt;}
.y69{bottom:1050.668841pt;}
.y114{bottom:1051.628841pt;}
.y1{bottom:1053.388843pt;}
.ycc{bottom:1055.788845pt;}
.ya0{bottom:1057.228846pt;}
.y33{bottom:1059.308847pt;}
.yde{bottom:1060.588848pt;}
.y67{bottom:1063.788800pt;}
.y112{bottom:1064.908800pt;}
.yca{bottom:1069.068800pt;}
.y9e{bottom:1070.508800pt;}
.y31{bottom:1072.588800pt;}
.h5{height:2.080000pt;}
.ha{height:4.160000pt;}
.h6{height:5.280000pt;}
.hc{height:5.600000pt;}
.hd{height:6.240000pt;}
.he{height:9.760000pt;}
.hb{height:10.400000pt;}
.h7{height:10.880000pt;}
.h9{height:11.840000pt;}
.h10{height:13.280000pt;}
.h4{height:13.920000pt;}
.h3{height:16.000000pt;}
.hf{height:50.062540pt;}
.h1{height:59.407548pt;}
.h8{height:76.942562pt;}
.h2{height:80.100064pt;}
.h0{height:1122.666667pt;}
.w5{width:66.720000pt;}
.wb{width:514.400000pt;}
.w6{width:593.120000pt;}
.wc{width:619.840000pt;}
.w8{width:644.960000pt;}
.wd{width:646.560000pt;}
.wf{width:654.080000pt;}
.w4{width:656.160000pt;}
.we{width:662.080000pt;}
.w9{width:663.520000pt;}
.w1{width:665.280000pt;}
.w3{width:667.520000pt;}
.wa{width:670.080000pt;}
.w7{width:670.240000pt;}
.w10{width:670.880000pt;}
.w2{width:677.600000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:56.000045pt;}
.x1{left:60.960049pt;}
.x3{left:90.878742pt;}
.x7{left:100.000000pt;}
.x8{left:180.801526pt;}
.x9{left:183.040644pt;}
.xb{left:200.961317pt;}
.x4{left:261.118609pt;}
.xa{left:296.160146pt;}
.x5{left:329.915754pt;}
.x6{left:396.480000pt;}
.xc{left:676.640541pt;}
}

